123456789101112131415161718192021222324252627282930313233343536373839 |
- config 'global'
- option 'anon_swap' '1'
- option 'anon_mount' '0'
- option 'auto_swap' '1'
- option 'auto_mount' '1'
- option 'delay_root' '5'
- option 'check_fs' '0'
- config 'global' 'automount'
- option 'from_fstab' '1'
- option 'anon_mount' '0'
- ## btrfs is not picked up here
- ## sticking with ext4 for now
- config 'mount'
- option 'label' 'Superglue'
- option 'target' '/www'
- option 'enabled' '1'
- option 'enabled_fsck' '0'
- option 'options' 'rw,sync,noatime,nodiratime'
- ## vfat compatibility
- config 'mount'
- option 'label' 'SUPERGLUE'
- option 'target' '/www'
- # swap file
- config 'swap'
- option 'device' '/mnt/system/swap'
- # /tmp
- config 'mount'
- option 'target' '/tmp'
- option 'device' 'tmpfs'
- option 'fstype' 'tmpfs'
- option 'options' 'remount,rw,nosuid,nodev,noatime,size=65%'
- option 'enabled_fsck' '0'
- option 'enabled' '1'
|