1
0
mirror of https://github.com/lxsang/meta-rpi-diya.git synced 2024-09-20 00:46:39 +02:00
meta-rpi-diya/recipes-diya/diya-overlay/diya-overlay.bb

42 lines
1.2 KiB
BlitzBasic
Raw Normal View History

2023-07-10 15:26:41 +02:00
DESCRIPTION = "Auto configuration deployment from media"
DEPENDS = ""
LICENSE = "MIT"
LIC_FILES_CHKSUM = "file://${COMMON_LICENSE_DIR}/MIT;md5=0835ade698e0bcf8506ecda2f7b4f302"
SRC_URI += "file://confd \
file://expandfs.sh \
file://80_diya \
2023-08-02 10:13:00 +02:00
file://fs_resize \
file://boot-to-recovery"
2023-07-10 15:26:41 +02:00
inherit update-rc.d useradd
USERADD_PACKAGES = "${PN}"
GROUPADD_PACKAGES = "${PN}"
USERADD_PARAM:${PN} = "-u 1000 -d /home/diya -r -s /bin/sh diya"
INITSCRIPT_NAME = "confd"
2023-07-10 19:27:12 +02:00
INITSCRIPT_PARAMS = "start 30 S ."
2023-07-10 15:26:41 +02:00
do_install() {
install -d ${D}/${sysconfdir}/init.d/
install -d ${DEPLOY_DIR_IMAGE}
2023-07-10 15:26:41 +02:00
install -m 0755 ${WORKDIR}/confd ${D}/${sysconfdir}/init.d/confd
install -d ${D}/usr/bin/
install -d ${D}/etc/default/volatiles
2023-07-10 18:53:23 +02:00
# install -m 0644 ${WORKDIR}/80_diya ${D}${sysconfdir}/default/volatiles
2023-08-02 10:13:00 +02:00
install -m 0755 ${WORKDIR}/expandfs.sh ${D}/usr/sbin/expandfs.sh
install -m 0755 ${WORKDIR}/boot-to-recovery ${D}/usr/sbin/boot-to-recovery
2023-07-10 15:26:41 +02:00
install -m 0755 ${WORKDIR}/fs_resize ${DEPLOY_DIR_IMAGE}/
2023-08-02 09:51:11 +02:00
cat << EOF >> ${DEPLOY_DIR_IMAGE}/extraconfig.txt
# initramfs recovery-${MACHINE}.cpio.gz followkernel
EOF
2023-07-10 18:15:50 +02:00
install -d ${D}/var/etc
install -d ${D}/var/etc/upper
install -d ${D}/var/etc/work
2023-07-10 15:26:41 +02:00
}