mirror of
https://github.com/cirosantilli/linux-kernel-module-cheat.git
synced 2026-01-22 17:55:57 +01:00
This will allow for other types of root filesystems that don't rely on Buildroot to be added and used in the future. Propagate --verbose on all build scripts to see full GCC commands. build-all: allow for neat subsets also 9p share rootfs_overlay. TODO document.
13 lines
671 B
Plaintext
13 lines
671 B
Plaintext
# <file system> <mount pt> <type> <options> <dump> <pass>
|
|
/dev/root / ext2 rw,noauto 0 1
|
|
proc /proc proc defaults 0 0
|
|
devpts /dev/pts devpts defaults,gid=5,mode=620 0 0
|
|
tmpfs /dev/shm tmpfs mode=0777 0 0
|
|
tmpfs /tmp tmpfs mode=1777 0 0
|
|
tmpfs /run tmpfs mode=0755,nosuid,nodev 0 0
|
|
sysfs /sys sysfs defaults 0 0
|
|
debugfs /sys/kernel/debug debugfs defaults 0 0
|
|
host_data /mnt/9p/data 9p trans=virtio,version=9p2000.L 0 0
|
|
host_out /mnt/9p/out 9p trans=virtio,version=9p2000.L 0 0
|
|
host_rootfs_overlay /mnt/9p/rootfs_overlay 9p trans=virtio,version=9p2000.L 0 0
|