mirror of
https://git.yoctoproject.org/meta-ti
synced 2026-07-16 22:38:04 +00:00
d6448276c4
This helps in bitbake finding the license files etc. correctly Signed-off-by: Khem Raj <raj.khem@gmail.com> Signed-off-by: Koen Kooi <koen@dominion.thruhere.net>
21 lines
413 B
BlitzBasic
21 lines
413 B
BlitzBasic
LICENSE = "NewBSD"
|
|
DESCRIPTION = "Tool to sign omap3 x-loader images"
|
|
LIC_FILES_CHKSUM = "file://signGP.c;md5=960f484fea13941ca88821366f9dade0"
|
|
|
|
SRC_URI = "file://signGP.c"
|
|
|
|
do_compile() {
|
|
${CC} ${CFLAGS} ${LDFLAGS} ${WORKDIR}/signGP.c -o signGP
|
|
}
|
|
|
|
do_install() {
|
|
install -d ${D}${bindir}
|
|
install -m 0755 signGP ${D}${bindir}
|
|
}
|
|
|
|
S = "${WORKDIR}"
|
|
|
|
NATIVE_INSTALL_WORKS = "1"
|
|
|
|
BBCLASSEXTEND = "native nativesdk"
|