1if ARCH_DAVINCI 2 3choice 4 prompt "DaVinci board select" 5 optional 6 7config TARGET_IPAM390 8 bool "IPAM390 board" 9 select SUPPORT_SPL 10 11config TARGET_DA850EVM 12 bool "DA850 EVM board" 13 select SUPPORT_SPL 14 15config TARGET_EA20 16 bool "EA20 board" 17 18config TARGET_OMAPL138_LCDK 19 bool "OMAPL138 LCDK" 20 select SUPPORT_SPL 21 22config TARGET_CALIMAIN 23 bool "Calimain board" 24 25endchoice 26 27config SYS_SOC 28 default "davinci" 29 30source "board/Barix/ipam390/Kconfig" 31source "board/davinci/da8xxevm/Kconfig" 32source "board/davinci/ea20/Kconfig" 33source "board/omicron/calimain/Kconfig" 34 35endif 36