diff options
Diffstat (limited to 'recipes-bsp/x-load/signgp.bb')
-rw-r--r-- | recipes-bsp/x-load/signgp.bb | 20 |
1 files changed, 0 insertions, 20 deletions
diff --git a/recipes-bsp/x-load/signgp.bb b/recipes-bsp/x-load/signgp.bb deleted file mode 100644 index 479e6f81..00000000 --- a/recipes-bsp/x-load/signgp.bb +++ /dev/null | |||
@@ -1,20 +0,0 @@ | |||
1 | LICENSE = "BSD-3-Clause" | ||
2 | DESCRIPTION = "Tool to sign omap3 x-loader images" | ||
3 | LIC_FILES_CHKSUM = "file://signGP.c;md5=960f484fea13941ca88821366f9dade0" | ||
4 | |||
5 | SRC_URI = "file://signGP.c" | ||
6 | |||
7 | do_compile() { | ||
8 | ${CC} ${CFLAGS} ${LDFLAGS} ${WORKDIR}/signGP.c -o signGP | ||
9 | } | ||
10 | |||
11 | do_install() { | ||
12 | install -d ${D}${bindir} | ||
13 | install -m 0755 signGP ${D}${bindir} | ||
14 | } | ||
15 | |||
16 | S = "${WORKDIR}" | ||
17 | |||
18 | NATIVE_INSTALL_WORKS = "1" | ||
19 | |||
20 | BBCLASSEXTEND = "native nativesdk" | ||