blob: 42a05ec26452f6c919bdea4de4cb98bebd5a4183 (
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
33
34
35
|
LICENSE = "GPLv2+"
LIC_FILES_CHKSUM = "file://${COREBASE}/meta/files/common-licenses/GPL-2.0;md5=801f80980d171dd6425610833a22dbe6"
DEPENDS = "u-boot-mkimage-native"
SRC_URI = "file://boot.cmd"
inherit deploy
do_mkimage () {
uboot-mkimage -A arm -O linux -T script -C none -a 0 -e 0 \
-n "boot script" -d ${WORKDIR}/boot.cmd ${WORKDIR}/boot.scr
}
addtask mkimage after do_compile before do_install
do_compile[noexec] = "1"
do_install () {
install -D -m 644 ${WORKDIR}/boot.scr ${D}/boot/boot.scr
}
do_deploy () {
install -D -m 644 ${WORKDIR}/boot.scr \
${DEPLOYDIR}/boot.scr-${MACHINE}-${PV}-${PR}
cd ${DEPLOYDIR}
rm -f boot.scr-${MACHINE}
ln -sf boot.scr-${MACHINE}-${PV}-${PR} 6x_bootscript-${MACHINE}
}
addtask deploy after do_install before do_build
FILES_${PN} += "/"
PACKAGE_ARCH = "${MACHINE_ARCH}"
|