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.