Advertisement
Guest User

Untitled

a guest
May 5th, 2018
190
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.99 KB | None | 0 0
  1. #
  2. # initramfs.conf
  3. # Configuration file for mkinitramfs(8). See initramfs.conf(5).
  4. #
  5. # Note that configuration options from this file can be overridden
  6. # by config files in the /etc/initramfs-tools/conf.d directory.
  7.  
  8. #
  9. # MODULES: [ most | netboot | dep | list ]
  10. #
  11. # most - Add most filesystem and all harddrive drivers.
  12. #
  13. # dep - Try and guess which modules to load.
  14. #
  15. # netboot - Add the base modules, network modules, but skip block devices.
  16. #
  17. # list - Only include modules from the 'additional modules' list
  18. #
  19.  
  20. MODULES=most
  21.  
  22. #
  23. # BUSYBOX: [ y | n ]
  24. #
  25. # Use busybox if available.
  26. #
  27.  
  28. BUSYBOX=y
  29.  
  30. #
  31. # KEYMAP: [ y | n ]
  32. #
  33. # Load a keymap during the initramfs stage.
  34. #
  35.  
  36. KEYMAP=n
  37.  
  38. #
  39. # COMPRESS: [ gzip | bzip2 | lzma | lzop | xz ]
  40. #
  41.  
  42. COMPRESS=gzip
  43.  
  44. #
  45. # NFS Section of the config.
  46. #
  47.  
  48. #
  49. # DEVICE: ...
  50. #
  51. # Specify a specific network interface, like eth0
  52. # Overridden by optional ip= bootarg
  53. #
  54.  
  55. DEVICE=
  56.  
  57. #
  58. # NFSROOT: [ auto | HOST:MOUNT ]
  59. #
  60.  
  61. NFSROOT=auto
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement