diff options
Diffstat (limited to 'meta/recipes-core/initrdscripts')
| -rw-r--r-- | meta/recipes-core/initrdscripts/initramfs-live-boot-tiny_1.0.bb | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/meta/recipes-core/initrdscripts/initramfs-live-boot-tiny_1.0.bb b/meta/recipes-core/initrdscripts/initramfs-live-boot-tiny_1.0.bb new file mode 100644 index 0000000000..7a9a8ecae2 --- /dev/null +++ b/meta/recipes-core/initrdscripts/initramfs-live-boot-tiny_1.0.bb | |||
| @@ -0,0 +1,21 @@ | |||
| 1 | SUMMARY = "Live image init script" | ||
| 2 | LICENSE = "MIT" | ||
| 3 | LIC_FILES_CHKSUM = "file://${COREBASE}/meta/COPYING.MIT;md5=3da9cfbcb788c80a0384361b4de20420" | ||
| 4 | DEPENDS = "virtual/kernel" | ||
| 5 | RDEPENDS_${PN} = "busybox-mdev" | ||
| 6 | SRC_URI = "file://init-live.sh" | ||
| 7 | |||
| 8 | PR = "r12" | ||
| 9 | |||
| 10 | S = "${WORKDIR}" | ||
| 11 | |||
| 12 | do_install() { | ||
| 13 | install -m 0755 ${WORKDIR}/init-live.sh ${D}/init | ||
| 14 | install -d ${D}/dev | ||
| 15 | mknod -m 622 ${D}/dev/console c 5 1 | ||
| 16 | } | ||
| 17 | |||
| 18 | FILES_${PN} += " /init /dev " | ||
| 19 | |||
| 20 | # Due to kernel dependency | ||
| 21 | PACKAGE_ARCH = "${MACHINE_ARCH}" | ||
