From e78e828e47afd65938462b2ff2995537fd11cfa5 Mon Sep 17 00:00:00 2001 From: "Ronald G. Minnich" Date: Sun, 8 Oct 2006 20:50:04 +0000 Subject: [PATCH] Got a .config file. Now to get this to build. git-svn-id: svn://coreboot.org/repository/LinuxBIOSv3@9 f3766cd6-281f-0410-b1cd-43a5c92072e9 --- src/Makefile | 4 ++-- src/mainboard/emulation/qemu-i386/Kconfig | 20 ++++++++++++++++++++ 2 files changed, 22 insertions(+), 2 deletions(-) create mode 100644 src/mainboard/emulation/qemu-i386/Kconfig diff --git a/src/Makefile b/src/Makefile index 38284693a4..5841942507 100644 --- a/src/Makefile +++ b/src/Makefile @@ -441,7 +441,7 @@ export LBBUILD_IMAGE ?= linuxbios.rom startup_code.rom ifeq ($(LBBUILD_EXTMOD),) core-y += -linuxbios-dirs := $(patsubst %/,%,$(filter %/, $(core-y) +linuxbios-dirs := $(patsubst %/,%,$(filter %/, $(core-y))) linuxbios-alldirs := $(sort $(linuxbios-dirs)) @@ -927,4 +927,4 @@ FORCE: .PHONY: $(PHONY) -endif \ No newline at end of file +endif diff --git a/src/mainboard/emulation/qemu-i386/Kconfig b/src/mainboard/emulation/qemu-i386/Kconfig new file mode 100644 index 0000000000..47fee5680b --- /dev/null +++ b/src/mainboard/emulation/qemu-i386/Kconfig @@ -0,0 +1,20 @@ +# +# For a description of the syntax of this configuration file, +# see Documentation/kbuild/kconfig-language.txt. +# + +mainmenu "LinuxBIOS Configuration" + +config BOOTFLASH + bool + default y + help + Build the BOOTFLASH area. This includes all the reset vector, + Cache-As-Ram (CAR) code, early device setup, and the code that + parses the "file system" in the non-BOOTFLASH area. + +config BIOS + bool + default y + help + Build the rest of the BIOS. This includes memory init, device init, PCI init, and so on.