1
0
mirror of https://git.yoctoproject.org/meta-ti synced 2026-01-12 01:20:20 +00:00
Files
meta-ti/meta-ti-extras/recipes-connectivity/cc33xx-target-scripts/cc33xx-target-scripts_git.bb
Ryan Eatmon d02032fa40 meta-ti/all: remove S in recipes that fetch from git via setting BB_GIT_DEFAULT_DESTSUFFIX
Removing all the S = ${WORKDIR}/git assignments works because BB_GIT_DEFAULT_DESTSUFFIX
is set to match S from bitbake.conf (which itself is set to match typical tarball
releases).

Signed-off-by: Ryan Eatmon <reatmon@ti.com>
2025-06-25 13:16:57 -05:00

19 lines
530 B
BlitzBasic

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"
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
}