1if OMAP34XX 2 3choice 4 prompt "OMAP3 board select" 5 optional 6 7config TARGET_AM3517_EVM 8 bool "AM3517 EVM" 9 10config TARGET_MT_VENTOUX 11 bool "TeeJet Mt.Ventoux" 12 13config TARGET_OMAP3_BEAGLE 14 bool "TI OMAP3 BeagleBoard" 15 select DM 16 select DM_SERIAL 17 select DM_GPIO 18 19config TARGET_CM_T35 20 bool "CompuLab CM-T3530 and CM-T3730 boards" 21 22config TARGET_CM_T3517 23 bool "CompuLab CM-T3517 boards" 24 25config TARGET_DEVKIT8000 26 bool "TimLL OMAP3 Devkit8000" 27 select DM 28 select DM_SERIAL 29 select DM_GPIO 30 31config TARGET_OMAP3_EVM 32 bool "TI OMAP3 EVM" 33 34config TARGET_OMAP3_IGEP00X0 35 bool "IGEP" 36 select DM 37 select DM_SERIAL 38 select DM_GPIO 39 40config TARGET_OMAP3_OVERO 41 bool "OMAP35xx Gumstix Overo" 42 select DM 43 select DM_SERIAL 44 select DM_GPIO 45 46config TARGET_OMAP3_ZOOM1 47 bool "TI Zoom1" 48 select DM 49 select DM_SERIAL 50 select DM_GPIO 51 52config TARGET_AM3517_CRANE 53 bool "am3517_crane" 54 55config TARGET_OMAP3_PANDORA 56 bool "OMAP3 Pandora" 57 58config TARGET_ECO5PK 59 bool "ECO5PK" 60 61config TARGET_TRICORDER 62 bool "Tricorder" 63 64config TARGET_MCX 65 bool "MCX" 66 select BOARD_LATE_INIT 67 68config TARGET_OMAP3_LOGIC 69 bool "OMAP3 Logic" 70 select BOARD_LATE_INIT 71 select DM 72 select DM_SERIAL 73 select DM_GPIO 74 75config TARGET_NOKIA_RX51 76 bool "Nokia RX51" 77 78config TARGET_TAO3530 79 bool "TAO3530" 80 81config TARGET_TWISTER 82 bool "Twister" 83 84config TARGET_OMAP3_CAIRO 85 bool "QUIPOS CAIRO" 86 select DM 87 select DM_SERIAL 88 select DM_GPIO 89 90config TARGET_SNIPER 91 bool "LG Optimus Black" 92 select DM 93 select DM_SERIAL 94 select DM_GPIO 95 96endchoice 97 98config SYS_SOC 99 default "omap3" 100 101source "board/logicpd/am3517evm/Kconfig" 102source "board/teejet/mt_ventoux/Kconfig" 103source "board/ti/beagle/Kconfig" 104source "board/compulab/cm_t35/Kconfig" 105source "board/compulab/cm_t3517/Kconfig" 106source "board/timll/devkit8000/Kconfig" 107source "board/ti/evm/Kconfig" 108source "board/isee/igep00x0/Kconfig" 109source "board/overo/Kconfig" 110source "board/logicpd/zoom1/Kconfig" 111source "board/ti/am3517crane/Kconfig" 112source "board/pandora/Kconfig" 113source "board/8dtech/eco5pk/Kconfig" 114source "board/corscience/tricorder/Kconfig" 115source "board/htkw/mcx/Kconfig" 116source "board/logicpd/omap3som/Kconfig" 117source "board/nokia/rx51/Kconfig" 118source "board/technexion/tao3530/Kconfig" 119source "board/technexion/twister/Kconfig" 120source "board/quipos/cairo/Kconfig" 121source "board/lg/sniper/Kconfig" 122 123endif 124