From 851c7ff26de131b871bd5a64274c1a2b13d60fc3 Mon Sep 17 00:00:00 2001 From: Ting Liu Date: Mon, 8 Jul 2013 11:08:16 +0800 Subject: change layout to follow oe-core guidelines of recipes Follow the rules defined in: http://git.yoctoproject.org/cgit/cgit.cgi/poky/tree/meta/recipes.txt recipes-bsp - Anything with links to specific hardware or hardware configuration information recipes-connectivity - Libraries and applications related to communication with other devices recipes-core - What's needed to build a basic working Linux image including commonly used dependencies recipes-devtools - Tools primarily used by the build system (but can also be used on targets) recipes-extended - Applications which whilst not essential add features compared to the alternatives in core. May be needed for full tool functionality or LSB compliance. recipes-gnome - All things related to the GTK+ application framework recipes-graphics - X and other graphically related system libraries recipes-kernel - The kernel and generic applications/libraries with strong kernel dependencies recipes-lsb4 - Recipes added for the sole purpose of supporting the Linux Standard Base (LSB) 4.x recipes-multimedia - Codecs and support utilties for audio, images and video recipes-rt - Provides package and image recipes for using and testing the PREEMPT_RT kernel recipes-qt - All things related to the Qt application framework recipes-sato - The Sato demo/reference UI/UX, its associated apps and configuration recipes-support - Recipes used by other recipes but that are not directly included in images recipes-dpaa - recipes related to fsl dpaa feature recipes-virtualization - recipes related to fsl virtualization feature Signed-off-by: Ting Liu --- recipes-extended/cst/cst_git.bb | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100644 recipes-extended/cst/cst_git.bb (limited to 'recipes-extended/cst/cst_git.bb') diff --git a/recipes-extended/cst/cst_git.bb b/recipes-extended/cst/cst_git.bb new file mode 100644 index 0000000..177f23c --- /dev/null +++ b/recipes-extended/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" -- cgit v1.2.3-54-g00ecf