diff options
author | Denys Dmytriyenko <denys@ti.com> | 2017-03-11 03:08:41 +0000 |
---|---|---|
committer | Denys Dmytriyenko <denys@ti.com> | 2017-03-11 10:44:07 -0500 |
commit | da475075fda6c293b276ed556d4cdb4600c49ef8 (patch) | |
tree | 3801f26425ae3da50133a69ec7aaeb3cb3f1692d /recipes-connectivity/wlconf | |
parent | b71d2b6b7f872925a58d2891d34fadb375144ebe (diff) | |
download | meta-ti-da475075fda6c293b276ed556d4cdb4600c49ef8.tar.gz |
wlconf: add version 8.7.1 (R8.7_SP1)
Previous versions were provided by meta-arago-extras, moving to meta-ti now.
Signed-off-by: Denys Dmytriyenko <denys@ti.com>
Diffstat (limited to 'recipes-connectivity/wlconf')
-rw-r--r-- | recipes-connectivity/wlconf/wlconf_8.7.1.bb | 39 |
1 files changed, 39 insertions, 0 deletions
diff --git a/recipes-connectivity/wlconf/wlconf_8.7.1.bb b/recipes-connectivity/wlconf/wlconf_8.7.1.bb new file mode 100644 index 00000000..fdff614b --- /dev/null +++ b/recipes-connectivity/wlconf/wlconf_8.7.1.bb | |||
@@ -0,0 +1,39 @@ | |||
1 | DESCRIPTION = "Configuration utility for TI wireless drivers" | ||
2 | LICENSE = "GPLv2" | ||
3 | LIC_FILES_CHKSUM = "file://README;beginline=1;endline=21;md5=adc05a1903d3f107f85c90328e3a9438" | ||
4 | |||
5 | # Tag: R8.7_SP1 (8.7.1) +fix | ||
6 | SRCREV = "ee653d2845b0029c14f49ca83a2f6c02037ec239" | ||
7 | SRC_URI = "git://git.ti.com/wilink8-wlan/18xx-ti-utils.git" | ||
8 | |||
9 | S = "${WORKDIR}/git/wlconf" | ||
10 | |||
11 | EXTRA_OEMAKE = "CC="${CC}"" | ||
12 | |||
13 | do_install() { | ||
14 | install -d ${D}${bindir} | ||
15 | install -d ${D}${bindir}/wlconf/ | ||
16 | install -d ${D}${bindir}/wlconf/official_inis | ||
17 | install -d ${D}/lib/firmware/ti-connectivity | ||
18 | |||
19 | install -m 0755 wlconf ${D}${bindir}/wlconf/ | ||
20 | install -m 0755 dictionary.txt ${D}${bindir}/wlconf/ | ||
21 | install -m 0755 struct.bin ${D}${bindir}/wlconf/ | ||
22 | install -m 0755 default.conf ${D}${bindir}/wlconf/ | ||
23 | install -m 0755 wl18xx-conf-default.bin ${D}${bindir}/wlconf/ | ||
24 | install -m 0755 wl18xx-conf-default.bin ${D}/lib/firmware/ti-connectivity/wl18xx-conf.bin | ||
25 | install -m 0755 README ${D}${bindir}/wlconf/ | ||
26 | install -m 0755 example.conf ${D}${bindir}/wlconf/ | ||
27 | install -m 0755 example.ini ${D}${bindir}/wlconf/ | ||
28 | install -m 0755 configure-device.sh ${D}${bindir}/wlconf/ | ||
29 | install -m 0755 ${S}/official_inis/* \ | ||
30 | ${D}${bindir}/wlconf/official_inis/ | ||
31 | } | ||
32 | |||
33 | FILES_${PN} += " \ | ||
34 | ${bindir}/wlconf \ | ||
35 | ${bindir}/wlconf/official_inis \ | ||
36 | /lib/firmware/ti-connectivity/wl18xx-conf.bin \ | ||
37 | " | ||
38 | |||
39 | FILES_${PN}-dbg += "${bindir}/wlconf/.debug" | ||