summaryrefslogtreecommitdiff
path: root/arch/arm/Kconfig
blob: 86b6478e71b3115f4550d91b674e96a4b04c3b9d (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
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

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