initramfs.conf 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273
  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. # MODULES: [ most | netboot | dep | list ]
  9. #
  10. # most - Add most filesystem and all harddrive drivers.
  11. #
  12. # dep - Try and guess which modules to load.
  13. #
  14. # netboot - Add the base modules, network modules, but skip block devices.
  15. #
  16. # list - Only include modules from the 'additional modules' list
  17. #
  18. MODULES=most
  19. #
  20. # BUSYBOX: [ y | n | auto ]
  21. #
  22. # Use busybox shell and utilities. If set to n, klibc utilities will be used.
  23. # If set to auto (or unset), busybox will be used if installed and klibc will
  24. # be used otherwise.
  25. #
  26. BUSYBOX=auto
  27. #
  28. # COMPCACHE_SIZE: [ "x K" | "x M" | "x G" | "x %" ]
  29. #
  30. # Amount of RAM to use for RAM-based compressed swap space.
  31. #
  32. # An empty value - compcache isn't used, or added to the initramfs at all.
  33. # An integer and K (e.g. 65536 K) - use a number of kilobytes.
  34. # An integer and M (e.g. 256 M) - use a number of megabytes.
  35. # An integer and G (e.g. 1 G) - use a number of gigabytes.
  36. # An integer and % (e.g. 50 %) - use a percentage of the amount of RAM.
  37. #
  38. # You can optionally install the compcache package to configure this setting
  39. # via debconf and have userspace scripts to load and unload compcache.
  40. #
  41. COMPCACHE_SIZE=""
  42. #
  43. # COMPRESS: [ gzip | bzip2 | lzma | lzop | xz ]
  44. #
  45. COMPRESS=gzip
  46. #
  47. # NFS Section of the config.
  48. #
  49. #
  50. # DEVICE: ...
  51. #
  52. # Specify a specific network interface, like eth0
  53. # Overridden by optional ip= bootarg
  54. #
  55. DEVICE=
  56. #
  57. # NFSROOT: [ auto | HOST:MOUNT ]
  58. #
  59. NFSROOT=auto