- Switch to Sytemd - Switch to linux 6.12lts - Remove modem power DTS node as it is not compatible with eg25-manager
15 lines
496 B
Plaintext
15 lines
496 B
Plaintext
|
|
FILESEXTRAPATHS:prepend := "${THISDIR}/files:"
|
|
|
|
SRC_URI += " file://resize2fs.service file://firstboot file://expandfs \
|
|
"
|
|
inherit systemd
|
|
SYSTEMD_PACKAGES = "${PN}"
|
|
SYSTEMD_SERVICE:${PN} = "resize2fs.service"
|
|
|
|
do_install:append () {
|
|
install -m 0644 ${UNPACKDIR}/firstboot ${D}${sysconfdir}/firstboot
|
|
install -m 0755 ${UNPACKDIR}/expandfs ${D}/usr/sbin/expandfs
|
|
install -D -p -m0644 ${UNPACKDIR}/resize2fs.service \
|
|
${D}${systemd_unitdir}/system/resize2fs.service
|
|
} |