14 lines
488 B
Diff
14 lines
488 B
Diff
--- a/lib/launch-direct.c
|
|
+++ b/lib/launch-direct.c
|
|
@@ -645,7 +645,10 @@ launch_direct (guestfs_h *g, void *datav
|
|
flag ("-no-reboot");
|
|
|
|
/* These are recommended settings, see RHBZ#1053847. */
|
|
+#if defined(__i386__) || defined(__x86_64__)
|
|
+ /* Man page states, "Enable driftfix (i386 targets only)" */
|
|
arg ("-rtc", "driftfix=slew");
|
|
+#endif
|
|
if (guestfs_int_qemu_supports (g, data->qemu_data, "-no-hpet"))
|
|
flag ("-no-hpet");
|
|
#if defined(__i386__) || defined(__x86_64__)
|