blob: 479e6f8167de06c17cbc49dd43e057e45452c48d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
LICENSE = "BSD-3-Clause"
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"
|