Config.in 1.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980
  1. #
  2. # For a description of the syntax of this configuration file,
  3. # see scripts/kbuild/config-language.txt.
  4. #
  5. menu "Init Utilities"
  6. config CONFIG_INIT
  7. bool "init"
  8. default n
  9. help
  10. init is the first program run when the system boots.
  11. config CONFIG_FEATURE_USE_INITTAB
  12. bool " Support reading an inittab file?"
  13. default y
  14. depends on CONFIG_INIT
  15. help
  16. Allow init to read an inittab file when the system boot.
  17. config CONFIG_FEATURE_INITRD
  18. bool " Support running init from within an initrd?"
  19. default y
  20. depends on CONFIG_INIT
  21. help
  22. Allow init to be called from an initrd as linuxrc.
  23. config CONFIG_FEATURE_INIT_COREDUMPS
  24. bool " Support dumping core for child processes (debugging only)?"
  25. default n
  26. depends on CONFIG_INIT
  27. help
  28. If this option is enabled and the file /.init_enable_core
  29. exists, then init will call setrlimit() to allow unlimited
  30. core file sizes. If this option is disabled, processes
  31. will not generate any core files.
  32. config CONFIG_FEATURE_INIT_SWAPON
  33. bool " Should init run swapon if short on memory?"
  34. default y
  35. depends on CONFIG_INIT
  36. help
  37. If the system has less than one megabyte of total memory, init
  38. will run '/sbin/swapon -a' to add swap memory.
  39. config CONFIG_FEATURE_EXTRA_QUIET
  40. bool " Should init be _extra_ quiet on boot?"
  41. default y
  42. depends on CONFIG_INIT
  43. help
  44. Prevent init from logging some messages to the console
  45. during boot.
  46. config CONFIG_HALT
  47. bool "halt"
  48. default y
  49. help
  50. Stop all processes and halt the system.
  51. config CONFIG_POWEROFF
  52. bool "poweroff"
  53. default y
  54. help
  55. Stop all processes and (try to) power off the system.
  56. config CONFIG_REBOOT
  57. bool "reboot"
  58. default y
  59. help
  60. Stop all processes and reboot the system.
  61. config CONFIG_MESG
  62. bool "mesg"
  63. default y
  64. help
  65. Mesg controls access to your terminal by others. It is typically
  66. used to allow or disallow other users to write to your terminal
  67. endmenu