mirror of
https://git.yoctoproject.org/poky
synced 2026-04-29 00:32:14 +02:00
linux-firmware: Fix file permissions
The firmware was installed 0666 which could have been a security issue. (From OE-Core rev: db6a4e07f3a35163c751996ca3ac86b6bf5650e9) Signed-off-by: Mark Hatle <mark.hatle@windriver.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
committed by
Richard Purdie
parent
d591e696b2
commit
b320f558ed
@@ -32,9 +32,9 @@ do_compile() {
|
||||
do_install() {
|
||||
install -d ${D}/lib/firmware/
|
||||
# Libertas sd8686
|
||||
install -m 0666 libertas/sd8686_v9.bin ${D}/lib/firmware/sd8686.bin
|
||||
install -m 0666 libertas/sd8686_v9_helper.bin ${D}/lib/firmware/sd8686_helper.bin
|
||||
install -m 0666 LICENCE.libertas ${D}/lib/firmware/
|
||||
install -m 0644 libertas/sd8686_v9.bin ${D}/lib/firmware/sd8686.bin
|
||||
install -m 0644 libertas/sd8686_v9_helper.bin ${D}/lib/firmware/sd8686_helper.bin
|
||||
install -m 0644 LICENCE.libertas ${D}/lib/firmware/
|
||||
}
|
||||
|
||||
PACKAGES = "${PN}-sd8686"
|
||||
|
||||
Reference in New Issue
Block a user