Add Kconfig support for PCI option ROMS.
Signed-off-by: Myles Watson <mylesgw@gmail.com> Acked-by: Stefan Reinauer <stepan@coresystems.de> git-svn-id: svn://svn.coreboot.org/coreboot/trunk@4609 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
This commit is contained in:
@@ -19,9 +19,12 @@
|
||||
##
|
||||
|
||||
subdirs-$(CONFIG_PCI_OPTION_ROM_RUN_X86EMU) += x86emu
|
||||
obj-$(CONFIG_PCI_OPTION_ROM_RUN_X86EMU) += biosemu.c
|
||||
obj-$(CONFIG_PCI_OPTION_ROM_RUN_X86EMU) += biosemu.o
|
||||
subdirs-$(CONFIG_PCI_OPTION_ROM_RUN_X86EMU) += pcbios
|
||||
|
||||
obj-$(CONFIG_PCI_OPTION_ROM_RUN_REALMODE) += x86.o
|
||||
obj-$(CONFIG_PCI_OPTION_ROM_RUN_REALMODE) += x86_asm.o
|
||||
obj-$(CONFIG_PCI_OPTION_ROM_RUN_REALMODE) += x86_interrupts.o
|
||||
|
||||
subdirs-$(CONFIG_PCI_OPTION_ROM_RUN_YABEL) += x86emu
|
||||
subdirs-$(CONFIG_PCI_OPTION_ROM_RUN_YABEL) += yabel
|
||||
|
8
util/x86emu/yabel/Makefile.inc
Normal file
8
util/x86emu/yabel/Makefile.inc
Normal file
@@ -0,0 +1,8 @@
|
||||
obj-y += biosemu.o
|
||||
obj-y += debug.o
|
||||
obj-y += device.o
|
||||
obj-y += interrupt.o
|
||||
obj-y += io.o
|
||||
obj-y += mem.o
|
||||
obj-y += pmm.o
|
||||
subdirs-y += compat
|
@@ -56,8 +56,6 @@ static X86EMU_pioFuncs my_pio_funcs = {
|
||||
/* interrupt function override array (see biosemu.h) */
|
||||
yabel_handleIntFunc yabel_intFuncArray[256];
|
||||
|
||||
void dump(u8 * addr, u32 len);
|
||||
|
||||
/* main entry into YABEL biosemu, arguments are:
|
||||
* *biosmem = pointer to virtual memory
|
||||
* biosmem_size = size of the virtual memory
|
||||
|
1
util/x86emu/yabel/compat/Makefile.inc
Normal file
1
util/x86emu/yabel/compat/Makefile.inc
Normal file
@@ -0,0 +1 @@
|
||||
obj-y += functions.o
|
Reference in New Issue
Block a user