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