Got a .config file. Now to get this to build.

git-svn-id: svn://coreboot.org/repository/LinuxBIOSv3@9 f3766cd6-281f-0410-b1cd-43a5c92072e9
This commit is contained in:
Ronald G. Minnich 2006-10-08 20:50:04 +00:00
parent dfa5c4264a
commit e78e828e47
2 changed files with 22 additions and 2 deletions

View file

@ -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
endif

View file

@ -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.