blob: b4fba4a90dcb10de75e81ce0504a3e9211f09fca (
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
31
32
|
SUMMARY = "Reset Configuration Word"
DESCRIPTION = "Reset Configuration Word - hardware boot-time parameters for the QorIQ targets"
LICENSE = "Freescale-Binary-EULA"
LIC_FILES_CHKSUM = "file://Freescale-Binary-EULA;md5=8835a59e50213e1b21243dd00c933e47"
inherit deploy siteinfo
INHIBIT_DEFAULT_DEPS = "1"
PACKAGE_ARCH = "${MACHINE_ARCH}"
SRC_URI = "git://git.freescale.com/ppc/sdk/ls2-rcw.git;nobranch=1"
SRCREV = "83a7a661404b760874759073c9f14c8c2c8a9af3"
S = "${WORKDIR}/git"
M="${@d.getVar('MACHINE', True).replace('-64b','').replace('-32b','').replace('-${SITEINFO_ENDIANNESS}','')}"
do_install () {
install -d ${D}/boot/rcw
cp -a ${S}/${M} ${D}/boot/rcw/
chown -R root:root ${D}
}
do_deploy () {
install -d ${DEPLOYDIR}/rcw
cp -a ${S}/${M} ${DEPLOYDIR}/rcw/
}
addtask deploy before do_build after do_install
PACKAGES += "${PN}-image"
FILES_${PN}-image += "/boot"
COMPATIBLE_MACHINE = "(ls1012a|ls2080a|ls2088a)"
|