]> code.ossystems Code Review - meta-freescale.git/commitdiff
cst: add recipe
authorZhenhua Luo <zhenhua.luo@freescale.com>
Thu, 27 Jun 2013 09:25:10 +0000 (09:25 +0000)
committerZhenhua Luo <zhenhua.luo@freescale.com>
Fri, 28 Jun 2013 02:54:53 +0000 (10:54 +0800)
cst is the utility for security boot.

Signed-off-by: Zhenhua Luo <zhenhua.luo@freescale.com>
meta-fsl-ppc/recipes-tools/cst/cst_git.bb [new file with mode: 0644]

diff --git a/meta-fsl-ppc/recipes-tools/cst/cst_git.bb b/meta-fsl-ppc/recipes-tools/cst/cst_git.bb
new file mode 100644 (file)
index 0000000..177f23c
--- /dev/null
@@ -0,0 +1,29 @@
+DESCRIPTION = "CST Tool"
+SECTION = "cst"
+LICENSE = "BSD"
+
+# TODO: fix license - this file is not a license
+LIC_FILES_CHKSUM = "file://RELEASENOTES;beginline=8;endline=43;md5=5a7b22a2c96b5f94e0498c5f413aa8d3"
+
+DEPENDS += "openssl"
+
+SRC_URI = "git://git.freescale.com/ppc/sdk/cst.git"
+SRCREV = "e4035cbf54ed481147c6ae65c741ef75dc9ec37f"
+
+S = "${WORKDIR}/git"
+
+EXTRA_OEMAKE = 'OPENSSL_LIB_PATH=${STAGING_LIBDIR} OPENSSL_INC_PATH=${STAGING_INCDIR} CC="${CC}" LD="${CC}" LDFLAGS="${LDFLAGS}"'
+
+do_install () {
+       install -d ${D}/${bindir}/cst
+       install -m 755 ${S}/gen_keys ${D}/${bindir}/cst/
+       install -m 755 ${S}/gen_otpmk ${D}/${bindir}/cst/
+       install -m 755 ${S}/uni_cfsign ${D}/${bindir}/cst/
+       install -m 755 ${S}/uni_sign ${D}/${bindir}/cst/
+       cp -rf ${S}/input_files ${D}/${bindir}/cst
+}
+
+BBCLASSEXTEND = "native nativesdk"
+PARALLEL_MAKE = ""
+
+FILES_${PN}-dbg += "${bindir}/cst/.debug"