1
0
mirror of https://github.com/lxsang/meta-rpi-diya.git synced 2024-09-16 15:26:39 +02:00
meta-rpi-diya/recipes-diya/initramfs/recovery-boot_0.1.bb

43 lines
992 B
BlitzBasic
Raw Normal View History

2023-08-01 14:19:39 +02:00
SUMMARY = "Modular initramfs system"
LICENSE = "MIT"
LIC_FILES_CHKSUM = "file://${COREBASE}/meta/COPYING.MIT;md5=3da9cfbcb788c80a0384361b4de20420"
RDEPENDS:${PN} += "${VIRTUAL-RUNTIME_base-utils}"
RRECOMMENDS:${PN} = "${VIRTUAL-RUNTIME_base-utils-syslog}"
FILESEXTRAPATHS:prepend := "${THISDIR}/files:"
PR = "r4"
2023-08-01 23:25:24 +02:00
inherit allarch update-rc.d
2023-08-01 14:19:39 +02:00
SRC_URI = "file://init \
2023-08-01 23:15:40 +02:00
file://confd \
2023-08-01 14:19:39 +02:00
"
S = "${WORKDIR}"
2023-08-01 23:15:40 +02:00
INITSCRIPT_NAME = "confd"
INITSCRIPT_PARAMS = "start 30 S ."
2023-08-01 14:19:39 +02:00
do_install() {
install -d ${D}/init.d
# base
2023-08-01 17:21:44 +02:00
install -m 0755 ${WORKDIR}/init ${D}/init
2023-08-01 14:19:39 +02:00
# udev
2023-08-01 23:15:40 +02:00
# install -m 0755 ${WORKDIR}/udev ${D}/init.d/01-udev
2023-08-01 14:19:39 +02:00
# debug
2023-08-01 23:15:40 +02:00
# install -m 0755 ${WORKDIR}/debug ${D}/init.d/00-debug
2023-08-01 14:19:39 +02:00
2023-08-01 23:15:40 +02:00
install -m 0755 ${WORKDIR}/confd ${D}/init.d/confd
2023-08-01 14:19:39 +02:00
# Create device nodes expected by some kernels in initramfs
# before even executing /init.
install -d ${D}/dev
mknod -m 622 ${D}/dev/console c 5 1
2023-08-01 23:26:32 +02:00
}
FILES:${PN} = "/init /init.d /dev"