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

PR = "r1"

inherit native 
SRC_URI = "file://signGP.c"

do_compile() {
	${CC} ${WORKDIR}/signGP.c -o signGP
}

do_install() {
	install -d ${D}${bindir}
	install -m 0755 signGP ${D}${bindir}
}

NATIVE_INSTALL_WORKS = "1"