README.bootparams 6.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142
  1. INDEX
  2. -----
  3. * Boot parameters (initramfs stage)
  4. * hooks/parabolaiso
  5. * hooks/parabolaiso_pxe_common
  6. * hooks/parabolaiso_pxe_nbd
  7. * hooks/parabolaiso_pxe_http
  8. * hooks/parabolaiso_pxe_nfs
  9. * hooks/parabolaiso_loop_mnt
  10. * Boot parameters (configs/releng)
  11. * scripts/choose-mirror
  12. *** Boot parameters (initramfs stage)
  13. ** hooks/parabolaiso
  14. * parabolaisolabel= Set the filesystem label where parabolaiso files reside.
  15. Default: (unset)
  16. * parabolaisodevice= Set the device node where parabolaiso medium is located.
  17. Default: "/dev/disk/by-label/${parabolaisolabel}"
  18. * parabolaisobasedir= Set the base directory where all files reside.
  19. Default: "parabola"
  20. * aitab= Set the path for "aitab" file.
  21. Default: ${parabolaisobasedir}/aitab
  22. * copytoram= If set to "y" or just "copytoram" without arguments,
  23. all SquashFS are copied to "RAM".
  24. Default: (unset)
  25. * checksum= If set to "y" or just "checksum" without arguments,
  26. performs a self-test of all files inside ${install_dir},
  27. and continue booting if ok.
  28. Default: (unset)
  29. * cow_label= Set the filesystem label where COW (dm-snapshot)
  30. files must be stored.
  31. Default: (unset)
  32. * cow_device= Set the device node where COW (dm-snapshot) files
  33. must be stored.
  34. Default: (unset) or "/dev/disk/by-label/${cow_label}"
  35. * cow_directory= Set a directory inside ${cow_device}.
  36. Default: "/persistent_${parabolaisolabel}/${arch}"
  37. * cow_persistent= Set if snapshots are persistent "P" or non-persistent "N".
  38. Default: "N" (if no ${cow_device} is used) otherwise "P".
  39. * cowspace_size= Set the size of tmpfs /cowspace. This space is used for
  40. Copy-On-Write files of dm-snapshot.
  41. Size is in bytes (suffix with "k", "m" and "g") or
  42. in percentage of available RAM.
  43. Default: "75%"
  44. * cowfile_size= Set the size for all files to be used as COW (dm-snapshot),
  45. in percentage of the ro-device.fs file. This is mostly useful
  46. when cow_device= is used and filesystem does not support
  47. sparse files (ie VFAT).
  48. Default: "100%"
  49. * copytoram_size= Set the size of tmpfs. This space is used for
  50. copy of all SquashFS images used, if copytoram=y.
  51. Size is in bytes (suffix with "k", "m" and "g") or
  52. in percentage of available RAM.
  53. Default: "75%"
  54. * dm_snap_prefix= Set a prefix for device-mapper snapshot node names.
  55. Default: "parabola"
  56. * arch= Force an architecture type (i686 | x86_64).
  57. Do not set it for normal operations.
  58. Useful for running a 64 bit kernel / 32 bit userspace.
  59. Default: (architecture of running kernel)
  60. ** hooks/parabolaiso_pxe_common
  61. * ip= This parameter is setup automatically by PXELINUX
  62. when option "IPAPPEND" is set to 1 or 2 in config.
  63. ip=<client-ip>:<boot-server-ip>:<gw-ip>:<netmask>
  64. Default: (set via PXE server)
  65. * BOOTIF= This parameter is setup automatically by PXELINUX
  66. when option "IPAPPEND" is set to 2 or 3 in config.
  67. BOOTIF=<hardware-address-of-boot-interface>
  68. Default: (set via PXELINUX)
  69. * copy_resolvconf= Copy /etc/resolv.conf from initramfs to live-enviroment.
  70. Set to "n" to skip them.
  71. Default: "y"
  72. ** hooks/parabolaiso_pxe_nbd
  73. * parabolaiso_nbd_name= Set NBD export name used by the server.
  74. Default: parabolaiso
  75. * parabolaiso_nbd_srv= Set an IP address where NBD reside.
  76. If ${pxeserver} is used, PXE IP will be used.
  77. Default: (unset)
  78. ** hooks/parabolaiso_pxe_http
  79. * parabolaiso_http_srv= Set an HTTP URL (must end with /) where ${parabolaisobasedir}
  80. is found with all *.sfs files.
  81. In the IP/domain part if ${pxeserver} is used, use PXE IP.
  82. Default: (unset)
  83. * parabolaiso_http_spc= Set the size of tmpfs where *.sfs files are downloaded.
  84. Default: "75%"
  85. ** hooks/parabolaiso_pxe_nfs
  86. * parabolaiso_nfs_srv= Set the NFS-IP:/path of the server
  87. In the IP part if ${pxeserver} is used, PXE IP will be used.
  88. Default: (unset)
  89. * parabolaiso_nfs_opt= Set NFS mount options separated by comma.
  90. Default: (unset, see below)
  91. These are the implicit options:
  92. port = as given by server portmap daemon
  93. rsize = 1024
  94. wsize = 1024
  95. timeo = 7
  96. retrans = 3
  97. acregmin = 3
  98. acregmax = 60
  99. acdirmin = 30
  100. acdirmax = 60
  101. flags = hard, nointr, noposix, cto, ac
  102. ** hooks/parabolaiso_loop_mnt
  103. * img_label= Set the filesystem label where parabolaiso-image.iso.
  104. Default: (unset)
  105. * img_dev= Device where parabolaiso-image.iso reside.
  106. Default: (unset) or "/dev/disk/by-label/${img_label}"
  107. * img_loop= Full path where parabolaiso-image.iso is located on ${img_dev}
  108. Default: (unset)
  109. *** Boot parameters (configs/releng)
  110. ** scripts/choose-mirror
  111. * mirror= Takes a mirror URL and creates a new mirrorlist.
  112. When setting mirror=auto, the mirror is taken from
  113. archiso_http_srv= in order to keep using the mirror
  114. selected in the netboot menu.
  115. Default: (unset)