Advertisement
Guest User

dracut

a guest
Feb 26th, 2013
125
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 1.55 KB | None | 0 0
  1. title=Gentoo-E17 kernel-3.8.0_64bits
  2. root  (hd0,6)
  3. kernel /kernel-3.8.0_64bits root=/dev/sda6
  4. initrd /boot/initramfs-3.8.0_64bits
  5.  
  6. ############################################################
  7.  
  8. # PUT YOUR CONFIG HERE OR IN separate files named *.conf
  9. # in /etc/dracut.conf.d
  10. # /etc/dracut.conf.d/*.conf will override the settings in here
  11.  
  12. # Sample dracut config file
  13.  
  14. logfile=/var/log/dracut.log
  15. fileloglvl=6
  16.  
  17. # Exact list of dracut modules to use.  Modules not listed here are not going
  18. # to be included.  If you only want to add some optional modules use
  19. # add_dracutmodules option instead.
  20. #dracutmodules+=""
  21.  
  22. # dracut modules to omit
  23. omit_dracutmodules+="kernel-modules"
  24.  
  25. # dracut modules to add to the default
  26. add_dracutmodules+="usrmount"
  27.  
  28. # additional kernel modules to the default
  29. #add_drivers+=""
  30.  
  31. # list of kernel filesystem modules to be included in the generic initramfs
  32. #filesystems+=""
  33.  
  34. # build initrd only to boot current hardware
  35. #hostonly="yes"
  36. #
  37.  
  38. # install local /etc/mdadm.conf
  39. mdadmconf="yes"
  40.  
  41. # install local /etc/lvm/lvm.conf
  42. lvmconf="yes"
  43.  
  44. # A list of fsck tools to install. If it's not specified, module's hardcoded
  45. # default is used, currently: "umount mount /sbin/fsck* xfs_db xfs_check
  46. # xfs_repair e2fsck jfs_fsck reiserfsck btrfsck". The installation is
  47. # opportunistic, so non-existing tools are just ignored.
  48. #fscks=""
  49.  
  50. # inhibit installation of any fsck tools
  51. #nofscks="yes"
  52.  
  53. # mount / and /usr read-only by default
  54. #ro_mnt="no"
  55.  
  56. # set the directory for temporary files
  57. # default: /var/tmp
  58. #tmpdir=/tmp
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement