- 264 license table entries with exact download URLs (224/264 resolved) - Complete sources/ directory with all BitBake recipes - Build configuration: tqma6ul-multi-mba6ulx, spaetzle (musl) - Full traceability for Softwarefreigabeantrag - GCC 13.4.0, Linux 6.6.102, U-Boot 2023.04, musl 1.2.4 - License distribution: GPL-2.0 (24), MIT (23), GPL-2.0+ (18), BSD-3 (16)
40 lines
1.2 KiB
BlitzBasic
40 lines
1.2 KiB
BlitzBasic
DESCRIPTION = "Security development tools for High-Security(HS) TI K3 processors."
|
|
HOMEPAGE = "https://git.ti.com/cgit/security-development-tools/core-secdev-k3"
|
|
SECTION = "devel"
|
|
LICENSE = "BSD-3-Clause"
|
|
LIC_FILES_CHKSUM = "file://manifest/k3-secdev-0.2-manifest.html;md5=f632a78870cc64550078d7b3cbac0892"
|
|
|
|
# set a default install location
|
|
TI_K3_SECDEV_INSTALL_DIR_RECIPE = "${datadir}/ti/ti-k3-secdev"
|
|
|
|
# Native host tool only
|
|
COMPATIBLE_MACHINE = "null"
|
|
COMPATIBLE_MACHINE:class-native = "(.*)"
|
|
COMPATIBLE_MACHINE:class-nativesdk = "(.*)"
|
|
|
|
GIT_URI = "git://git.ti.com/git/security-development-tools/core-secdev-k3.git"
|
|
GIT_PROTOCOL = "https"
|
|
GIT_BRANCH = "master"
|
|
GIT_SRCREV = "ed6951fd3877c6cac7f1237311f7278ac21634f3"
|
|
|
|
SRC_URI = "${GIT_URI};protocol=${GIT_PROTOCOL};branch=${GIT_BRANCH}"
|
|
SRCREV = "${GIT_SRCREV}"
|
|
|
|
S = "${WORKDIR}/git"
|
|
|
|
do_install() {
|
|
CP_ARGS="-Prf --preserve=mode,links,timestamps --no-preserve=ownership"
|
|
install -d ${D}${TI_K3_SECDEV_INSTALL_DIR_RECIPE}
|
|
cp ${CP_ARGS} ${S}/* ${D}${TI_K3_SECDEV_INSTALL_DIR_RECIPE}
|
|
}
|
|
|
|
FILES:${PN} += "${TI_K3_SECDEV_INSTALL_DIR_RECIPE}"
|
|
|
|
INSANE_SKIP:${PN} = "arch ldflags file-rdeps"
|
|
|
|
INHIBIT_PACKAGE_STRIP = "1"
|
|
INHIBIT_SYSROOT_STRIP = "1"
|
|
INHIBIT_PACKAGE_DEBUG_SPLIT = "1"
|
|
|
|
BBCLASSEXTEND = "native nativesdk"
|