From ce333c75101514294d88e3bd363dc554fd031268 Mon Sep 17 00:00:00 2001 From: Ramon Moesching Date: Fri, 16 Aug 2019 11:44:01 +0200 Subject: [PATCH] wlconf-bin recipe: install config binary symlink to top dir Signed-off-by: Ramon Moesching --- recipes-connectivity/wlconf-bin/wlconf-bin_git.bb | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/recipes-connectivity/wlconf-bin/wlconf-bin_git.bb b/recipes-connectivity/wlconf-bin/wlconf-bin_git.bb index 1173747..2e11a13 100644 --- a/recipes-connectivity/wlconf-bin/wlconf-bin_git.bb +++ b/recipes-connectivity/wlconf-bin/wlconf-bin_git.bb @@ -14,10 +14,11 @@ INSTALLPATH = "${nonarch_base_libdir}/firmware/ti-connectivity" CONFIGBINARY = "wl18xx-conf.bin" -FILES_${PN} += "${INSTALLPATH} ${CONFIG-BINARY}" +FILES_${PN} += "${nonarch_base_libdir}/firmware/" do_install() { install -d ${D}/${INSTALLPATH} cp -a ${S}/wlconf-8.7.3/bin/${CONFIGBINARY} ${D}/${INSTALLPATH} --no-preserve=ownership + ln -sfr ${D}/${INSTALLPATH}/${CONFIGBINARY} ${D}${nonarch_base_libdir}/firmware/${CONFIGBINARY} }