|
|
|
|
|
|
|
|
|
|
xen-devel
[Xen-devel] [PATCH 09 of 11] tools: hvmloader: add Makefile option to us
# HG changeset patch
# User Ian Campbell <ian.campbell@xxxxxxxxxx>
# Date 1302013752 -3600
# Node ID c2fe8249899ee1772973f93897dd7cf960367822
# Parent 478740ab3110e79142ee9fde73f5b7e9d066a6ce
tools: hvmloader: add Makefile option to use debug video BIOS
Simply as a convenience.
Signed-off-by: Ian Campbell <ian.campbell@xxxxxxxxxx>
diff -r 478740ab3110 -r c2fe8249899e tools/firmware/hvmloader/Makefile
--- a/tools/firmware/hvmloader/Makefile Tue Apr 05 15:29:12 2011 +0100
+++ b/tools/firmware/hvmloader/Makefile Tue Apr 05 15:29:12 2011 +0100
@@ -35,6 +35,8 @@ SRCS += tests.c
endif
OBJS = $(patsubst %.c,%.o,$(SRCS))
+CIRRUSVGA_DEBUG ?= n
+
.PHONY: all
all: subdirs-all
$(MAKE) hvmloader
@@ -53,8 +55,14 @@ roms.h: ../rombios/BIOS-bochs-latest ../
sh ./mkhex biosimg ../rombios/BIOS-bochs-latest >> roms.h
sh ./mkhex vgabios_stdvga ../vgabios/VGABIOS-lgpl-latest.bin >> roms.h
+ifeq ($(CIRRUSVGA_DEBUG),y)
+ sh ./mkhex vgabios_cirrusvga \
+ ../vgabios/VGABIOS-lgpl-latest.cirrus.debug.bin >> roms.h
+else
sh ./mkhex vgabios_cirrusvga \
../vgabios/VGABIOS-lgpl-latest.cirrus.bin >> roms.h
+endif
+
cat ../etherboot/eb-roms.h >> roms.h
.PHONY: clean
_______________________________________________
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 11] RFC: hvmloader SeaBIOS integration, Ian Campbell
- [Xen-devel] [PATCH 03 of 11] tools: hvmloader: pass ACPI_PHYSICAL_ADDRESS as a runtime parameter, Ian Campbell
- [Xen-devel] [PATCH 02 of 11] tools: hvmloader: move e820 definitions into rombios, Ian Campbell
- [Xen-devel] [PATCH 04 of 11] tools: hvmloader: pass SMBIOS location as a runtime parameter, Ian Campbell
- [Xen-devel] [PATCH 01 of 11] tools: hvmloader: move ROMBIOS configuration into tools/firmware/rombios/, Ian Campbell
- [Xen-devel] [PATCH 06 of 11] tools: hvmloader: only hvmloader.c needs to know about rombios, Ian Campbell
- [Xen-devel] [PATCH 05 of 11] tools: hvmloader: split scratch and hypercall addressing from ROMBIOS low HEAP, Ian Campbell
- [Xen-devel] [PATCH 07 of 11] tools: hvmloader: abort build if BIOS is too big, Ian Campbell
- [Xen-devel] [PATCH 10 of 11] tools: hvmloader: build and install hvmloader-rombios, Ian Campbell
- [Xen-devel] [PATCH 08 of 11] tools: hvmloader: Use more generic name for BIOS ROM image, Ian Campbell
- [Xen-devel] [PATCH 09 of 11] tools: hvmloader: add Makefile option to use debug video BIOS,
Ian Campbell <=
- [Xen-devel] [PATCH 11 of 11] tools: hvmloader: build and install hvmloader-seabios, Ian Campbell
- [Xen-devel] libxl: hiding hvmloader and device_model options from users by default (Was: Re: [PATCH 00 of 11] RFC: hvmloader SeaBIOS integration), Ian Campbell
|
|
|
|
|