mount.conf 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637
  1. # Mount filesystems in the target (generally, before treating the
  2. # target as a usable chroot / "live" system). Filesystems are
  3. # automatically mounted from the partitioning module. Filesystems
  4. # listed here are **extra**. The filesystems listed in *extraMounts*
  5. # are mounted in all target systems. The filesystems listed in
  6. # *extraMountsEfi* are mounted in the target system **only** if
  7. # the host machine uses UEFI.
  8. ---
  9. # Extra filesystems to mount. The key's value is a list of entries; each
  10. # entry has four keys:
  11. # - device The device node to mount
  12. # - fs The filesystem type to use
  13. # - mountPoint Where to mount the filesystem
  14. # - options (optional) Extra options to pass to mount(8)
  15. #
  16. extraMounts:
  17. - device: proc
  18. fs: proc
  19. mountPoint: /proc
  20. - device: sys
  21. fs: sysfs
  22. mountPoint: /sys
  23. - device: /dev
  24. mountPoint: /dev
  25. options: bind
  26. - device: tmpfs
  27. fs: tmpfs
  28. mountPoint: /run
  29. - device: /run/udev
  30. mountPoint: /run/udev
  31. options: bind
  32. extraMountsEfi:
  33. - device: efivarfs
  34. fs: efivarfs
  35. mountPoint: /sys/firmware/efi/efivars