summaryrefslogtreecommitdiffstats
path: root/target/device/x86/Config.in
diff options
context:
space:
mode:
authorUlf Samuelsson <ulf.samuelsson@atmel.com>2009-01-29 17:52:39 +0000
committerUlf Samuelsson <ulf.samuelsson@atmel.com>2009-01-29 17:52:39 +0000
commit37ae66f4626045b255c84b6245e8c3a0cc9b1314 (patch)
treebc5985d03a446573123afa78d48f11d545af0151 /target/device/x86/Config.in
parent7f44fb1ae26741aaa9ba00d9a33983d0cc3bbced (diff)
downloadbuildroot-novena-37ae66f4626045b255c84b6245e8c3a0cc9b1314.tar.gz
buildroot-novena-37ae66f4626045b255c84b6245e8c3a0cc9b1314.zip
Clean up x86 support
Diffstat (limited to 'target/device/x86/Config.in')
-rw-r--r--target/device/x86/Config.in27
1 files changed, 24 insertions, 3 deletions
diff --git a/target/device/x86/Config.in b/target/device/x86/Config.in
index 2895872eb..e44f31498 100644
--- a/target/device/x86/Config.in
+++ b/target/device/x86/Config.in
@@ -1,6 +1,27 @@
-comment "Generic x86 Device Support"
+menuconfig BR2_TARGET_X86
+ bool "Generic x86 Device Support"
depends on BR2_i386
-comment "Package support"
- depends on BR2_TARGET_AMD_ALCHEMY
+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