>From bc6f181dc3d1a6342f0f26ae185fbf101cedbb02 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Cr=C3=ADstian=20Viana?= Date: Thu, 3 May 2012 17:28:59 -0300 Subject: [PATCH] Force driftfix=none on previous machines MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The current value for the -rtc driftfix option is 'none'. This patch makes sure that the old machines configuration will work the same way even after that option changes its default value. Signed-off-by: Crístian Viana --- hw/pc_piix.c | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/hw/pc_piix.c b/hw/pc_piix.c index 6a75718..35633f0 100644 --- a/hw/pc_piix.c +++ b/hw/pc_piix.c @@ -381,6 +381,10 @@ static QEMUMachine pc_machine_v1_1 = { .driver = "USB",\ .property = "full-path",\ .value = "no",\ + },{\ + .driver = "mc146818rtc",\ + .property = "lost_tick_policy",\ + .value = "discard",\ } static QEMUMachine pc_machine_v1_0 = { -- 1.7.9.5