mirror of
https://git.yoctoproject.org/poky
synced 2026-03-13 18:59:40 +01:00
Both hddimg and livecd use init-live.sh script to boot the rootfs.img. But the paths of rootfs.img in hddimg and livecd are different. So we add a variable "ISOLINUX" to provide a correct path. (From OE-Core rev: 4e7221d23bf335cbb4e1e2ba703e4c0a04df7129) Signed-off-by: Jingdong Lu <jingdong.lu@windriver.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
15 lines
313 B
BlitzBasic
15 lines
313 B
BlitzBasic
DESCRIPTION = "A live image init script"
|
|
LICENSE = "MIT"
|
|
LIC_FILES_CHKSUM = "file://${COREBASE}/meta/COPYING.MIT;md5=3da9cfbcb788c80a0384361b4de20420"
|
|
SRC_URI = "file://init-live.sh"
|
|
|
|
PR = "r5"
|
|
|
|
do_install() {
|
|
install -m 0755 ${WORKDIR}/init-live.sh ${D}/init
|
|
}
|
|
|
|
inherit allarch
|
|
|
|
FILES_${PN} += " /init "
|