linux-firmware: use 'make install' for installation

Copying the source tree over was missing important symlinks
that since recent updates can only be created with make install.

(From OE-Core rev: 8764cc85f3ef570f1c220c3c200d6e02d3e7a260)

Signed-off-by: Alexander Kanavin <alex.kanavin@gmail.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
Alexander Kanavin
2020-03-04 11:13:07 +01:00
committed by Richard Purdie
parent c412d3440c
commit 2b43efced7

View File

@@ -208,27 +208,7 @@ do_compile() {
}
do_install() {
install -d ${D}${nonarch_base_libdir}/firmware/
cp -r * ${D}${nonarch_base_libdir}/firmware/
# Avoid Makefile to be deployed
rm ${D}${nonarch_base_libdir}/firmware/Makefile
# Remove unbuild firmware which needs cmake and bash
rm ${D}${nonarch_base_libdir}/firmware/carl9170fw -rf
# Remove pointless bash script
rm ${D}${nonarch_base_libdir}/firmware/configure
# Remove python script used to check the WHENCE file
rm ${D}${nonarch_base_libdir}/firmware/check_whence.py
# Libertas sd8686
ln -sf libertas/sd8686_v9.bin ${D}${nonarch_base_libdir}/firmware/sd8686.bin
ln -sf libertas/sd8686_v9_helper.bin ${D}${nonarch_base_libdir}/firmware/sd8686_helper.bin
# fixup wl12xx location, after 2.6.37 the kernel searches a different location for it
( cd ${D}${nonarch_base_libdir}/firmware ; ln -sf ti-connectivity/* . )
oe_runmake 'DESTDIR=${D}' install
}