From 1192dad8798e4e4b72b14ff3a93c11cbb26eae5b Mon Sep 17 00:00:00 2001 From: j_mayer Date: Fri, 5 Oct 2007 13:08:35 +0000 Subject: New '-bios' option, used to select an alternate BIOS image from bios_dir. git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@3331 c046a42c-6fe2-441c-8c8c-71466251a162 --- hw/mips_r4k.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'hw/mips_r4k.c') diff --git a/hw/mips_r4k.c b/hw/mips_r4k.c index 5769ade968..47b51c7b0d 100644 --- a/hw/mips_r4k.c +++ b/hw/mips_r4k.c @@ -179,7 +179,9 @@ void mips_r4k_init (int ram_size, int vga_ram_size, int boot_device, preloaded we also initialize the hardware, since the BIOS wasn't run. */ bios_offset = ram_size + vga_ram_size; - snprintf(buf, sizeof(buf), "%s/%s", bios_dir, BIOS_FILENAME); + if (bios_name == NULL) + bios_name = BIOS_FILENAME; + snprintf(buf, sizeof(buf), "%s/%s", bios_dir, bios_name); bios_size = load_image(buf, phys_ram_base + bios_offset); if ((bios_size > 0) && (bios_size <= BIOS_SIZE)) { cpu_register_physical_memory(0x1fc00000, -- cgit 1.4.1