1menu "M68000 architecture" 2 depends on M68K 3 4config SYS_ARCH 5 string 6 default "m68k" 7 8choice 9 prompt "Target select" 10 11config TARGET_M52277EVB 12 bool "Support M52277EVB" 13 14config TARGET_M5235EVB 15 bool "Support M5235EVB" 16 17config TARGET_COBRA5272 18 bool "Support cobra5272" 19 20config TARGET_EB_CPU5282 21 bool "Support eb_cpu5282" 22 23config TARGET_TASREG 24 bool "Support TASREG" 25 26config TARGET_M5208EVBE 27 bool "Support M5208EVBE" 28 29config TARGET_M5249EVB 30 bool "Support M5249EVB" 31 32config TARGET_M5253DEMO 33 bool "Support M5253DEMO" 34 35config TARGET_M5253EVBE 36 bool "Support M5253EVBE" 37 38config TARGET_M5272C3 39 bool "Support M5272C3" 40 41config TARGET_M5275EVB 42 bool "Support M5275EVB" 43 44config TARGET_M5282EVB 45 bool "Support M5282EVB" 46 47config TARGET_ASTRO_MCF5373L 48 bool "Support astro_mcf5373l" 49 50config TARGET_M53017EVB 51 bool "Support M53017EVB" 52 53config TARGET_M5329EVB 54 bool "Support M5329EVB" 55 56config TARGET_M5373EVB 57 bool "Support M5373EVB" 58 59config TARGET_M54418TWR 60 bool "Support M54418TWR" 61 62config TARGET_M54451EVB 63 bool "Support M54451EVB" 64 65config TARGET_M54455EVB 66 bool "Support M54455EVB" 67 68config TARGET_M5475EVB 69 bool "Support M5475EVB" 70 71config TARGET_M5485EVB 72 bool "Support M5485EVB" 73 74endchoice 75 76source "board/BuS/eb_cpu5282/Kconfig" 77source "board/astro/mcf5373l/Kconfig" 78source "board/cobra5272/Kconfig" 79source "board/esd/tasreg/Kconfig" 80source "board/freescale/m5208evbe/Kconfig" 81source "board/freescale/m52277evb/Kconfig" 82source "board/freescale/m5235evb/Kconfig" 83source "board/freescale/m5249evb/Kconfig" 84source "board/freescale/m5253demo/Kconfig" 85source "board/freescale/m5253evbe/Kconfig" 86source "board/freescale/m5272c3/Kconfig" 87source "board/freescale/m5275evb/Kconfig" 88source "board/freescale/m5282evb/Kconfig" 89source "board/freescale/m53017evb/Kconfig" 90source "board/freescale/m5329evb/Kconfig" 91source "board/freescale/m5373evb/Kconfig" 92source "board/freescale/m54418twr/Kconfig" 93source "board/freescale/m54451evb/Kconfig" 94source "board/freescale/m54455evb/Kconfig" 95source "board/freescale/m547xevb/Kconfig" 96source "board/freescale/m548xevb/Kconfig" 97 98endmenu 99