mirror of
https://git.yoctoproject.org/poky
synced 2026-02-23 09:59:39 +01:00
The script was making some assumptions that enforced many requirement in the machine kernel configuration and usage, besides it were too while booting. Changes included: * fix indentation; * rdepends on udev; * allow use of isofs as module; * remove rootdelay param parsing as it was unused; * don't verbosely kill udevd and mknod; * mount devtmpfs into rootfs, if available, before swithing root; (From OE-Core rev: 3fc8cec53038f41d31344040c56d62aac90ba7e0) Signed-off-by: Otavio Salvador <otavio@ossystems.com.br> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
16 lines
331 B
BlitzBasic
16 lines
331 B
BlitzBasic
DESCRIPTION = "A live image init script"
|
|
LICENSE = "MIT"
|
|
LIC_FILES_CHKSUM = "file://${COREBASE}/meta/COPYING.MIT;md5=3da9cfbcb788c80a0384361b4de20420"
|
|
RDEPENDS = "udev"
|
|
SRC_URI = "file://init-live.sh"
|
|
|
|
PR = "r7"
|
|
|
|
do_install() {
|
|
install -m 0755 ${WORKDIR}/init-live.sh ${D}/init
|
|
}
|
|
|
|
inherit allarch
|
|
|
|
FILES_${PN} += " /init "
|