summaryrefslogtreecommitdiffstats
path: root/recipes-extended/cst/cst_git.bb
blob: 9d2d2974f0aab689658e4bf78605fac7f99d9c67 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
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"

SRCBRANCH = "sdk-v1.4.x"
SRC_URI = "git://git.freescale.com/ppc/sdk/cst.git;branch=${SRCBRANCH}"
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"