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:
@@ -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
|
||||
|
||||
|
@@ -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
|
||||
|
@@ -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
|
||||
|
@@ -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
|
||||
|
@@ -1 +1 @@
|
||||
obj-y += functions.o
|
||||
ramstage-y += functions.c
|
||||
|
Reference in New Issue
Block a user