Advertisement
sistematico

mkinitcpio.conf

Feb 22nd, 2012
72
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 2.90 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="bfq-iosched"
  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. FILES="/etc/modprobe.d/modprobe.conf"
  25.  
  26. # HOOKS
  27. # This is the most important setting in this file.  The HOOKS control the
  28. # modules and scripts added to the image, and what happens at boot time.
  29. # Order is important, and it is recommended that you do not change the
  30. # order in which HOOKS are added.  Run 'mkinitcpio -H <hook name>' for
  31. # help on a given hook.
  32. # 'base' is _required_ unless you know precisely what you are doing.
  33. # 'udev' is _required_ in order to automatically load modules
  34. # 'filesystems' is _required_ unless you specify your fs modules in MODULES
  35. # Examples:
  36. ##   This setup specifies all modules in the MODULES setting above.
  37. ##   No raid, lvm2, or encrypted root is needed.
  38. #    HOOKS="base"
  39. #
  40. ##   This setup will autodetect all modules for your system and should
  41. ##   work as a sane default
  42. #    HOOKS="base udev autodetect pata scsi sata filesystems"
  43. #
  44. ##   This is identical to the above, except the old ide subsystem is
  45. ##   used for IDE devices instead of the new pata subsystem.
  46. #    HOOKS="base udev autodetect ide scsi sata filesystems"
  47. #
  48. ##   This setup will generate a 'full' image which supports most systems.
  49. ##   No autodetection is done.
  50. #    HOOKS="base udev pata scsi sata usb filesystems"
  51. #
  52. ##   This setup assembles a pata mdadm array with an encrypted root FS.
  53. ##   Note: See 'mkinitcpio -H mdadm' for more information on raid devices.
  54. #    HOOKS="base udev pata mdadm encrypt filesystems"
  55. #
  56. ##   This setup loads an lvm2 volume group on a usb device.
  57. #    HOOKS="base udev usb lvm2 filesystems"
  58. HOOKS="base udev autodetect scsi sata filesystems usbinput"
  59.  
  60. # COMPRESSION
  61. # Use this to compress the initramfs image. With kernels earlier than
  62. # 2.6.30, only gzip is supported, which is also the default. Newer kernels
  63. # support gzip, bzip2 and lzma. Kernels 2.6.38 and later support xz
  64. # compression.
  65. #COMPRESSION="gzip"
  66. #COMPRESSION="bzip2"
  67. #COMPRESSION="lzma"
  68. #COMPRESSION="xz"
  69. #COMPRESSION="lzop"
  70.  
  71. # COMPRESSION_OPTIONS
  72. # Additional options for the compressor
  73. #COMPRESSION_OPTIONS=""
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement