]> git.proxmox.com Git - mirror_qemu.git/commitdiff
roms: build two seabios binaries
authorGerd Hoffmann <kraxel@redhat.com>
Mon, 30 Sep 2013 09:37:12 +0000 (11:37 +0200)
committerGerd Hoffmann <kraxel@redhat.com>
Fri, 6 Dec 2013 07:55:42 +0000 (08:55 +0100)
Adding xhci support to seabios made it jump over the 128k line.
Changing the bios size breaks migration, so we have to keep a
128k seabios binary for old machine types.  New machine types can
use a large 256k bios which should be big enougth for a while.

This patch updates the seabios build process to build seabios twice,
once full featured and once with xen and xhci turned off so the
resulting binary is small enougth to fit into 128k.

Signed-off-by: Gerd Hoffmann <kraxel@redhat.com>
roms/Makefile
roms/config.seabios [deleted file]
roms/config.seabios-128k [new file with mode: 0644]
roms/config.seabios-256k [new file with mode: 0644]

index 10d5a65d61fa6c4ed850d985b361bc3a293a3586..fc716c1b10c3841baae39f2e3a225aa1166419f9 100644 (file)
@@ -56,9 +56,10 @@ default:
        @echo "                    the EfiRom utility from edk2 / tianocore)"
        @echo "  slof           -- update slof.bin"
 
-bios: build-seabios-config-seabios
-       cp seabios/builds/seabios/bios.bin ../pc-bios/bios.bin
-       cp seabios/builds/seabios/*dsdt.aml ../pc-bios/
+bios: build-seabios-config-seabios-128k build-seabios-config-seabios-256k
+       cp seabios/builds/seabios-128k/bios.bin ../pc-bios/bios.bin
+       cp seabios/builds/seabios-256k/bios.bin ../pc-bios/bios-256k.bin
+       cp seabios/builds/seabios-256k/src/fw/*dsdt.aml ../pc-bios/
 
 seavgabios: $(patsubst %,seavgabios-%,$(vgabios_variants))
 
diff --git a/roms/config.seabios b/roms/config.seabios
deleted file mode 100644 (file)
index c373b87..0000000
+++ /dev/null
@@ -1 +0,0 @@
-# empty, default config works for us
diff --git a/roms/config.seabios-128k b/roms/config.seabios-128k
new file mode 100644 (file)
index 0000000..41f8381
--- /dev/null
@@ -0,0 +1,6 @@
+# for qemu machine types 1.7 + older
+# need to turn off features (xhci) to make it fit into 128k
+CONFIG_QEMU=y
+CONFIG_ROM_SIZE=128
+CONFIG_XEN=n
+CONFIG_USB_XHCI=n
diff --git a/roms/config.seabios-256k b/roms/config.seabios-256k
new file mode 100644 (file)
index 0000000..65e5015
--- /dev/null
@@ -0,0 +1,3 @@
+# for qemu machine types 2.0 + newer
+CONFIG_QEMU=y
+CONFIG_ROM_SIZE=256