fstab 945 B

123456789101112131415161718192021222324252627282930313233343536373839
  1. config 'global'
  2. option 'anon_swap' '1'
  3. option 'anon_mount' '0'
  4. option 'auto_swap' '1'
  5. option 'auto_mount' '1'
  6. option 'delay_root' '5'
  7. option 'check_fs' '0'
  8. config 'global' 'automount'
  9. option 'from_fstab' '1'
  10. option 'anon_mount' '0'
  11. ## btrfs is not picked up here
  12. ## sticking with ext4 for now
  13. config 'mount'
  14. option 'label' 'Superglue'
  15. option 'target' '/www'
  16. option 'enabled' '1'
  17. option 'enabled_fsck' '0'
  18. option 'options' 'rw,sync,noatime,nodiratime'
  19. ## vfat compatibility
  20. config 'mount'
  21. option 'label' 'SUPERGLUE'
  22. option 'target' '/www'
  23. # swap file
  24. config 'swap'
  25. option 'device' '/mnt/system/swap'
  26. # /tmp
  27. config 'mount'
  28. option 'target' '/tmp'
  29. option 'device' 'tmpfs'
  30. option 'fstype' 'tmpfs'
  31. option 'options' 'remount,rw,nosuid,nodev,noatime,size=65%'
  32. option 'enabled_fsck' '0'
  33. option 'enabled' '1'