diff options
Diffstat (limited to 'recipes')
-rw-r--r-- | recipes/x-load/signgp-native.bb | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/recipes/x-load/signgp-native.bb b/recipes/x-load/signgp-native.bb index 1cbd001932..3b17be3b81 100644 --- a/recipes/x-load/signgp-native.bb +++ b/recipes/x-load/signgp-native.bb @@ -1,6 +1,8 @@ LICENSE = "unknown" DESCRIPTION = "Tool to sign omap3 x-loader images" +PR = "r1" + inherit native SRC_URI = "file://signGP.c" @@ -8,7 +10,9 @@ do_compile() { ${CC} ${WORKDIR}/signGP.c -o signGP } -do_stage() { - install -d ${STAGING_BINDIR_NATIVE} - install -m 0755 signGP ${STAGING_BINDIR_NATIVE} +do_install() { + install -d ${D}${bindir} + install -m 0755 signGP ${D}${bindir} } + +NATIVE_INSTALL_WORKS = "1" |