|
|
|
|
|
|
|
|
|
|
xen-devel
[Xen-devel] [PATCH 10 of 19] tools: hvmloader: Define $(OBJS) directly i
# HG changeset patch
# User Ian Campbell <ian.campbell@xxxxxxxxxx>
# Date 1302601741 -3600
# Node ID a25b909fed618dc7e8b95921a59a0db552d60612
# Parent 35d6dd63d96ee37c3fcf7690bac933c44a40b23c
tools: hvmloader: Define $(OBJS) directly instead of via $(SRCS)
$(SRCS) isn't used for anything else.
Signed-off-by: Ian Campbell <ian.campbell@xxxxxxxxxx>
diff -r 35d6dd63d96e -r a25b909fed61 tools/firmware/hvmloader/Makefile
--- a/tools/firmware/hvmloader/Makefile Tue Apr 12 10:47:36 2011 +0100
+++ b/tools/firmware/hvmloader/Makefile Tue Apr 12 10:49:01 2011 +0100
@@ -28,13 +28,12 @@ LOADADDR = 0x100000
CFLAGS += $(CFLAGS_xeninclude)
-SRCS = hvmloader.c mp_tables.c util.c smbios.c
-SRCS += 32bitbios_support.c smp.c cacheattr.c xenbus.c
-SRCS += e820.c
+OBJS = hvmloader.o mp_tables.o util.o smbios.o
+OBJS += 32bitbios_support.o smp.o cacheattr.o xenbus.o
+OBJS += e820.o
ifeq ($(debug),y)
-SRCS += tests.c
+OBJS += tests.o
endif
-OBJS = $(patsubst %.c,%.o,$(SRCS))
CIRRUSVGA_DEBUG ?= n
_______________________________________________
Xen-devel mailing list
Xen-devel@xxxxxxxxxxxxxxxxxxx
http://lists.xensource.com/xen-devel
|
<Prev in Thread] |
Current Thread |
[Next in Thread>
|
- [Xen-devel] [PATCH 00 of 19] tools: SeaBIOS integration, Ian Campbell
- [Xen-devel] [PATCH 01 of 19] tools: hvmloader: move ROMBIOS configuration into tools/firmware/rombios/, Ian Campbell
- [Xen-devel] [PATCH 04 of 19] tools: hvmloader: pass SMBIOS location as a runtime parameter, Ian Campbell
- [Xen-devel] [PATCH 06 of 19] tools: hvmloader: split scratch and hypercall addressing from ROMBIOS low heap, Ian Campbell
- [Xen-devel] [PATCH 03 of 19] tools: hvmloader: pass ACPI_PHYSICAL_ADDRESS as a runtime parameter, Ian Campbell
- [Xen-devel] [PATCH 05 of 19] tools: hvmloader: pass option ROM end address around as a parameter, Ian Campbell
- [Xen-devel] [PATCH 02 of 19] tools: hvmloader: split e820 support into its own code module, Ian Campbell
- [Xen-devel] [PATCH 08 of 19] tools: hvmloader: remove rombios_sz, just use sizeof(rombios), Ian Campbell
- [Xen-devel] [PATCH 09 of 19] tools: hvmloader: rename roms.h to roms.inc, Ian Campbell
- [Xen-devel] [PATCH 07 of 19] tools: hvmloader: refactor Makefile to move ROM filenames into variables, Ian Campbell
- [Xen-devel] [PATCH 10 of 19] tools: hvmloader: Define $(OBJS) directly instead of via $(SRCS),
Ian Campbell <=
- [Xen-devel] [PATCH 11 of 19] tools: hvmloader: add bios_config data structure, Ian Campbell
- [Xen-devel] [PATCH 12 of 19] tools: hvmloader: Refactor APIC, PCI and SMP setup into struct bios_config, Ian Campbell
- [Xen-devel] [PATCH 13 of 19] tools: hvmloader: refactor highbios and bios_info setup into struct bios_config, Ian Campbell
- [Xen-devel] [PATCH 14 of 19] tools: hvmloader: Refactor VM86 and E820 setup into struct bios_config, Ian Campbell
- [Xen-devel] [PATCH 16 of 19] tools: hvmloader: Refactor MP table setup into struct bios_config, Ian Campbell
- [Xen-devel] [PATCH 18 of 19] tools: hvmloader: select BIOS through xenstore, Ian Campbell
- [Xen-devel] [PATCH 17 of 19] tools: libxl: hide selection of device-model, hvmloader and BIOS by default, Ian Campbell
- [Xen-devel] [PATCH 19 of 19] tools: support SeaBIOS. Use by default when upstream qemu is configured, Ian Campbell
|
|
|
|
|