Rename build system variables to be more intuitive, and

at the same time let the user specify sources instead
of object files:
- objs becomes ramstage-srcs
- initobjs becomes romstage-srcs
- driver becomes driver-srcs
- smmobj becomes smm-srcs

The user servicable parts are named accordingly:
ramstage-y, romstage-y, driver-y, smm-y

Also, the object file names are properly renamed now, using
.ramstage.o, .romstage.o, .driver.o, .smm.o suffixes consistently.

Remove stubbed out via/epia-m700 dsdt/ssdt files - they didn't
easily fit in the build system and aren't useful anyway.

Signed-off-by: Patrick Georgi <patrick.georgi@coresystems.de>
Acked-by: Stefan Reinauer <stepan@coreystems.de>


git-svn-id: svn://svn.coreboot.org/coreboot/trunk@5886 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
This commit is contained in:
Patrick Georgi
2010-09-30 16:55:02 +00:00
parent d4d0a456d3
commit 8463dd9db0
201 changed files with 660 additions and 712 deletions

View File

@@ -1,21 +1,21 @@
obj-y += device.o
obj-y += root_device.o
obj-y += device_util.o
obj-y += pci_device.o
obj-$(CONFIG_HYPERTRANSPORT_PLUGIN_SUPPORT) += hypertransport.o
obj-y += pcix_device.o
obj-y += pciexp_device.o
obj-y += agp_device.o
obj-y += cardbus_device.o
obj-y += pnp_device.o
obj-y += pci_ops.o
obj-y += smbus_ops.o
ramstage-y += device.c
ramstage-y += root_device.c
ramstage-y += device_util.c
ramstage-y += pci_device.c
ramstage-$(CONFIG_HYPERTRANSPORT_PLUGIN_SUPPORT) += hypertransport.c
ramstage-y += pcix_device.c
ramstage-y += pciexp_device.c
ramstage-y += agp_device.c
ramstage-y += cardbus_device.c
ramstage-y += pnp_device.c
ramstage-y += pci_ops.c
ramstage-y += smbus_ops.c
subdirs-y += oprom
ifeq ($(CONFIG_PCI_ROM_RUN),y)
obj-y += pci_rom.o
ramstage-y += pci_rom.c
else
obj-$(CONFIG_VGA_ROM_RUN) += pci_rom.o
ramstage-$(CONFIG_VGA_ROM_RUN) += pci_rom.c
endif

View File

@@ -17,9 +17,9 @@
## Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
##
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
ramstage-$(CONFIG_PCI_OPTION_ROM_RUN_REALMODE) += x86.c
ramstage-$(CONFIG_PCI_OPTION_ROM_RUN_REALMODE) += x86_asm.S
ramstage-$(CONFIG_PCI_OPTION_ROM_RUN_REALMODE) += x86_interrupts.c
subdirs-$(CONFIG_PCI_OPTION_ROM_RUN_YABEL) += x86emu
subdirs-$(CONFIG_PCI_OPTION_ROM_RUN_YABEL) += yabel

View File

@@ -1,7 +1,7 @@
obj-y += debug.o
obj-y += decode.o
obj-y += fpu.o
obj-y += ops.o
obj-y += ops2.o
obj-y += prim_ops.o
obj-y += sys.o
ramstage-y += debug.c
ramstage-y += decode.c
ramstage-y += fpu.c
ramstage-y += ops.c
ramstage-y += ops2.c
ramstage-y += prim_ops.c
ramstage-y += sys.c

View File

@@ -1,9 +1,9 @@
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
obj-y += vbe.o
ramstage-y += biosemu.c
ramstage-y += debug.c
ramstage-y += device.c
ramstage-y += interrupt.c
ramstage-y += io.c
ramstage-y += mem.c
ramstage-y += pmm.c
ramstage-y += vbe.c
subdirs-y += compat

View File

@@ -1 +1 @@
obj-y += functions.o
ramstage-y += functions.c