Advertisement
Guest User

Untitled

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