summaryrefslogtreecommitdiff
path: root/roms/Makefile
diff options
context:
space:
mode:
authorRichard W.M. Jones <rjones@redhat.com>2016-05-14 19:50:51 +0100
committerGerd Hoffmann <kraxel@redhat.com>2016-07-04 11:28:58 +0200
commit4e04ab6a63ebe9fb4305e7e8e49cc8b0095db8fb (patch)
tree6fcaea70111ca3916c712b8fca9b0b69e5473785 /roms/Makefile
parent8692aa29798e0f2cb5069f2460bbe19ff538fc71 (diff)
downloadqemu-4e04ab6a63ebe9fb4305e7e8e49cc8b0095db8fb.tar.gz
bios: Add fast variant of SeaBIOS for use with -kernel on x86.
This commit adds a fast variant of SeaBIOS called 'bios-fast.bin'. It's designed to be the fastest (also the smallest, but that's not the main aim) SeaBIOS that is just enough to boot a Linux kernel using the -kernel option on i686 and x86_64. This commit does not modify the -kernel option to use this. You have to specify it by doing something like this: -kernel vmlinuz -bios bios-fast.bin Signed-off-by: Richard W.M. Jones <rjones@redhat.com> Acked-by: Stefan Hajnoczi <stefanha@redhat.com> Signed-off-by: Gerd Hoffmann <kraxel@redhat.com>
Diffstat (limited to 'roms/Makefile')
-rw-r--r--roms/Makefile4
1 files changed, 3 insertions, 1 deletions
diff --git a/roms/Makefile b/roms/Makefile
index 7bd1252737..26b058659a 100644
--- a/roms/Makefile
+++ b/roms/Makefile
@@ -61,9 +61,11 @@ default:
@echo " slof -- update slof.bin"
@echo " u-boot.e500 -- update u-boot.e500"
-bios: build-seabios-config-seabios-128k build-seabios-config-seabios-256k
+bios: build-seabios-config-seabios-128k build-seabios-config-seabios-256k \
+ build-seabios-config-seabios-fast
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-fast/bios.bin ../pc-bios/bios-fast.bin
seavgabios: $(patsubst %,seavgabios-%,$(vgabios_variants))