]> git.proxmox.com Git - qemu.git/commitdiff
spapr: Respect -bios command line option for SLOF
authorAndreas Färber <afaerber@suse.de>
Wed, 3 Jul 2013 19:26:50 +0000 (21:26 +0200)
committerAlexander Graf <agraf@suse.de>
Thu, 11 Jul 2013 16:51:23 +0000 (18:51 +0200)
Allow the user to override the firmware file name rather than always
using "slof.bin".

Reported-by: Dinar Valeev <k0da@opensuse.org>
Signed-off-by: Andreas Färber <afaerber@suse.de>
Signed-off-by: Alexander Graf <agraf@suse.de>
hw/ppc/spapr.c

index 5c31ad36bd18f165dd7a0d0b3f20712b69f0825b..48ae09283d1c744a09583bd15f8567832a37cbff 100644 (file)
@@ -940,7 +940,10 @@ static void ppc_spapr_init(QEMUMachineInitArgs *args)
         }
     }
 
-    filename = qemu_find_file(QEMU_FILE_TYPE_BIOS, FW_FILE_NAME);
+    if (bios_name == NULL) {
+        bios_name = FW_FILE_NAME;
+    }
+    filename = qemu_find_file(QEMU_FILE_TYPE_BIOS, bios_name);
     fw_size = load_image_targphys(filename, 0, FW_MAX_SIZE);
     if (fw_size < 0) {
         hw_error("qemu: could not load LPAR rtas '%s'\n", filename);