1menu "mpc8xx CPU" 2 depends on 8xx 3 4config SYS_CPU 5 string 6 default "mpc8xx" 7 8choice 9 prompt "Target select" 10 11config TARGET_COGENT_MPC8XX 12 bool "Support cogent_mpc8xx" 13 14config TARGET_ESTEEM192E 15 bool "Support ESTEEM192E" 16 17config TARGET_HERMES 18 bool "Support hermes" 19 20config TARGET_ICU862 21 bool "Support ICU862" 22 23config TARGET_IP860 24 bool "Support IP860" 25 26config TARGET_IVML24 27 bool "Support IVML24" 28 29config TARGET_IVMS8 30 bool "Support IVMS8" 31 32config TARGET_LWMON 33 bool "Support lwmon" 34 35config TARGET_NETVIA 36 bool "Support NETVIA" 37 38config TARGET_R360MPI 39 bool "Support R360MPI" 40 41config TARGET_RRVISION 42 bool "Support RRvision" 43 44config TARGET_SPD823TS 45 bool "Support SPD823TS" 46 47config TARGET_MHPC 48 bool "Support MHPC" 49 50config TARGET_TOP860 51 bool "Support TOP860" 52 53config TARGET_KUP4K 54 bool "Support KUP4K" 55 56config TARGET_KUP4X 57 bool "Support KUP4X" 58 59config TARGET_ELPT860 60 bool "Support ELPT860" 61 62config TARGET_UC100 63 bool "Support uc100" 64 65config TARGET_FPS850L 66 bool "Support FPS850L" 67 68config TARGET_FPS860L 69 bool "Support FPS860L" 70 71config TARGET_NSCU 72 bool "Support NSCU" 73 74config TARGET_SM850 75 bool "Support SM850" 76 77config TARGET_TK885D 78 bool "Support TK885D" 79 80config TARGET_TQM823L 81 bool "Support TQM823L" 82 83config TARGET_TQM823M 84 bool "Support TQM823M" 85 86config TARGET_TQM850L 87 bool "Support TQM850L" 88 89config TARGET_TQM850M 90 bool "Support TQM850M" 91 92config TARGET_TQM855L 93 bool "Support TQM855L" 94 95config TARGET_TQM855M 96 bool "Support TQM855M" 97 98config TARGET_TQM860L 99 bool "Support TQM860L" 100 101config TARGET_TQM860M 102 bool "Support TQM860M" 103 104config TARGET_TQM862L 105 bool "Support TQM862L" 106 107config TARGET_TQM862M 108 bool "Support TQM862M" 109 110config TARGET_TQM866M 111 bool "Support TQM866M" 112 113config TARGET_TQM885D 114 bool "Support TQM885D" 115 116config TARGET_VIRTLAB2 117 bool "Support virtlab2" 118 119endchoice 120 121source "board/LEOX/elpt860/Kconfig" 122source "board/RRvision/Kconfig" 123source "board/cogent/Kconfig" 124source "board/eltec/mhpc/Kconfig" 125source "board/emk/top860/Kconfig" 126source "board/esteem192e/Kconfig" 127source "board/hermes/Kconfig" 128source "board/icu862/Kconfig" 129source "board/ip860/Kconfig" 130source "board/ivm/Kconfig" 131source "board/kup/kup4k/Kconfig" 132source "board/kup/kup4x/Kconfig" 133source "board/lwmon/Kconfig" 134source "board/manroland/uc100/Kconfig" 135source "board/netvia/Kconfig" 136source "board/r360mpi/Kconfig" 137source "board/spd8xx/Kconfig" 138source "board/tqc/tqm8xx/Kconfig" 139 140endmenu 141