summaryrefslogtreecommitdiffstats
path: root/meta-ti-extras
diff options
context:
space:
mode:
authorSabeeh Khan <sabeeh-khan@ti.com>2024-06-21 05:52:21 -0500
committerRyan Eatmon <reatmon@ti.com>2024-06-26 19:29:05 -0500
commit9c03a91c81b36f01fc1bfecdd726de705a86c993 (patch)
treef20f8af3640541a89c790b6f80ca7ac181b3ef64 /meta-ti-extras
parent6f750ff4a9a0dcde63dd1e44beb25b6fb7c0fb59 (diff)
downloadmeta-ti-9c03a91c81b36f01fc1bfecdd726de705a86c993.tar.gz
cc33xx-target-scripts: add cc33xx scripts to control TI cc33xx WLAN device
Add scripts and conf files to be used to control and configure the cc33xx WLAN device. Documentation for these scripts can be found here: https://www.ti.com/tool/CC33XX-SOFTWARE Signed-off-by: Sabeeh Khan <sabeeh-khan@ti.com> Signed-off-by: Ryan Eatmon <reatmon@ti.com>
Diffstat (limited to 'meta-ti-extras')
-rw-r--r--meta-ti-extras/recipes-connectivity/cc33xx-target-scripts/cc33xx-target-scripts_git.bb20
1 files changed, 20 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..87f75653
--- /dev/null
+++ b/meta-ti-extras/recipes-connectivity/cc33xx-target-scripts/cc33xx-target-scripts_git.bb
@@ -0,0 +1,20 @@
1SUMMARY = "Scripts and configuration files for TI cc33xx wireless drivers"
2LICENSE = "BSD-3-Clause"
3LIC_FILES_CHKSUM = "file://COPYING;md5=904443cf7fae5c09c3d5f83f8557c265"
4
5SRCREV = "4371c93ea01b339f6f73f77d6d6bfcc185def8c0"
6SRC_URI = "git://git.ti.com/git/cc33xx-wlan/cc33xx-target-scripts.git;protocol=https;branch=master"
7
8S = "${WORKDIR}/git"
9
10FILES:${PN} += "${datadir}/cc33xx/"
11
12do_install() {
13 install -d ${D}${datadir}/cc33xx/
14
15 scripts=`find ./* -type f -name "*.*"`
16 for s in $scripts
17 do
18 install -m 0755 $s ${D}${datadir}/cc33xx/
19 done
20}