]> git.kernelconcepts.de Git - karo-tx-uboot.git/blob - arch/arm/mach-bcm283x/Kconfig
arch: Make board selection choices optional
[karo-tx-uboot.git] / arch / arm / mach-bcm283x / Kconfig
1 menu "Broadcom BCM283X family"
2         depends on ARCH_BCM283X
3
4 choice
5         prompt "Broadcom BCM283X board select"
6         optional
7
8 config TARGET_RPI
9         bool "Raspberry Pi"
10         select CPU_ARM1176
11
12 config TARGET_RPI_2
13         bool "Raspberry Pi 2"
14         select CPU_V7
15
16 endchoice
17
18 config PHYS_TO_BUS
19         default y
20
21 config SYS_BOARD
22         default "rpi" if TARGET_RPI
23         default "rpi_2" if TARGET_RPI_2
24
25 config SYS_VENDOR
26         default "raspberrypi"
27
28 config SYS_SOC
29         default "bcm283x"
30
31 config SYS_CONFIG_NAME
32         default "rpi" if TARGET_RPI
33         default "rpi_2" if TARGET_RPI_2
34
35 endmenu