From d7d56c90481321d2a191be2893bcf653bb507faf Mon Sep 17 00:00:00 2001 From: Alexandre Bard Date: Wed, 11 May 2022 18:11:56 +0200 Subject: [PATCH] Remove wlconf-bin This is now integrated in meta-netmodule-wlan. BugzID: 79548 --- .../wlconf-bin/wlconf-bin_git.bb | 26 ------------------- 1 file changed, 26 deletions(-) delete mode 100644 recipes-connectivity/wlconf-bin/wlconf-bin_git.bb diff --git a/recipes-connectivity/wlconf-bin/wlconf-bin_git.bb b/recipes-connectivity/wlconf-bin/wlconf-bin_git.bb deleted file mode 100644 index 4de28f3..0000000 --- a/recipes-connectivity/wlconf-bin/wlconf-bin_git.bb +++ /dev/null @@ -1,26 +0,0 @@ -DESCRIPTION = "Configuration binary wlconf for ti wifi chips" -HOMEPAGE = "http://www.netmodule.com/" -LICENSE = "GPLv2" -LIC_FILES_CHKSUM = "file://${COMMON_LICENSE_DIR}/GPL-2.0;md5=801f80980d171dd6425610833a22dbe6" - -SRC_URI = "git://gitlab.com/netmodule/tools/wlconf-bin.git;protocol=ssh;user=git;branch=master" - -S = "${WORKDIR}/git" -SRCREV = "${AUTOREV}" - -INSTALLPATH = "${nonarch_base_libdir}/firmware/ti-connectivity" -CONFIGBINARY = "wl18xx-conf.bin" - - -FILES_${PN} += "${nonarch_base_libdir}/firmware/" - - -do_install () { - - install -d ${D}/${INSTALLPATH} - - if ls ${S}/wlconf-8.7.3/bin/${MACHINE}/${CONFIGBINARY} 1> /dev/null 2>&1 ; then - install -m 0644 ${S}/wlconf-8.7.3/bin/${MACHINE}/${CONFIGBINARY} ${D}/${INSTALLPATH} - ln -sfr ${D}/${INSTALLPATH}/${CONFIGBINARY} ${D}${nonarch_base_libdir}/firmware/${CONFIGBINARY} - fi -}