diff options
-rw-r--r-- | perl-install/NEWS | 1 | ||||
-rw-r--r-- | perl-install/detect_devices.pm | 2 | ||||
-rw-r--r-- | perl-install/install/NEWS | 1 |
3 files changed, 3 insertions, 1 deletions
diff --git a/perl-install/NEWS b/perl-install/NEWS index 1a68f727d..f5661b4ea 100644 --- a/perl-install/NEWS +++ b/perl-install/NEWS @@ -1,3 +1,4 @@ +- detect ovirt too (mga#19308) - sync nonfree firmware list with kernel-4.7 Version 17.54 - 13 August 2016 diff --git a/perl-install/detect_devices.pm b/perl-install/detect_devices.pm index 8cff4d994..b2a9b03f7 100644 --- a/perl-install/detect_devices.pm +++ b/perl-install/detect_devices.pm @@ -1470,7 +1470,7 @@ Are we running under Qemu hypervisor? =cut sub is_qemu() { - virt_technology() eq 'qemu'; + member(virt_technology(), qw(kvm qemu)); } =item is_virtualbox() diff --git a/perl-install/install/NEWS b/perl-install/install/NEWS index f60434d7e..e655c0c91 100644 --- a/perl-install/install/NEWS +++ b/perl-install/install/NEWS @@ -1,3 +1,4 @@ +- detect ovirt too (mga#19308) - sync nonfree firmware list with kernel-4.7 Version 17.55 - 13 August 2016 |