Kconfig 797 B

123456789101112131415161718192021222324252627282930
  1. #
  2. # Timer subsystem related configuration options
  3. #
  4. config TICK_ONESHOT
  5. bool
  6. config NO_HZ
  7. bool "Tickless System (Dynamic Ticks)"
  8. depends on !ARCH_USES_GETTIMEOFFSET && GENERIC_CLOCKEVENTS
  9. select TICK_ONESHOT
  10. help
  11. This option enables a tickless system: timer interrupts will
  12. only trigger on an as-needed basis both when the system is
  13. busy and when the system is idle.
  14. config HIGH_RES_TIMERS
  15. bool "High Resolution Timer Support"
  16. depends on !ARCH_USES_GETTIMEOFFSET && GENERIC_CLOCKEVENTS
  17. select TICK_ONESHOT
  18. help
  19. This option enables high resolution timer support. If your
  20. hardware is not capable then this option only increases
  21. the size of the kernel image.
  22. config GENERIC_CLOCKEVENTS_BUILD
  23. bool
  24. default y
  25. depends on GENERIC_CLOCKEVENTS || GENERIC_CLOCKEVENTS_MIGR