aboutsummaryrefslogtreecommitdiffstats
path: root/recipes/x-load/signgp.bb
blob: 8eea85c3205917f6c884edb43c90b43932717842 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
LICENSE = "NewBSD"
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"