aboutsummaryrefslogtreecommitdiffstats
path: root/recipes/x-load/signgp.bb
blob: 8ee36b5296d30442e20aa1a2c617b552f564b77e (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 = "r4"

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"