Kconfig 458 B

12345678910111213141516171819202122232425262728
  1. if ARCH_KEYSTONE
  2. choice
  3. prompt "TI Keystone board select"
  4. optional
  5. config TARGET_K2HK_EVM
  6. bool "TI Keystone 2 Kepler/Hawking EVM"
  7. config TARGET_K2E_EVM
  8. bool "TI Keystone 2 Edison EVM"
  9. config TARGET_K2L_EVM
  10. bool "TI Keystone 2 Lamar EVM"
  11. config TARGET_K2G_EVM
  12. bool "TI Keystone 2 Galileo EVM"
  13. select BOARD_LATE_INIT
  14. select TI_I2C_BOARD_DETECT
  15. endchoice
  16. config SYS_SOC
  17. default "keystone"
  18. source "board/ti/ks2_evm/Kconfig"
  19. endif