From c45e5ab01008022dfb638f74cbedb41475e64e5d Mon Sep 17 00:00:00 2001 From: Olivier Blin Date: Fri, 28 Sep 2007 15:07:07 +0000 Subject: allow to detect VirtualBox guest systems --- perl-install/NEWS | 1 + perl-install/detect_devices.pm | 4 ++++ 2 files changed, 5 insertions(+) (limited to 'perl-install') 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; -- cgit v1.2.1