1
0
mirror of https://github.com/lxsang/meta-rpi-diya.git synced 2025-07-19 15:29:52 +02:00

use sysvinit

This commit is contained in:
DanyLE
2023-08-02 09:51:11 +02:00
parent a11dda3253
commit 7978bdd326
8 changed files with 24 additions and 8 deletions

View File

@ -12,7 +12,7 @@ EXTRA_USERS_PARAMS = "usermod -p 2Pe/4xyFxsokE diya; \
usermod -a -G avahi diya; \
usermod -a -G sudo diya \
"
IMAGE_BOOT_FILES:append = "fs_resize extraconfig.txt cmd.recovery recovery-${MACHINE}.cpio.gz "
IMAGE_BOOT_FILES:append = "fs_resize extraconfig.txt recovery-${MACHINE}.cpio.gz "
IMAGE_INSTALL:append = "libcurl \
libdrm \
@ -57,3 +57,9 @@ IMAGE_INSTALL:append = "libcurl \
gdbserver \
"
IMAGE_PREPROCESS_COMMAND += "image_patch;"
image_patch () {
# delete unused kernel image
rm -rf ${IMAGE_ROOTFS}/boot/*
}