blob: 36c5b6ce42627cde24afbb2ddbe02ea903829e4e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
LICENSE = "unknown"
DESCRIPTION = "Tool to sign omap3 x-loader images"
inherit native
SRC_URI = "file://signGP.c"
do_compile() {
${CC} ${WORKDIR}/signGP.c -o signGP
}
NATIVE_INSTALL_WORKS = "1"
do_install() {
install -d ${D}${bindir}/
install -m 0755 signGP ${D}${bindir}/
}
|