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