1
0
mirror of https://git.yoctoproject.org/meta-ti synced 2026-07-16 14:27:48 +00:00
Files
Khem Raj d6448276c4 signgp: Point S to WORKDIR
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>
2011-10-21 19:08:04 +02:00

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"