Kconfig 389 B

1234567891011121314151617181920212223
  1. if ARCH_DAVINCI
  2. menu "TI DaVinci Implementations"
  3. comment "DaVinci Core Type"
  4. config ARCH_DAVINCI644x
  5. default y
  6. bool "DaVinci 644x based system"
  7. comment "DaVinci Board Type"
  8. config MACH_DAVINCI_EVM
  9. bool "TI DaVinci EVM"
  10. default y
  11. depends on ARCH_DAVINCI644x
  12. help
  13. Configure this option to specify the whether the board used
  14. for development is a DaVinci EVM
  15. endmenu
  16. endif