1menu "mpc85xx CPU" 2 depends on MPC85xx 3 4config SYS_CPU 5 string 6 default "mpc85xx" 7 8choice 9 prompt "Target select" 10 11config TARGET_SBC8548 12 bool "Support sbc8548" 13 14config TARGET_SOCRATES 15 bool "Support socrates" 16 17config TARGET_HWW1U1A 18 bool "Support HWW1U1A" 19 20config TARGET_B4860QDS 21 bool "Support B4860QDS" 22 23config TARGET_BSC9131RDB 24 bool "Support BSC9131RDB" 25 26config TARGET_BSC9132QDS 27 bool "Support BSC9132QDS" 28 29config TARGET_C29XPCIE 30 bool "Support C29XPCIE" 31 32config TARGET_P3041DS 33 bool "Support P3041DS" 34 35config TARGET_P4080DS 36 bool "Support P4080DS" 37 38config TARGET_P5020DS 39 bool "Support P5020DS" 40 41config TARGET_P5040DS 42 bool "Support P5040DS" 43 44config TARGET_MPC8536DS 45 bool "Support MPC8536DS" 46 47config TARGET_MPC8540ADS 48 bool "Support MPC8540ADS" 49 50config TARGET_MPC8541CDS 51 bool "Support MPC8541CDS" 52 53config TARGET_MPC8544DS 54 bool "Support MPC8544DS" 55 56config TARGET_MPC8548CDS 57 bool "Support MPC8548CDS" 58 59config TARGET_MPC8555CDS 60 bool "Support MPC8555CDS" 61 62config TARGET_MPC8560ADS 63 bool "Support MPC8560ADS" 64 65config TARGET_MPC8568MDS 66 bool "Support MPC8568MDS" 67 68config TARGET_MPC8569MDS 69 bool "Support MPC8569MDS" 70 71config TARGET_MPC8572DS 72 bool "Support MPC8572DS" 73 74config TARGET_P1010RDB 75 bool "Support P1010RDB" 76 77config TARGET_P1022DS 78 bool "Support P1022DS" 79 80config TARGET_P1023RDB 81 bool "Support P1023RDB" 82 83config TARGET_P1_P2_RDB 84 bool "Support P1_P2_RDB" 85 86config TARGET_P1_P2_RDB_PC 87 bool "Support p1_p2_rdb_pc" 88 89config TARGET_P1_TWR 90 bool "Support p1_twr" 91 92config TARGET_P2020COME 93 bool "Support P2020COME" 94 95config TARGET_P2020DS 96 bool "Support P2020DS" 97 98config TARGET_P2041RDB 99 bool "Support P2041RDB" 100 101config TARGET_QEMU_PPCE500 102 bool "Support qemu-ppce500" 103 104config TARGET_T1040QDS 105 bool "Support T1040QDS" 106 107config TARGET_T104XRDB 108 bool "Support T104xRDB" 109 110config TARGET_T208XQDS 111 bool "Support T208xQDS" 112 113config TARGET_T208XRDB 114 bool "Support T208xRDB" 115 116config TARGET_T4240EMU 117 bool "Support T4240EMU" 118 119config TARGET_T4240QDS 120 bool "Support T4240QDS" 121 122config TARGET_T4240RDB 123 bool "Support T4240RDB" 124 125config TARGET_CONTROLCENTERD 126 bool "Support controlcenterd" 127 128config TARGET_KMP204X 129 bool "Support kmp204x" 130 131config TARGET_STXGP3 132 bool "Support stxgp3" 133 134config TARGET_STXSSA 135 bool "Support stxssa" 136 137config TARGET_XPEDITE520X 138 bool "Support xpedite520x" 139 140config TARGET_XPEDITE537X 141 bool "Support xpedite537x" 142 143config TARGET_XPEDITE550X 144 bool "Support xpedite550x" 145 146endchoice 147 148source "board/exmeritus/hww1u1a/Kconfig" 149source "board/freescale/b4860qds/Kconfig" 150source "board/freescale/bsc9131rdb/Kconfig" 151source "board/freescale/bsc9132qds/Kconfig" 152source "board/freescale/c29xpcie/Kconfig" 153source "board/freescale/corenet_ds/Kconfig" 154source "board/freescale/mpc8536ds/Kconfig" 155source "board/freescale/mpc8540ads/Kconfig" 156source "board/freescale/mpc8541cds/Kconfig" 157source "board/freescale/mpc8544ds/Kconfig" 158source "board/freescale/mpc8548cds/Kconfig" 159source "board/freescale/mpc8555cds/Kconfig" 160source "board/freescale/mpc8560ads/Kconfig" 161source "board/freescale/mpc8568mds/Kconfig" 162source "board/freescale/mpc8569mds/Kconfig" 163source "board/freescale/mpc8572ds/Kconfig" 164source "board/freescale/p1010rdb/Kconfig" 165source "board/freescale/p1022ds/Kconfig" 166source "board/freescale/p1023rdb/Kconfig" 167source "board/freescale/p1_p2_rdb/Kconfig" 168source "board/freescale/p1_p2_rdb_pc/Kconfig" 169source "board/freescale/p1_twr/Kconfig" 170source "board/freescale/p2020come/Kconfig" 171source "board/freescale/p2020ds/Kconfig" 172source "board/freescale/p2041rdb/Kconfig" 173source "board/freescale/qemu-ppce500/Kconfig" 174source "board/freescale/t1040qds/Kconfig" 175source "board/freescale/t104xrdb/Kconfig" 176source "board/freescale/t208xqds/Kconfig" 177source "board/freescale/t208xrdb/Kconfig" 178source "board/freescale/t4qds/Kconfig" 179source "board/freescale/t4rdb/Kconfig" 180source "board/gdsys/p1022/Kconfig" 181source "board/keymile/kmp204x/Kconfig" 182source "board/sbc8548/Kconfig" 183source "board/socrates/Kconfig" 184source "board/stx/stxgp3/Kconfig" 185source "board/stx/stxssa/Kconfig" 186source "board/xes/xpedite520x/Kconfig" 187source "board/xes/xpedite537x/Kconfig" 188source "board/xes/xpedite550x/Kconfig" 189 190endmenu 191