blob: 7eabb07bcea1c6d505475a8fa3162df1802cacf7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
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
}
do_install() {
install -d ${D}${bindir}/
install -m 0755 signGP ${D}${bindir}/
}
|