Kconfig.debug 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. menu "Kernel hacking"
  2. source "lib/Kconfig.debug"
  3. config EARLY_PRINTK
  4. bool
  5. depends on ALPHA_GENERIC || ALPHA_SRM
  6. default y
  7. config ALPHA_LEGACY_START_ADDRESS
  8. bool "Legacy kernel start address"
  9. depends on ALPHA_GENERIC
  10. default n
  11. ---help---
  12. The 2.4 kernel changed the kernel start address from 0x310000
  13. to 0x810000 to make room for the Wildfire's larger SRM console.
  14. Recent consoles on Titan and Marvel machines also require the
  15. extra room.
  16. If you're using aboot 0.7 or later, the bootloader will examine the
  17. ELF headers to determine where to transfer control. Unfortunately,
  18. most older bootloaders -- APB or MILO -- hardcoded the kernel start
  19. address rather than examining the ELF headers, and the result is a
  20. hard lockup.
  21. Say Y if you have a broken bootloader. Say N if you do not, or if
  22. you wish to run on Wildfire, Titan, or Marvel.
  23. config ALPHA_LEGACY_START_ADDRESS
  24. bool
  25. depends on !ALPHA_GENERIC && !ALPHA_TITAN && !ALPHA_MARVEL && !ALPHA_WILDFIRE
  26. default y
  27. config MATHEMU
  28. tristate "Kernel FP software completion" if DEBUG_KERNEL && !SMP
  29. default y if !DEBUG_KERNEL || SMP
  30. help
  31. This option is required for IEEE compliant floating point arithmetic
  32. on the Alpha. The only time you would ever not say Y is to say M in
  33. order to debug the code. Say Y unless you know what you are doing.
  34. endmenu