qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
* [Qemu-devel] [PULL 0/2] ipxe: disable two second timeout
@ 2013-03-25  8:18 Gerd Hoffmann
  2013-03-25  8:18 ` [Qemu-devel] [PATCH 1/2] " Gerd Hoffmann
  2013-03-25  8:18 ` [Qemu-devel] [PATCH 2/2] ipxe: update binaries Gerd Hoffmann
  0 siblings, 2 replies; 3+ messages in thread
From: Gerd Hoffmann @ 2013-03-25  8:18 UTC (permalink / raw)
  To: qemu-devel; +Cc: jan.kiszka, Gerd Hoffmann

  Hi,

See $subject, minor tweak for the ipxe roms.

please pull,
  Gerd

The following changes since commit fe6344a05fba26e16863fefcb823242e579b0991:

  Remove device_tree.o from hw/moxie/Makefile.objs. (2013-03-24 11:30:04 +0100)

are available in the git repository at:

  git://git.kraxel.org/qemu ipxe.3

for you to fetch changes up to 0099cd43ecf07710a608db5ca0945758514a14c2:

  ipxe: update binaries (2013-03-25 09:13:18 +0100)

----------------------------------------------------------------
Gerd Hoffmann (2):
      ipxe: disable two second timeout
      ipxe: update binaries

 pc-bios/efi-e1000.rom      |  Bin 174080 -> 173568 bytes
 pc-bios/efi-eepro100.rom   |  Bin 175104 -> 174592 bytes
 pc-bios/efi-ne2k_pci.rom   |  Bin 173568 -> 173056 bytes
 pc-bios/efi-pcnet.rom      |  Bin 173568 -> 173056 bytes
 pc-bios/efi-rtl8139.rom    |  Bin 177152 -> 176640 bytes
 pc-bios/efi-virtio.rom     |  Bin 171008 -> 171008 bytes
 roms/Makefile              |    7 +++++--
 roms/config.ipxe.general.h |    2 ++
 8 files changed, 7 insertions(+), 2 deletions(-)
 create mode 100644 roms/config.ipxe.general.h

^ permalink raw reply	[flat|nested] 3+ messages in thread

* [Qemu-devel] [PATCH 1/2] ipxe: disable two second timeout
  2013-03-25  8:18 [Qemu-devel] [PULL 0/2] ipxe: disable two second timeout Gerd Hoffmann
@ 2013-03-25  8:18 ` Gerd Hoffmann
  2013-03-25  8:18 ` [Qemu-devel] [PATCH 2/2] ipxe: update binaries Gerd Hoffmann
  1 sibling, 0 replies; 3+ messages in thread
From: Gerd Hoffmann @ 2013-03-25  8:18 UTC (permalink / raw)
  To: qemu-devel; +Cc: jan.kiszka, Gerd Hoffmann

Signed-off-by: Gerd Hoffmann <kraxel@redhat.com>
---
 roms/Makefile              |    7 +++++--
 roms/config.ipxe.general.h |    2 ++
 2 files changed, 7 insertions(+), 2 deletions(-)
 create mode 100644 roms/config.ipxe.general.h

diff --git a/roms/Makefile b/roms/Makefile
index 3dc5609..7a228ae 100644
--- a/roms/Makefile
+++ b/roms/Makefile
@@ -57,13 +57,13 @@ lgplvgabios-%:
 
 pxerom: $(patsubst %,pxe-rom-%,$(pxerom_variants))
 
-pxe-rom-%:
+pxe-rom-%: ipxe/src/config/local/general.h
 	make -C ipxe/src bin/$(VID)$(DID).rom
 	cp ipxe/src/bin/$(VID)$(DID).rom ../pc-bios/pxe-$*.rom
 
 efirom: $(patsubst %,efi-rom-%,$(pxerom_variants))
 
-efi-rom-%:
+efi-rom-%: ipxe/src/config/local/general.h
 	make -C ipxe/src bin/$(VID)$(DID).rom
 	make -C ipxe/src bin-i386-efi/$(VID)$(DID).efidrv
 	make -C ipxe/src bin-x86_64-efi/$(VID)$(DID).efidrv
@@ -72,3 +72,6 @@ efi-rom-%:
 		-ec ipxe/src/bin-i386-efi/$(VID)$(DID).efidrv \
 		-ec ipxe/src/bin-x86_64-efi/$(VID)$(DID).efidrv \
 		-o ../pc-bios/efi-$*.rom
+
+ipxe/src/config/local/%: config.ipxe.%
+	cp $< $@
diff --git a/roms/config.ipxe.general.h b/roms/config.ipxe.general.h
new file mode 100644
index 0000000..b3fce53
--- /dev/null
+++ b/roms/config.ipxe.general.h
@@ -0,0 +1,2 @@
+#undef BANNER_TIMEOUT
+#define BANNER_TIMEOUT 0
-- 
1.7.9.7

^ permalink raw reply related	[flat|nested] 3+ messages in thread

* [Qemu-devel] [PATCH 2/2] ipxe: update binaries
  2013-03-25  8:18 [Qemu-devel] [PULL 0/2] ipxe: disable two second timeout Gerd Hoffmann
  2013-03-25  8:18 ` [Qemu-devel] [PATCH 1/2] " Gerd Hoffmann
@ 2013-03-25  8:18 ` Gerd Hoffmann
  1 sibling, 0 replies; 3+ messages in thread
From: Gerd Hoffmann @ 2013-03-25  8:18 UTC (permalink / raw)
  To: qemu-devel; +Cc: jan.kiszka, Gerd Hoffmann

Signed-off-by: Gerd Hoffmann <kraxel@redhat.com>
---
 pc-bios/efi-e1000.rom    |  Bin 174080 -> 173568 bytes
 pc-bios/efi-eepro100.rom |  Bin 175104 -> 174592 bytes
 pc-bios/efi-ne2k_pci.rom |  Bin 173568 -> 173056 bytes
 pc-bios/efi-pcnet.rom    |  Bin 173568 -> 173056 bytes
 pc-bios/efi-rtl8139.rom  |  Bin 177152 -> 176640 bytes
 pc-bios/efi-virtio.rom   |  Bin 171008 -> 171008 bytes
 6 files changed, 0 insertions(+), 0 deletions(-)

diff --git a/pc-bios/efi-e1000.rom b/pc-bios/efi-e1000.rom
index 7dfcea364a1c59a61b9581a3aa2bb64335b76037..21b880afc244548d097bf0ec4fe801417c7e74c8 100644
GIT binary patch

[ ... snipped to not spam the list ... ]

^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2013-03-25  8:18 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-03-25  8:18 [Qemu-devel] [PULL 0/2] ipxe: disable two second timeout Gerd Hoffmann
2013-03-25  8:18 ` [Qemu-devel] [PATCH 1/2] " Gerd Hoffmann
2013-03-25  8:18 ` [Qemu-devel] [PATCH 2/2] ipxe: update binaries Gerd Hoffmann

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).