diff options
author | Patrick Georgi <patrick.georgi@coresystems.de> | 2010-09-30 16:55:02 +0000 |
---|---|---|
committer | Patrick Georgi <patrick.georgi@coresystems.de> | 2010-09-30 16:55:02 +0000 |
commit | 8463dd9db0dc2ce02423775d0eb62e28aa01e9f9 (patch) | |
tree | 71272406c062acdaf19586ea41b4223451f8ad71 /src/devices | |
parent | d4d0a456d349002642c1c7e508f2729f1497ab96 (diff) |
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
Diffstat (limited to 'src/devices')
-rw-r--r-- | src/devices/Makefile.inc | 28 | ||||
-rw-r--r-- | src/devices/oprom/Makefile.inc | 6 | ||||
-rw-r--r-- | src/devices/oprom/x86emu/Makefile.inc | 14 | ||||
-rw-r--r-- | src/devices/oprom/yabel/Makefile.inc | 16 | ||||
-rw-r--r-- | src/devices/oprom/yabel/compat/Makefile.inc | 2 |
5 files changed, 33 insertions, 33 deletions
diff --git a/src/devices/Makefile.inc b/src/devices/Makefile.inc index dd518bd16b..86b4d21e07 100644 --- a/src/devices/Makefile.inc +++ b/src/devices/Makefile.inc @@ -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 diff --git a/src/devices/oprom/Makefile.inc b/src/devices/oprom/Makefile.inc index 3d5f1a6ff5..62fdc3182a 100644 --- a/src/devices/oprom/Makefile.inc +++ b/src/devices/oprom/Makefile.inc @@ -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 diff --git a/src/devices/oprom/x86emu/Makefile.inc b/src/devices/oprom/x86emu/Makefile.inc index 2c5f7a7eb9..620e5f8771 100644 --- a/src/devices/oprom/x86emu/Makefile.inc +++ b/src/devices/oprom/x86emu/Makefile.inc @@ -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 diff --git a/src/devices/oprom/yabel/Makefile.inc b/src/devices/oprom/yabel/Makefile.inc index f89de9b7dd..f05998cba5 100644 --- a/src/devices/oprom/yabel/Makefile.inc +++ b/src/devices/oprom/yabel/Makefile.inc @@ -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 diff --git a/src/devices/oprom/yabel/compat/Makefile.inc b/src/devices/oprom/yabel/compat/Makefile.inc index 00080f5406..8121c8b461 100644 --- a/src/devices/oprom/yabel/compat/Makefile.inc +++ b/src/devices/oprom/yabel/compat/Makefile.inc @@ -1 +1 @@ -obj-y += functions.o +ramstage-y += functions.c |