aboutsummaryrefslogtreecommitdiffstats
path: root/recipes/x-load/signgp.bb
blob: b77598be6f78758f7615040b003f80053a9f16d8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
LICENSE = "BSD"
DESCRIPTION = "Tool to sign omap3 x-loader images"

PR = "r3"

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 sdk"