mirror of
https://git.yoctoproject.org/meta-ti
synced 2026-04-19 11:10:52 +00:00
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>
This commit is contained in:
@@ -0,0 +1,20 @@
|
||||
SUMMARY = "Scripts and configuration files for TI cc33xx wireless drivers"
|
||||
LICENSE = "BSD-3-Clause"
|
||||
LIC_FILES_CHKSUM = "file://COPYING;md5=904443cf7fae5c09c3d5f83f8557c265"
|
||||
|
||||
SRCREV = "4371c93ea01b339f6f73f77d6d6bfcc185def8c0"
|
||||
SRC_URI = "git://git.ti.com/git/cc33xx-wlan/cc33xx-target-scripts.git;protocol=https;branch=master"
|
||||
|
||||
S = "${WORKDIR}/git"
|
||||
|
||||
FILES:${PN} += "${datadir}/cc33xx/"
|
||||
|
||||
do_install() {
|
||||
install -d ${D}${datadir}/cc33xx/
|
||||
|
||||
scripts=`find ./* -type f -name "*.*"`
|
||||
for s in $scripts
|
||||
do
|
||||
install -m 0755 $s ${D}${datadir}/cc33xx/
|
||||
done
|
||||
}
|
||||
Reference in New Issue
Block a user