Kconfig.debug 922 B

123456789101112131415161718192021222324252627
  1. menu "Kernel hacking"
  2. source "lib/Kconfig.debug"
  3. config EARLY_PRINTK
  4. bool "Early printk" if EMBEDDED
  5. default y
  6. help
  7. Write kernel log output directly into the VGA buffer or to a serial
  8. port.
  9. This is useful for kernel debugging when your machine crashes very
  10. early before the console code is initialized. For normal operation
  11. it is not recommended because it looks ugly and doesn't cooperate
  12. with klogd/syslogd or the X server. You should normally N here,
  13. unless you want to debug such a crash.
  14. config 16KSTACKS
  15. bool "Use 16Kb for kernel stacks instead of 8Kb"
  16. help
  17. If you say Y here the kernel will use a 16Kb stacksize for the
  18. kernel stack attached to each process/thread. The default is 8K.
  19. This increases the resident kernel footprint and will cause less
  20. threads to run on the system and also increase the pressure
  21. on the VM subsystem for higher order allocations.
  22. endmenu