Kconfig 754 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. if TEGRA30
  2. choice
  3. prompt "Tegra30 board select"
  4. optional
  5. config TARGET_APALIS_T30
  6. bool "Toradex Apalis T30 board"
  7. select BOARD_LATE_INIT
  8. config TARGET_BEAVER
  9. bool "NVIDIA Tegra30 Beaver evaluation board"
  10. select BOARD_LATE_INIT
  11. config TARGET_CARDHU
  12. bool "NVIDIA Tegra30 Cardhu evaluation board"
  13. select BOARD_LATE_INIT
  14. config TARGET_COLIBRI_T30
  15. bool "Toradex Colibri T30 board"
  16. select BOARD_LATE_INIT
  17. config TARGET_TEC_NG
  18. bool "Avionic Design TEC-NG board"
  19. select BOARD_LATE_INIT
  20. endchoice
  21. config SYS_SOC
  22. default "tegra30"
  23. source "board/toradex/apalis_t30/Kconfig"
  24. source "board/nvidia/beaver/Kconfig"
  25. source "board/nvidia/cardhu/Kconfig"
  26. source "board/toradex/colibri_t30/Kconfig"
  27. source "board/avionic-design/tec-ng/Kconfig"
  28. endif