Advertisement
Guest User

mkinitcpio.conf

a guest
Aug 22nd, 2016
160
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.55 KB | None | 0 0
  1. [yoyo@aspire ~]$ cat '/etc/mkinitcpio.conf'
  2. # vim:set ft=sh
  3. # MODULES
  4. # The following modules are loaded before any boot hooks are
  5. # run. Advanced users may wish to specify all system modules
  6. # in this array. For instance:
  7. # MODULES="piix ide_disk reiserfs"
  8. MODULES=""
  9.  
  10. # BINARIES
  11. # This setting includes any additional binaries a given user may
  12. # wish into the CPIO image. This is run last, so it may be used to
  13. # override the actual binaries included by a given hook
  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. FILES=""
  21.  
  22. # HOOKS
  23. # This is the most important setting in this file. The HOOKS control the
  24. # modules and scripts added to the image, and what happens at boot time.
  25. # Order is important, and it is recommended that you do not change the
  26. # order in which HOOKS are added. Run 'mkinitcpio -H <hook name>' for
  27. # help on a given hook.
  28. # 'base' is _required_ unless you know precisely what you are doing.
  29. # 'udev' is _required_ in order to automatically load modules
  30. # 'filesystems' is _required_ unless you specify your fs modules in MODULES
  31. # Examples:
  32. ## This setup specifies all modules in the MODULES setting above.
  33. ## No raid, lvm2, or encrypted root is needed.
  34. # HOOKS="base"
  35. #
  36. ## This setup will autodetect all modules for your system and should
  37. ## work as a sane default
  38. # HOOKS="base udev autodetect block filesystems"
  39. #
  40. ## This setup will generate a 'full' image which supports most systems.
  41. ## No autodetection is done.
  42. # HOOKS="base udev block filesystems"
  43. #
  44. ## This setup assembles a pata mdadm array with an encrypted root FS.
  45. ## Note: See 'mkinitcpio -H mdadm' for more information on raid devices.
  46. # HOOKS="base udev block mdadm encrypt filesystems"
  47. #
  48. ## This setup loads an lvm2 volume group on a usb device.
  49. # HOOKS="base udev block lvm2 filesystems"
  50. #
  51. ## NOTE: If you have /usr on a separate partition, you MUST include the
  52. # usr, fsck and shutdown hooks.
  53. HOOKS="base udev autodetect modconf block keyboard keymap resume filesystems fsck"
  54.  
  55. # COMPRESSION
  56. # Use this to compress the initramfs image. By default, gzip compression
  57. # is used. Use 'cat' to create an uncompressed image.
  58. #COMPRESSION="gzip"
  59. #COMPRESSION="bzip2"
  60. #COMPRESSION="lzma"
  61. #COMPRESSION="xz"
  62. #COMPRESSION="lzop"
  63. #COMPRESSION="lz4"
  64.  
  65. # COMPRESSION_OPTIONS
  66. # Additional options for the compressor
  67. #COMPRESSION_OPTIONS=""
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement