summaryrefslogtreecommitdiffstats
path: root/arch/x86/boot/Kconfig
diff options
context:
space:
mode:
authorJuergen Beisert <jbe@pengutronix.de>2010-01-12 11:15:41 +0100
committerSascha Hauer <s.hauer@pengutronix.de>2010-01-14 10:06:16 +0100
commit7dcc15e8197e647abc80b1d3298a91edd45a8c2d (patch)
treef0bb5981a61c989ce37d40554971b9adc49e2b3e /arch/x86/boot/Kconfig
parent2bdd75bd02f3d214b285429be72b3a0eab4e9610 (diff)
downloadbarebox-7dcc15e8197e647abc80b1d3298a91edd45a8c2d.tar.gz
barebox-7dcc15e8197e647abc80b1d3298a91edd45a8c2d.tar.xz
Add functions to be able to boot with BIOSs help
These functions are special: They are running in the 16 bit real mode world to bring up barebox on an x86 box. Signed-off-by: Juergen Beisert <jbe@pengutronix.de> Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
Diffstat (limited to 'arch/x86/boot/Kconfig')
-rw-r--r--arch/x86/boot/Kconfig20
1 files changed, 20 insertions, 0 deletions
diff --git a/arch/x86/boot/Kconfig b/arch/x86/boot/Kconfig
new file mode 100644
index 0000000000..cdb82e46d9
--- /dev/null
+++ b/arch/x86/boot/Kconfig
@@ -0,0 +1,20 @@
+if X86_BIOS_BRINGUP
+
+menu "BIOS boot source "
+
+config X86_HDBOOT
+ bool "HD boot"
+ help
+ Add code to boot from harddisk
+
+config X86_VESA
+ bool
+ default y if X86_GENERIC_HAS_VIDEO
+
+config X86_VGA
+ bool
+ default y if X86_GENERIC_HAS_VIDEO
+
+endmenu
+
+endif