blob: 25f89afe779b2c33bb813cc945dd1afc3082692f (
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
|
SUMMARY = "utility for security boot"
SECTION = "cst"
LICENSE = "BSD"
# TODO: fix license - this file is not a license
LIC_FILES_CHKSUM = "file://common/include/global.h;endline=26;md5=e31e31c35cc53f6fba7e3c4e9baf4339"
DEPENDS += "openssl"
RDEPENDS_${PN} = "bash"
inherit kernel-arch
SRC_URI = "git://git.freescale.com/ppc/sdk/cst.git;branch=sdk-v2.0.x"
SRCREV = "67ee75303916fc60dfd68ba1920932f57a8b9e94"
S = "${WORKDIR}/git"
EXTRA_OEMAKE = 'CC="${CC}" LD="${CC}"'
PARALLEL_MAKE = ""
do_install () {
oe_runmake install DESTDIR=${D} BIN_DEST_DIR=${bindir}
}
FILES_${PN}-dbg += "${bindir}/cst/.debug"
BBCLASSEXTEND = "native nativesdk"
|