1if ARCH_EXYNOS 2 3choice 4 prompt "EXYNOS board select" 5 optional 6 7config TARGET_SMDKV310 8 select SUPPORT_SPL 9 bool "Exynos4210 SMDKV310 board" 10 select OF_CONTROL 11 12config TARGET_TRATS 13 bool "Exynos4210 Trats board" 14 15config TARGET_S5PC210_UNIVERSAL 16 bool "EXYNOS4210 Universal C210 board" 17 18config TARGET_ORIGEN 19 bool "Exynos4412 Origen board" 20 select SUPPORT_SPL 21 22config TARGET_TRATS2 23 bool "Exynos4412 Trat2 board" 24 25config TARGET_ODROID 26 bool "Exynos4412 Odroid board" 27 28config TARGET_ODROID_XU3 29 bool "Exynos5422 Odroid board" 30 select OF_CONTROL 31 32config TARGET_ARNDALE 33 bool "Exynos5250 Arndale board" 34 select CPU_V7_HAS_NONSEC 35 select CPU_V7_HAS_VIRT 36 select SUPPORT_SPL 37 select OF_CONTROL 38 39config TARGET_SMDK5250 40 bool "SMDK5250 board" 41 select SUPPORT_SPL 42 select OF_CONTROL 43 44config TARGET_SNOW 45 bool "Snow board" 46 select SUPPORT_SPL 47 select OF_CONTROL 48 49config TARGET_SPRING 50 bool "Spring board" 51 select SUPPORT_SPL 52 select OF_CONTROL 53 select SPL_DISABLE_OF_CONTROL 54 55config TARGET_SMDK5420 56 bool "SMDK5420 board" 57 select SUPPORT_SPL 58 select OF_CONTROL 59 60config TARGET_PEACH_PI 61 bool "Peach Pi board" 62 select SUPPORT_SPL 63 select OF_CONTROL 64 65config TARGET_PEACH_PIT 66 bool "Peach Pit board" 67 select SUPPORT_SPL 68 select OF_CONTROL 69 70endchoice 71 72config SYS_SOC 73 default "exynos" 74 75source "board/samsung/smdkv310/Kconfig" 76source "board/samsung/trats/Kconfig" 77source "board/samsung/universal_c210/Kconfig" 78source "board/samsung/origen/Kconfig" 79source "board/samsung/trats2/Kconfig" 80source "board/samsung/odroid/Kconfig" 81source "board/samsung/arndale/Kconfig" 82source "board/samsung/smdk5250/Kconfig" 83source "board/samsung/smdk5420/Kconfig" 84 85endif 86