diff options
Diffstat (limited to 'recipes/x-load/signgp.bb')
-rw-r--r-- | recipes/x-load/signgp.bb | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/recipes/x-load/signgp.bb b/recipes/x-load/signgp.bb new file mode 100644 index 0000000000..cd9b23015d --- /dev/null +++ b/recipes/x-load/signgp.bb @@ -0,0 +1,19 @@ +LICENSE = "unknown" +DESCRIPTION = "Tool to sign omap3 x-loader images" + +PR = "r2" + +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} +} + +NATIVE_INSTALL_WORKS = "1" + +BBCLASSEXTEND = "native sdk" |