kconf-checklist 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. # Kconfig check list for dovetail-based xenomai
  2. #
  3. # This file contains assertions testing a set of configuration
  4. # settings from a kernel .config file, which are fed to evl-check.
  5. # Any failed assertion is reported.
  6. #
  7. #
  8. # check_list : assertion
  9. # | check_list assertion
  10. #
  11. # assertion : expr conditions
  12. # | "!" expr conditions
  13. #
  14. # expr : symbol /* matches =y and =m */
  15. # | symbol "=" tristate
  16. #
  17. # tristate : "y"
  18. # | "m"
  19. # | "n"
  20. #
  21. # conditions : dependency
  22. # | dependency arch
  23. #
  24. # dependency : "if" symbol /* true if set as y/m */
  25. #
  26. # arch : "on" cputype
  27. #
  28. # cputype : $(uname -m)
  29. #
  30. # <arch> should match $(uname -m) or some abbreviated portion
  31. # of it.
  32. #
  33. # e.g.
  34. # "CONFIG_FOO must be set whenever CONFIG_BAR is UNset"
  35. # translates to: CONFIG_FOO if !CONFIG_BAR
  36. # "CONFIG_FOO must not be set"
  37. # translates to: !CONFIG_FOO, or conversely CONFIG_FOO=n
  38. # "CONFIG_FOO must be built as module on aarch32 or aarch64"
  39. # translates to: CONFIG_FOO=m on aarch
  40. CONFIG_CPU_FREQ_DEFAULT_GOV_PERFORMANCE=y if CONFIG_CPU_FREQ
  41. CONFIG_DEBUG_HARD_LOCKS=n
  42. CONFIG_ACPI_PROCESSOR_IDLE=n
  43. CONFIG_LOCKDEP=n
  44. CONFIG_DEBUG_LIST=n
  45. CONFIG_DEBUG_VM=n
  46. CONFIG_DEBUG_PER_CPU_MAPS=n
  47. CONFIG_KASAN=n
  48. CONFIG_DEBUG_ENTRY=n
  49. CONFIG_FTRACE=n
  50. CONFIG_MIGRATION=n