blob: 414ba0c1dd67d68d87cc078f3990359b26fdee39 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
DESCRIPTION = "Scripts and configuration files for TI wireless drivers"
LICENSE = "GPLv2"
LIC_FILES_CHKSUM = "file://README;beginline=1;endline=21;md5=b8d6a0865f50159bf5c0d175d1f4a705"
PV = "R8.6+git${SRCPV}"
PR = "r7"
# Tag: R8.6
SRCREV = "693f71c709abcaa9047835cf3903aea26a63fa94"
BRANCH = "sitara-scripts"
SRC_URI = "git://git.ti.com/wilink8-wlan/wl18xx-target-scripts.git;protocol=git;branch=${BRANCH}"
S = "${WORKDIR}/git"
FILES_${PN} += "${datadir}/wl18xx/"
do_install() {
install -d ${D}${datadir}/wl18xx/
scripts=`find ./ -type f -name "*.*"`
for s in $scripts
do
install -m 0755 $s ${D}${datadir}/wl18xx/
done
}
|