2009-01-29 18:52:39 +01:00
|
|
|
menuconfig BR2_TARGET_X86
|
|
|
|
bool "Generic x86 Device Support"
|
2008-06-19 21:06:25 +02:00
|
|
|
depends on BR2_i386
|
2006-12-02 20:34:17 +01:00
|
|
|
|
2009-01-29 18:52:39 +01:00
|
|
|
if BR2_TARGET_X86
|
|
|
|
|
|
|
|
choice
|
|
|
|
prompt "Pentium (or later) Controller board"
|
|
|
|
help
|
|
|
|
|
2009-01-29 20:25:24 +01:00
|
|
|
config BR2_TARGET_I686
|
|
|
|
bool "i686"
|
2009-01-29 18:52:39 +01:00
|
|
|
depends on BR2_i386
|
|
|
|
|
|
|
|
endchoice
|
|
|
|
|
|
|
|
config BR2_BOARD_NAME
|
|
|
|
string
|
2009-01-29 20:25:24 +01:00
|
|
|
default "i686" if BR2_TARGET_I686
|
2009-01-29 18:52:39 +01:00
|
|
|
|
|
|
|
config BR2_BOARD_PATH
|
|
|
|
string "Board Path"
|
|
|
|
default "target/device/x86/$(BR2_BOARD_NAME)"
|
|
|
|
|
|
|
|
endif
|
2006-12-02 20:34:17 +01:00
|
|
|
|