add board specific code to layer

This commit is contained in:
DanyLE
2025-03-27 11:44:41 +01:00
parent d97d78fb0c
commit 44f9f11caa
3 changed files with 23 additions and 1 deletions

View File

@ -0,0 +1,7 @@
image_patch:append () {
# create /etc/fstab
cat << EOF > ${IMAGE_ROOTFS}/etc/fstab
/dev/mmcblk1p1 /boot auto defaults 0 0
/dev/mmcblk1p4 /home auto defaults 0 0
EOF
}