]> xenbits.xensource.com Git - qemu-xen-3.3-testing.git/commitdiff
Fix kernel loading
authorblueswir1 <blueswir1@c046a42c-6fe2-441c-8c8c-71466251a162>
Tue, 2 Oct 2007 19:15:48 +0000 (19:15 +0000)
committerblueswir1 <blueswir1@c046a42c-6fe2-441c-8c8c-71466251a162>
Tue, 2 Oct 2007 19:15:48 +0000 (19:15 +0000)
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@3314 c046a42c-6fe2-441c-8c8c-71466251a162

hw/sun4m.c

index a76c53b28b1c88f941da53129389a0029d9f9b92..76b0e7ee8f4179c0273164e2fc9e4cac027005e4 100644 (file)
@@ -440,7 +440,8 @@ static void sun4m_load_kernel(long vram_size, int RAM_size, int boot_device,
 
     kernel_size = 0;
     if (linux_boot) {
-        kernel_size = load_elf(kernel_filename, -0xf0000000, NULL, NULL, NULL);
+        kernel_size = load_elf(kernel_filename, -0xf0000000ULL, NULL, NULL,
+                               NULL);
         if (kernel_size < 0)
            kernel_size = load_aout(kernel_filename, phys_ram_base + KERNEL_LOAD_ADDR);
        if (kernel_size < 0)