]> git.ipfire.org Git - people/ms/u-boot.git/blob - arch/powerpc/Kconfig
arch: Make board selection choices optional
[people/ms/u-boot.git] / arch / powerpc / Kconfig
1 menu "PowerPC architecture"
2 depends on PPC
3
4 config SYS_ARCH
5 default "powerpc"
6
7 choice
8 prompt "CPU select"
9 optional
10
11 config MPC512X
12 bool "MPC512X"
13
14 config 5xx
15 bool "MPC5xx"
16
17 config MPC5xxx
18 bool "MPC5xxx"
19
20 config MPC8260
21 bool "MPC8260"
22
23 config MPC83xx
24 bool "MPC83xx"
25
26 config MPC85xx
27 bool "MPC85xx"
28
29 config MPC86xx
30 bool "MPC86xx"
31
32 config 8xx
33 bool "MPC8xx"
34
35 config 4xx
36 bool "PPC4xx"
37
38 endchoice
39
40 source "arch/powerpc/cpu/mpc512x/Kconfig"
41 source "arch/powerpc/cpu/mpc5xx/Kconfig"
42 source "arch/powerpc/cpu/mpc5xxx/Kconfig"
43 source "arch/powerpc/cpu/mpc8260/Kconfig"
44 source "arch/powerpc/cpu/mpc83xx/Kconfig"
45 source "arch/powerpc/cpu/mpc85xx/Kconfig"
46 source "arch/powerpc/cpu/mpc86xx/Kconfig"
47 source "arch/powerpc/cpu/mpc8xx/Kconfig"
48 source "arch/powerpc/cpu/ppc4xx/Kconfig"
49
50 endmenu