mirror of
https://git.yoctoproject.org/meta-ti
synced 2026-04-20 19:53:43 +00:00
Every recipe should have a SUMMARY and that can only be 72 characters at most. Some of these recipes had DESCRIPTIONS and not SUMMARY, some were missing the SUMMARY, and some had slightly too long values for the SUMMARY. Signed-off-by: Ryan Eatmon <reatmon@ti.com>
40 lines
1.2 KiB
BlitzBasic
40 lines
1.2 KiB
BlitzBasic
SUMMARY = "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"
|