Kconfig.common 847 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071
  1. config DEFCONFIG_LIST
  2. string
  3. option defconfig_list
  4. default "arch/$ARCH/defconfig"
  5. config UML
  6. bool
  7. default y
  8. select HAVE_GENERIC_HARDIRQS
  9. select GENERIC_IRQ_SHOW
  10. select GENERIC_CPU_DEVICES
  11. select GENERIC_IO
  12. select HAVE_GENERIC_INIT_TASK
  13. config MMU
  14. bool
  15. default y
  16. config NO_IOMEM
  17. def_bool y
  18. config ISA
  19. bool
  20. config SBUS
  21. bool
  22. config PCI
  23. bool
  24. config PCMCIA
  25. bool
  26. # Yet to do!
  27. config TRACE_IRQFLAGS_SUPPORT
  28. bool
  29. default n
  30. config LOCKDEP_SUPPORT
  31. bool
  32. default y
  33. config STACKTRACE_SUPPORT
  34. bool
  35. default n
  36. config GENERIC_CALIBRATE_DELAY
  37. bool
  38. default y
  39. config GENERIC_BUG
  40. bool
  41. default y
  42. depends on BUG
  43. config GENERIC_CLOCKEVENTS
  44. bool
  45. default y
  46. # Used in kernel/irq/manage.c and include/linux/irq.h
  47. config IRQ_RELEASE_METHOD
  48. bool
  49. default y
  50. config HZ
  51. int
  52. default 100
  53. config SUBARCH
  54. string
  55. option env="SUBARCH"