mirror of
https://git.yoctoproject.org/poky
synced 2026-02-23 18:09:40 +01:00
The unionfs has been disabled for more than a year and it's not going to be used any more. This patch cleans up the unionfs related code. [YOCTO #4761] [YOCTO #1487] (From OE-Core rev: ba5e437bc7335468a70ea293496f78e1a9d66287) Signed-off-by: Chen Qi <Qi.Chen@windriver.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
18 lines
425 B
BlitzBasic
18 lines
425 B
BlitzBasic
DESCRIPTION = "A live image init script"
|
|
LICENSE = "MIT"
|
|
LIC_FILES_CHKSUM = "file://${COREBASE}/meta/COPYING.MIT;md5=3da9cfbcb788c80a0384361b4de20420"
|
|
DEPENDS = "virtual/kernel"
|
|
RDEPENDS_${PN} = "udev udev-extraconf"
|
|
SRC_URI = "file://init-live.sh"
|
|
|
|
PR = "r11"
|
|
|
|
do_install() {
|
|
install -m 0755 ${WORKDIR}/init-live.sh ${D}/init
|
|
}
|
|
|
|
FILES_${PN} += " /init "
|
|
|
|
# Due to kernel depdendency
|
|
PACKAGE_ARCH = "${MACHINE_ARCH}"
|