From: mille-feuille Date: Thu, 8 Feb 2024 14:47:24 +0000 (+0900) Subject: detect-virt: fix Google Compute Engine support X-Git-Tag: v256-rc1~931 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=baa90b4b81da6fd28b2fe7f4f37c8c546881f3a0;p=thirdparty%2Fsystemd.git detect-virt: fix Google Compute Engine support Follow-up for 9b0688f491674b53ef7a52bdf561a430c53673d6 --- diff --git a/src/basic/virt.c b/src/basic/virt.c index 465f339c146..375ef28216d 100644 --- a/src/basic/virt.c +++ b/src/basic/virt.c @@ -455,7 +455,7 @@ Virtualization detect_vm(void) { /* We have to use the correct order here: * - * → First, try to detect Oracle Virtualbox, Amazon EC2 Nitro, and Parallels, even if they use KVM, + * → First, try to detect Oracle Virtualbox, Amazon EC2 Nitro, Parallels, and Google Compute Engine, even if they use KVM, * as well as Xen even if it cloaks as Microsoft Hyper-V. Attempt to detect uml at this stage also * since it runs as a user-process nested inside other VMs. Also check for Xen now, because Xen PV * mode does not override CPUID when nested inside another hypervisor. @@ -470,7 +470,8 @@ Virtualization detect_vm(void) { VIRTUALIZATION_ORACLE, VIRTUALIZATION_XEN, VIRTUALIZATION_AMAZON, - VIRTUALIZATION_PARALLELS)) { + VIRTUALIZATION_PARALLELS, + VIRTUALIZATION_GOOGLE)) { v = dmi; goto finish; }