1
0
mirror of https://github.com/lxsang/meta-rpi-diya.git synced 2025-08-01 05:31:02 +02:00

mount /etc to writable partition

This commit is contained in:
DanyLE
2023-07-10 16:08:11 +02:00
parent 0544fa9554
commit 60e28aa4d9
4 changed files with 10 additions and 10 deletions

View File

@ -1 +1,7 @@
hostname = "diya"
hostname = "diya"
do_install:append () {
cat >> ${D}${sysconfdir}/fstab <<EOF
# add bind mount for /etc
/etc /var/etc none defaults,bind 0 0
EOF
}