diff options
Diffstat (limited to 'recipes-devtools/cst/cst_git.bb')
| -rw-r--r-- | recipes-devtools/cst/cst_git.bb | 43 |
1 files changed, 0 insertions, 43 deletions
diff --git a/recipes-devtools/cst/cst_git.bb b/recipes-devtools/cst/cst_git.bb deleted file mode 100644 index b9ac3e9e1..000000000 --- a/recipes-devtools/cst/cst_git.bb +++ /dev/null | |||
| @@ -1,43 +0,0 @@ | |||
| 1 | SUMMARY = "utility for security boot" | ||
| 2 | SECTION = "cst" | ||
| 3 | LICENSE = "BSD-3-Clause" | ||
| 4 | |||
| 5 | LIC_FILES_CHKSUM = "file://COPYING;md5=e959d5d617e33779d0e90ce1d9043eff" | ||
| 6 | |||
| 7 | DEPENDS += "openssl cst-native" | ||
| 8 | RDEPENDS:${PN} = "bash" | ||
| 9 | |||
| 10 | GENKEYS ?= "${STAGING_BINDIR_NATIVE}/cst/gen_keys" | ||
| 11 | GENKEYS:class-native = "./gen_keys" | ||
| 12 | |||
| 13 | inherit kernel-arch | ||
| 14 | |||
| 15 | # specify the non default keys pair for secure boot if needed | ||
| 16 | #SECURE_PRI_KEY = "/path/srk.pri" | ||
| 17 | #SECURE_PUB_KEY = "/path/srk.pub" | ||
| 18 | |||
| 19 | SRC_URI = "git://source.codeaurora.org/external/qoriq/qoriq-components/cst;nobranch=1 \ | ||
| 20 | file://0001-tools-Mark-struct-input_field-file_field-extern.patch \ | ||
| 21 | " | ||
| 22 | SRCREV = "dfe30d3f05cfe281896482839e57ed49c52f2088" | ||
| 23 | |||
| 24 | S = "${WORKDIR}/git" | ||
| 25 | |||
| 26 | EXTRA_OEMAKE = 'CC="${CC}" LD="${CC}"' | ||
| 27 | CFLAGS:append = ' -Wno-deprecated-declarations' | ||
| 28 | |||
| 29 | PARALLEL_MAKE = "" | ||
| 30 | |||
| 31 | do_install () { | ||
| 32 | oe_runmake install DESTDIR=${D} BIN_DEST_DIR=${bindir} | ||
| 33 | |||
| 34 | if [ -n "${SECURE_PRI_KEY}" ]; then | ||
| 35 | cp -f ${SECURE_PRI_KEY} ${D}/${bindir}/cst/srk.pri | ||
| 36 | cp -f ${SECURE_PUB_KEY} ${D}/${bindir}/cst/srk.pub | ||
| 37 | elif [ ! -f ${D}/${bindir}/cst/srk.pri -o ! ${D}/${bindir}/cst/srk.pub ]; then | ||
| 38 | cd ${D}/${bindir}/cst && ${GENKEYS} 1024 | ||
| 39 | fi | ||
| 40 | } | ||
| 41 | |||
| 42 | FILES:${PN}-dbg += "${bindir}/cst/.debug" | ||
| 43 | BBCLASSEXTEND = "native nativesdk" | ||
