diff options
Diffstat (limited to 'meta-ti-extras/recipes-connectivity/cc33xx-target-scripts/cc33xx-target-scripts_git.bb')
-rw-r--r-- | meta-ti-extras/recipes-connectivity/cc33xx-target-scripts/cc33xx-target-scripts_git.bb | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/meta-ti-extras/recipes-connectivity/cc33xx-target-scripts/cc33xx-target-scripts_git.bb b/meta-ti-extras/recipes-connectivity/cc33xx-target-scripts/cc33xx-target-scripts_git.bb new file mode 100644 index 00000000..e3fe6f80 --- /dev/null +++ b/meta-ti-extras/recipes-connectivity/cc33xx-target-scripts/cc33xx-target-scripts_git.bb | |||
@@ -0,0 +1,18 @@ | |||
1 | SUMMARY = "Scripts and configuration files for TI cc33xx wireless drivers" | ||
2 | LICENSE = "BSD-3-Clause" | ||
3 | LIC_FILES_CHKSUM = "file://COPYING;md5=904443cf7fae5c09c3d5f83f8557c265" | ||
4 | |||
5 | SRCREV = "4371c93ea01b339f6f73f77d6d6bfcc185def8c0" | ||
6 | SRC_URI = "git://git.ti.com/git/cc33xx-wlan/cc33xx-target-scripts.git;protocol=https;branch=master" | ||
7 | |||
8 | FILES:${PN} += "${datadir}/cc33xx/" | ||
9 | |||
10 | do_install() { | ||
11 | install -d ${D}${datadir}/cc33xx/ | ||
12 | |||
13 | scripts=`find ./* -type f -name "*.*"` | ||
14 | for s in $scripts | ||
15 | do | ||
16 | install -m 0755 $s ${D}${datadir}/cc33xx/ | ||
17 | done | ||
18 | } | ||