1
0
mirror of https://git.yoctoproject.org/poky synced 2026-05-08 05:09:24 +00:00

Merge branch 'master' of ssh://git@git.moblin.org/poky

This commit is contained in:
Joshua Lock
2008-11-05 14:46:10 +00:00
2 changed files with 20 additions and 0 deletions
@@ -0,0 +1,8 @@
#!/bin/sh
mkdir /proc
mkdir /sys
mount -t proc proc /proc
mount -t sysfs sysfs /sys
exec sh
@@ -0,0 +1,12 @@
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 "