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

46 lines
1.2 KiB
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"
2023-08-01 23:46:26 +02:00
RDEPENDS:${PN} += "${VIRTUAL-RUNTIME_base-utils} sysvinit"
2023-08-01 14:19:39 +02:00
RRECOMMENDS:${PN} = "${VIRTUAL-RUNTIME_base-utils-syslog}"
FILESEXTRAPATHS:prepend := "${THISDIR}/files:"
PR = "r4"
2023-08-02 00:05:19 +02:00
inherit allarch update-rc.d
2023-08-01 14:19:39 +02:00
SRC_URI = "file://init \
2023-08-02 00:05:19 +02:00
file://confd \
2023-08-02 17:51:11 +02:00
file://diya-update \
2023-08-01 14:19:39 +02:00
"
S = "${WORKDIR}"
2023-08-02 00:05:19 +02:00
INITSCRIPT_NAME = "confd"
INITSCRIPT_PARAMS = "start 30 S ."
2023-08-01 23:15:40 +02:00
2023-08-01 14:19:39 +02:00
do_install() {
2023-08-02 00:51:40 +02:00
install -d ${D}/etc/init.d
2023-08-02 17:51:11 +02:00
install -d ${D}/sbin
2023-08-01 14:19:39 +02:00
# base
2023-08-02 00:29:37 +02:00
install -m 0755 ${WORKDIR}/init ${D}/init
2023-08-02 00:05:19 +02:00
install -m 0755 ${WORKDIR}/confd ${D}/etc/init.d/confd
2023-08-02 09:51:11 +02:00
cat << EOF >> ${D}/etc/profile
export MACHINE=${MACHINE}
EOF
2023-08-02 17:51:11 +02:00
install -m 0755 ${WORKDIR}/diya-update ${D}/sbin/
# create symlink
ln -sf /sbin/diya-update ${D}/sbin/diya-update-rootfs
ln -sf /sbin/diya-update ${D}/sbin/diya-update-kernel
ln -sf /sbin/diya-update ${D}/sbin/diya-update-initramfs
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
}
2023-08-02 17:51:11 +02:00
FILES:${PN} = "/etc /init /dev /sbin"