summaryrefslogtreecommitdiffstats
path: root/target/device/x86/Config.in
blob: e44f314982e7a4ef9cd7ce986b78e8c948728403 (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
menuconfig BR2_TARGET_X86
	bool "Generic x86 Device Support"
	depends on BR2_i386

if BR2_TARGET_X86

choice
	prompt "Pentium (or later) Controller board"
	help

config BR2_TARGET_I386
	bool "i386"
	depends on BR2_i386
	default y

endchoice

config BR2_BOARD_NAME
	string
	default "i386"		if BR2_TARGET_I386

config BR2_BOARD_PATH
	string "Board Path"
	default "target/device/x86/$(BR2_BOARD_NAME)"

endif