Allow arbitrary MIPS BIOS sizes between 0 and 4 MB, by Stefan Weil.
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@2446 c046a42c-6fe2-441c-8c8c-71466251a162
This commit is contained in:
		
							parent
							
								
									9c1de6125e
								
							
						
					
					
						commit
						331ad6f444
					
				| 
						 | 
				
			
			@ -533,7 +533,7 @@ void mips_malta_init (int ram_size, int vga_ram_size, int boot_device,
 | 
			
		|||
    } else {
 | 
			
		||||
        snprintf(buf, sizeof(buf), "%s/%s", bios_dir, BIOS_FILENAME);
 | 
			
		||||
        ret = load_image(buf, phys_ram_base + bios_offset);
 | 
			
		||||
        if (ret != BIOS_SIZE) {
 | 
			
		||||
        if (ret < 0 || ret > BIOS_SIZE) {
 | 
			
		||||
            fprintf(stderr, "qemu: Warning, could not load MIPS bios '%s'\n",
 | 
			
		||||
                    buf);
 | 
			
		||||
            exit(1);
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
		Loading…
	
		Reference in New Issue