Advertisement
Guest User

Untitled

a guest
Jun 27th, 2014
24
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 2.68 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. #MODULES="ahci sd_mod ext4 i915"
  9. MODULES="ahci sd_mod ext4 i915"
  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="fsck fsck.ext4"
  17. BINARIES="fsck fsck.ext4"
  18.  
  19. # FILES
  20. # This setting is similar to BINARIES above, however, files are added
  21. # as-is and are not parsed in any way.  This is useful for config files.
  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 block filesystems"
  41. #
  42. ##   This setup will generate a 'full' image which supports most systems.
  43. ##   No autodetection is done.
  44. #    HOOKS="base udev block filesystems"
  45. #
  46. ##   This setup assembles a pata mdadm array with an encrypted root FS.
  47. ##   Note: See 'mkinitcpio -H mdadm' for more information on raid devices.
  48. #    HOOKS="base udev block mdadm encrypt filesystems"
  49. #
  50. ##   This setup loads an lvm2 volume group on a usb device.
  51. #    HOOKS="base udev block lvm2 filesystems"
  52. #
  53. ##   NOTE: If you have /usr on a separate partition, you MUST include the    usr, fsck and shutdown hooks.
  54. #    usr, fsck and shutdown hooks.
  55. #HOOKS="base udev autodetect modconf block filesystems keyboard fsck"
  56. HOOKS="base udev-custom plymouth"
  57.  
  58. # COMPRESSION
  59. # Use this to compress the initramfs image. By default, gzip compression
  60. # is used. Use 'cat' to create an uncompressed image.
  61. #COMPRESSION="gzip"
  62. #COMPRESSION="bzip2"
  63. #COMPRESSION="lzma"
  64. #COMPRESSION="xz"
  65. #COMPRESSION="lzop"
  66. #COMPRESSION="lz4"
  67.  
  68. # COMPRESSION_OPTIONS
  69. # Additional options for the compressor
  70. #COMPRESSION_OPTIONS=""
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement