mirror of
https://github.com/kernelkit/infix.git
synced 2026-08-06 15:43:02 +02:00
This is not the full environment used by U-Boot, just the bits needed for U-Boot to know which slot to boot and for Infix to know how the boot process went. U-Boot will selectively import/export only these keys during boot, which avoids a malicious user from altering the boot in a way that might bypass signature validation.
25 lines
998 B
Plaintext
25 lines
998 B
Plaintext
# Virtual filesystems
|
|
devtmpfs /dev devtmpfs defaults 0 0
|
|
mkdir#-p /dev/pts helper none 0 0
|
|
devpts /dev/pts devpts mode=620,ptmxmode=0666 0 0
|
|
mkdir#-p /dev/shm helper none 0 0
|
|
tmpfs /dev/shm tmpfs mode=0777 0 0
|
|
proc /proc proc defaults 0 0
|
|
tmpfs /tmp tmpfs mode=1777,nosuid,nodev 0 0
|
|
tmpfs /run tmpfs mode=0755,nosuid,nodev 0 0
|
|
sysfs /sys sysfs defaults 0 0
|
|
debugfs /sys/kernel/debug debugfs nofail 0 0
|
|
cfgfs /config configfs nofail,noauto 0 0
|
|
|
|
# Optional host share when running in Qemu
|
|
hostfs /host 9p nofail,cache=none,msize=16384 0 0
|
|
|
|
# The chosen backing storage for the overlays placed on /cfg, /etc,
|
|
# /home, /root, and /var, are determined dynamically by /lib/infix/mnt
|
|
# depending on the available devices.
|
|
mnttmp /mnt/tmp tmpfs defaults 0 0
|
|
LABEL=aux /mnt/aux auto noatime,nodiratime,noauto 0 0
|
|
LABEL=var /mnt/var auto noatime,nodiratime,noauto 0 0
|
|
LABEL=cfg /mnt/cfg auto noatime,nodiratime,noauto 0 0
|
|
/lib/infix/mnt# /cfg helper none 0 0
|