summaryrefslogtreecommitdiff
path: root/arch/arm/Kconfig
blob: bf71867fde2a0cfda6726bbf08f8df1674972fa8 (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
menu "Architecture-specific options"

config ARM
	def_bool y

config ARMV7
	bool

config ARMV7A
	bool
	select ARMV7

config ARM_ARCH
	int
	default 7 if ARMV7

config SUBARCH
	string
	default "armv7a" if ARMV7A

config ARCH_SMP
	bool
	default y if ARMV7A

config CPU_CORTEX_A15
	bool
	select ARMV7A

choice
	prompt "Board"
	default BOARD_SELECT_QEMU_VIRT_2_8

config BOARD_SELECT_QEMU_VIRT_2_8
	bool "QEMU 2.8 virtual machine"
	---help---
	  This virtual board is used by the tools/qemu_arm.sh script.

endchoice

source "arch/arm/board-qemu-virt28/Kconfig"

endmenu