summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--perl-install/NEWS1
-rw-r--r--perl-install/detect_devices.pm4
2 files changed, 5 insertions, 0 deletions
diff --git a/perl-install/NEWS b/perl-install/NEWS
index 9cdd9079e..609281344 100644
--- a/perl-install/NEWS
+++ b/perl-install/NEWS
@@ -1,4 +1,5 @@
- add back ipw3945 module in wireless modules list
+- allow to detect VirtualBox guest systems
Version 10.4.217 - 27 September 2007, by Thierry Vignaud
diff --git a/perl-install/detect_devices.pm b/perl-install/detect_devices.pm
index 1c2621e09..acfaab9c7 100644
--- a/perl-install/detect_devices.pm
+++ b/perl-install/detect_devices.pm
@@ -1066,6 +1066,10 @@ sub is_xbox() {
any { $_->{vendor} == 0x10de && $_->{id} == 0x02a5 } pci_probe();
}
+sub is_virtualbox() {
+ any { $_->{driver} eq 'vboxadd' } detect_devices::pci_probe();
+}
+
sub has_cpu_flag {
my ($flag) = @_;
cat_('/proc/cpuinfo') =~ /^flags.*\b$flag\b/m;