summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorThierry Vignaud <tv@mageia.org>2012-03-23 19:50:59 +0000
committerThierry Vignaud <tv@mageia.org>2012-03-23 19:50:59 +0000
commit22ab0fd263abdd83770015718b1fef2713962042 (patch)
tree7150736f70a60f964dadf855d5647193720a689a
parent5b0356613450ee1cc0bac9dc2f89db552d7008fd (diff)
downloaddrakx-22ab0fd263abdd83770015718b1fef2713962042.tar
drakx-22ab0fd263abdd83770015718b1fef2713962042.tar.gz
drakx-22ab0fd263abdd83770015718b1fef2713962042.tar.bz2
drakx-22ab0fd263abdd83770015718b1fef2713962042.tar.xz
drakx-22ab0fd263abdd83770015718b1fef2713962042.zip
fix detecting bluetooth devices
(spot by perl_checker)
-rw-r--r--perl-install/NEWS2
-rw-r--r--perl-install/harddrake/data.pm2
2 files changed, 3 insertions, 1 deletions
diff --git a/perl-install/NEWS b/perl-install/NEWS
index a91a3ae90..f900b9e4e 100644
--- a/perl-install/NEWS
+++ b/perl-install/NEWS
@@ -5,6 +5,8 @@
- use "splash" on the kernel command line vs. "splash=silent" as per upstream
code (e.g. plymouth, systemd and others)
- support the "quiet" kernel command line argument to hide kernel text
+- harddrake:
+ o fix detecting bluetooth devices
Version 13.93 - 12 March 2012
diff --git a/perl-install/harddrake/data.pm b/perl-install/harddrake/data.pm
index cbc43d8be..76ba48531 100644
--- a/perl-install/harddrake/data.pm
+++ b/perl-install/harddrake/data.pm
@@ -384,7 +384,7 @@ our @tree =
string => N("Bluetooth devices"),
icon => "hw_network.png",
configurator => "",
- detector => sub { f(detect_devices::probe_category('bus/bluetooth')), f(grep { $_->{description} =~ /Bluetooth Dongle/ } @$devices) },
+ detector => sub { f(detect_devices::probe_category('bus/bluetooth')), f(grep { $_->{description} =~ /Bluetooth Dongle/ } @devices) },
checked_on_boot => 1,
},