cfb3d2ae67
* generator/customize.ml: Split --chown parameter on ':' character * daemon: Add gost checksum command support * Add detection support for Circle Linux * Add support for LoongArch. * daemon: Fix file architecture translation for LoongArch * options: Allow nbd+unix:// URIs * daemon/parted: Assume sfdisk --part-type exists * daemon: Reimplement partition GPT functions using sfdisk * appliance: only wait for resolv.conf update if dhcpcd succeeded * generator/customize.ml: Add virt-customize --inject-blnsvr operation * lib: libvirt: Stop recommending LIBGUESTFS_BACKEND=direct * daemon: cryptsetup_open: Add --cipher * rust: Handle null pointer when creating slice * Remove gluster support * Remove sheepdog support * Remove tftp drive support * generator/daemon: Don't truncate 64 bit results from OCaml functions * daemon: Fix parsing in part_get_gpt_attributes * New APIs: findfs_partuuid and findfs_partlabel * inspection: Resolve PARTUUID= and PARTLABEL= in /etc/fstab * generator/actions_core.ml: Fix version field for new APIs * Kylin is centos derivative OBS-URL: https://build.opensuse.org/package/show/Virtualization/libguestfs?expand=0&rev=585
14 lines
597 B
Diff
14 lines
597 B
Diff
--- libguestfs-1.52.0/lib/launch-direct.c.orig 2024-02-05 14:17:10.208970293 -0700
|
|
+++ libguestfs-1.52.0/lib/launch-direct.c 2024-02-05 14:21:37.548976664 -0700
|
|
@@ -650,7 +650,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__)
|