Advertisement
Guest User

mkinitcpio.conf

a guest
Aug 4th, 2011
195
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.83 KB | None | 0 0
  1. # vim:set ft=sh
  2. # MODULES
  3. # The following modules are loaded before any boot hooks are
  4. # run. Advanced users may wish to specify all system modules
  5. # in this array. For instance:
  6. # MODULES="piix ide_disk reiserfs"
  7. MODULES=""
  8.  
  9. # BINARIES
  10. # This setting includes any additional binaries a given user may
  11. # wish into the CPIO image. This is run first, so it may be used to
  12. # override the actual binaries used in a given hook.
  13. # (Existing files are NOT overwritten if already added)
  14. # BINARIES are dependency parsed, so you may safely ignore libraries
  15. BINARIES=""
  16.  
  17. # FILES
  18. # This setting is similar to BINARIES above, however, files are added
  19. # as-is and are not parsed in any way. This is useful for config files.
  20. # Some users may wish to include modprobe.conf for custom module options
  21. # like so:
  22. # FILES="/etc/modprobe.d/modprobe.conf"
  23. FILES=""
  24.  
  25. # HOOKS
  26. # This is the most important setting in this file. The HOOKS control the
  27. # modules and scripts added to the image, and what happens at boot time.
  28. # Order is important, and it is recommended that you do not change the
  29. # order in which HOOKS are added. Run 'mkinitcpio -H <hook name>' for
  30. # help on a given hook.
  31. # 'base' is _required_ unless you know precisely what you are doing.
  32. # 'udev' is _required_ in order to automatically load modules
  33. # 'filesystems' is _required_ unless you specify your fs modules in MODULES
  34. # Examples:
  35. ## This setup specifies all modules in the MODULES setting above.
  36. ## No raid, lvm2, or encrypted root is needed.
  37. # HOOKS="base"
  38. #
  39. ## This setup will autodetect all modules for your system and should
  40. ## work as a sane default
  41. # HOOKS="base udev autodetect pata scsi sata filesystems"
  42. #
  43. ## This is identical to the above, except the old ide subsystem is
  44. ## used for IDE devices instead of the new pata subsystem.
  45. # HOOKS="base udev autodetect ide scsi sata filesystems"
  46. #
  47. ## This setup will generate a 'full' image which supports most systems.
  48. ## No autodetection is done.
  49. # HOOKS="base udev pata scsi sata usb filesystems"
  50. #
  51. ## This setup assembles a pata raid array with an encrypted root FS.
  52. ## Note: See 'mkinitcpio -H raid' for more information on raid devices.
  53. # HOOKS="base udev pata raid encrypt filesystems"
  54. #
  55. ## This setup loads an lvm2 volume group on a usb device.
  56. # HOOKS="base udev usb lvm2 filesystems"
  57. HOOKS="base udev autodetect pata scsi sata usb lvm2 resume filesystems"
  58.  
  59. # COMPRESSION
  60. # Use this to compress the initramfs image. With kernels earlier than
  61. # 2.6.30, only gzip is supported, which is also the default. Newer kernels
  62. # support gzip, bzip2 and lzma. Kernels 2.6.38 and later support xz
  63. # compression.
  64. #COMPRESSION="gzip"
  65. #COMPRESSION="bzip2"
  66. #COMPRESSION="lzma"
  67. COMPRESSION="xz"
  68.  
  69. # COMPRESSION_OPTIONS
  70. # Additional options for the compressor
  71. #COMPRESSION_OPTIONS=""
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement