summaryrefslogtreecommitdiffstats
path: root/recipes-bsp/x-load/signgp.bb
blob: 7aead6700a4982587345b1cb6aa0b8cbad2e0fc5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
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}
}

NATIVE_INSTALL_WORKS = "1"

BBCLASSEXTEND = "native nativesdk"