From 7ec18867230d9803ef2e95509784a325707a9354 Mon Sep 17 00:00:00 2001 From: Zhenhua Luo Date: Thu, 27 Jun 2013 09:25:10 +0000 Subject: [PATCH] cst: add recipe cst is the utility for security boot. Signed-off-by: Zhenhua Luo --- meta-fsl-ppc/recipes-tools/cst/cst_git.bb | 29 +++++++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100644 meta-fsl-ppc/recipes-tools/cst/cst_git.bb 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 index 00000000..177f23ce --- /dev/null +++ b/meta-fsl-ppc/recipes-tools/cst/cst_git.bb @@ -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" -- 2.40.1