Advertisement
Guest User

Untitled

a guest
Apr 27th, 2012
28
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.61 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. # COMPCACHE_SIZE: [ "x K" | "x M" | "x G" | "x %" ]
  32. #
  33. # Amount of RAM to use for RAM-based compressed swap space.
  34. #
  35. # An empty value - compcache isn't used, or added to the initramfs at all.
  36. # An integer and K (e.g. 65536 K) - use a number of kilobytes.
  37. # An integer and M (e.g. 256 M) - use a number of megabytes.
  38. # An integer and G (e.g. 1 G) - use a number of gigabytes.
  39. # An integer and % (e.g. 50 %) - use a percentage of the amount of RAM.
  40. #
  41. # You can optionally install the compcache package to configure this setting
  42. # via debconf and have userspace scripts to load and unload compcache.
  43. #
  44.  
  45. COMPCACHE_SIZE=""
  46.  
  47. #
  48. # COMPRESS: [ gzip | bzip2 | lzma | lzop | xz ]
  49. #
  50.  
  51. COMPRESS=gzip
  52.  
  53. #
  54. # NFS Section of the config.
  55. #
  56.  
  57. #
  58. # BOOT: [ local | nfs ]
  59. #
  60. # local - Boot off of local media (harddrive, USB stick).
  61. #
  62. # nfs - Boot using an NFS drive as the root of the drive.
  63. #
  64.  
  65. BOOT=local
  66.  
  67. #
  68. # DEVICE: ...
  69. #
  70. # Specify a specific network interface, like eth0
  71. # Overridden by optional ip= bootarg
  72. #
  73.  
  74. DEVICE=
  75.  
  76. #
  77. # NFSROOT: [ auto | HOST:MOUNT ]
  78. #
  79.  
  80. NFSROOT=auto
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement