generic-poky/meta/packages/initrdscripts/initramfs-boot_1.0.bb
Samuel Ortiz 6e7061263e initrdscripts: Add the simplest init script
When booting from initramfs, one must provide a /init link.
This one is the simplest one, just forking a shell, allowing
for the smallest initramfs.
2008-11-05 13:53:09 +01:00

13 lines
207 B
BlitzBasic

DESCRIPTON = "A live image init script"
SRC_URI = "file://init-boot.sh"
PR = "r0"
do_install() {
install -m 0755 ${WORKDIR}/init-boot.sh ${D}/init
}
PACKAGE_ARCH = "all"
FILES_${PN} += " /init "