]> git.proxmox.com Git - qemu.git/commitdiff
hw/alpha: Use SRM epoch
authorRichard Henderson <rth@twiddle.net>
Sun, 14 Jul 2013 00:23:37 +0000 (17:23 -0700)
committerRichard Henderson <rth@twiddle.net>
Sun, 14 Jul 2013 20:40:36 +0000 (13:40 -0700)
The 1980 epoch is used by the ARC PALcode for NT.  But we're emulating
a system using the SRM PALcode.  Using the proper epoch results in less
confusion in the guest userland.

Signed-off-by: Richard Henderson <rth@twiddle.net>
hw/alpha/dp264.c

index 8dad08fac28594a31a3d18221656f1e3dc278def..95fde615bec42d6496985620302f65ef30b5e005 100644 (file)
@@ -73,7 +73,9 @@ static void clipper_init(QEMUMachineInitArgs *args)
     pci_bus = typhoon_init(ram_size, &isa_bus, &rtc_irq, cpus,
                            clipper_pci_map_irq);
 
-    rtc_init(isa_bus, 1980, rtc_irq);
+    /* Since we have an SRM-compatible PALcode, use the SRM epoch.  */
+    rtc_init(isa_bus, 1900, rtc_irq);
+
     pit_init(isa_bus, 0x40, 0, NULL);
     isa_create_simple(isa_bus, "i8042");