summaryrefslogtreecommitdiff
path: root/nuttx/arch/x86/Kconfig
blob: c988c92a4ad87951e81f4d4d92317398195c8216 (plain) (blame)
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
#
# For a description of the syntax of this configuration file,
# see misc/tools/kconfig-language.txt.
#

if ARCH_X86
choice
	prompt "x86 chip selection"
	default ARCH_I486

config ARCH_I486
	bool "i486"
	---help---
		Intel i486 architecture

endchoice

config ARCH_CHIP_QEMU
	bool "Qemu x86 emulation"
	---help---
		Intel i486 architecture

config ARCH_CHIP
	string
	default "qemu"		if ARCH_CHIP_QEMU

source arch/x86/src/common/Kconfig
source arch/x86/src/i486/Kconfig
source arch/x86/src/qemu/Kconfig

endif