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

S = "${WORKDIR}"

NATIVE_INSTALL_WORKS = "1"

BBCLASSEXTEND = "native nativesdk"