mirror of
https://git.yoctoproject.org/poky
synced 2026-04-23 18:32:12 +02:00
git-svn-id: https://svn.o-hand.com/repos/poky/trunk@5477 311d38ba-8fff-0310-9ca6-ca027cbcb966
15 lines
273 B
BlitzBasic
15 lines
273 B
BlitzBasic
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_stage() {
|
|
install -d ${STAGING_BINDIR_NATIVE}
|
|
install -m 0755 signGP ${STAGING_BINDIR_NATIVE}
|
|
}
|