Kconfig.common 831 B

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