Advertisement
quiro91

mkinitcpio.conf

Jun 26th, 2012
84
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.82 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="i915"
  8.  
  9. # BINARIES
  10. # This setting includes any additional binaries a given user may
  11. # wish into the CPIO image. This is run last, so it may be used to
  12. # override the actual binaries included by a given hook
  13. # BINARIES are dependency parsed, so you may safely ignore libraries
  14. BINARIES=""
  15.  
  16. # FILES
  17. # This setting is similar to BINARIES above, however, files are added
  18. # as-is and are not parsed in any way. This is useful for config files.
  19. # Some users may wish to include modprobe.conf for custom module options
  20. # like so:
  21. # FILES="/etc/modprobe.d/modprobe.conf"
  22. FILES=""
  23.  
  24. # HOOKS
  25. # This is the most important setting in this file. The HOOKS control the
  26. # modules and scripts added to the image, and what happens at boot time.
  27. # Order is important, and it is recommended that you do not change the
  28. # order in which HOOKS are added. Run 'mkinitcpio -H <hook name>' for
  29. # help on a given hook.
  30. # 'base' is _required_ unless you know precisely what you are doing.
  31. # 'udev' is _required_ in order to automatically load modules
  32. # 'filesystems' is _required_ unless you specify your fs modules in MODULES
  33. # Examples:
  34. ## This setup specifies all modules in the MODULES setting above.
  35. ## No raid, lvm2, or encrypted root is needed.
  36. # HOOKS="base"
  37. #
  38. ## This setup will autodetect all modules for your system and should
  39. ## work as a sane default
  40. # HOOKS="base udev autodetect pata scsi sata filesystems"
  41. #
  42. ## This is identical to the above, except the old ide subsystem is
  43. ## used for IDE devices instead of the new pata subsystem.
  44. # HOOKS="base udev autodetect ide scsi sata filesystems"
  45. #
  46. ## This setup will generate a 'full' image which supports most systems.
  47. ## No autodetection is done.
  48. # HOOKS="base udev pata scsi sata usb filesystems"
  49. #
  50. ## This setup assembles a pata mdadm array with an encrypted root FS.
  51. ## Note: See 'mkinitcpio -H mdadm' for more information on raid devices.
  52. # HOOKS="base udev pata mdadm encrypt filesystems"
  53. #
  54. ## This setup loads an lvm2 volume group on a usb device.
  55. # HOOKS="base udev usb lvm2 filesystems"
  56. #
  57. ## NOTE: If you have /usr on a separate partition, you MUST include the
  58. # usr, fsck and shutdown hooks.
  59. HOOKS="base udev autodetect pata scsi sata filesystems usbinput fsck"
  60.  
  61. # COMPRESSION
  62. # Use this to compress the initramfs image. By default, gzip compression
  63. # is used. Use 'cat' to create an uncompressed image.
  64. #COMPRESSION="gzip"
  65. #COMPRESSION="bzip2"
  66. #COMPRESSION="lzma"
  67. #COMPRESSION="xz"
  68. #COMPRESSION="lzop"
  69.  
  70. # COMPRESSION_OPTIONS
  71. # Additional options for the compressor
  72. #COMPRESSION_OPTIONS=""
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement