diff options
author | Thierry Vignaud <tv@mageia.org> | 2012-03-23 19:50:59 +0000 |
---|---|---|
committer | Thierry Vignaud <tv@mageia.org> | 2012-03-23 19:50:59 +0000 |
commit | d09e1b66e3f1b2a7ccc15245facae42c9554cf45 (patch) | |
tree | 7150736f70a60f964dadf855d5647193720a689a | |
parent | 3368264f12f762c5ddb3c1afc8d3d37c76178ddb (diff) | |
download | drakx-backup-do-not-use-d09e1b66e3f1b2a7ccc15245facae42c9554cf45.tar drakx-backup-do-not-use-d09e1b66e3f1b2a7ccc15245facae42c9554cf45.tar.gz drakx-backup-do-not-use-d09e1b66e3f1b2a7ccc15245facae42c9554cf45.tar.bz2 drakx-backup-do-not-use-d09e1b66e3f1b2a7ccc15245facae42c9554cf45.tar.xz drakx-backup-do-not-use-d09e1b66e3f1b2a7ccc15245facae42c9554cf45.zip |
fix detecting bluetooth devices
(spot by perl_checker)
-rw-r--r-- | perl-install/NEWS | 2 | ||||
-rw-r--r-- | perl-install/harddrake/data.pm | 2 |
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, }, |