blob: a5998fe25f771daa9f8c0bf7efe3063acf40d747 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
SUMMARY = "Tools for ARM Trusted Firmware, e.g. FIP image creation tool"
LICENSE = "BSD"
LIC_FILES_CHKSUM = "file://license.rst;md5=e927e02bca647e14efd87e9e914b2443"
SRC_URI = "git://source.codeaurora.org/external/qoriq/qoriq-components/atf;nobranch=1"
SRCREV = "17f94e4315e81e3d1b22d863d9614d724e8273dc"
S = "${WORKDIR}/git"
DEPENDS += "openssl"
EXTRA_OEMAKE = "fiptool V=1 HOSTCC='${CC} ${CPPFLAGS} ${CFLAGS} ${LDFLAGS}'"
do_install () {
install -m 0755 -d ${D}/${bindir}
install -m 0755 ${S}/tools/fiptool/fiptool ${D}/${bindir}/
}
BBCLASSEXTEND = "native"
|