From d09e1b66e3f1b2a7ccc15245facae42c9554cf45 Mon Sep 17 00:00:00 2001 From: Thierry Vignaud Date: Fri, 23 Mar 2012 19:50:59 +0000 Subject: fix detecting bluetooth devices (spot by perl_checker) --- perl-install/NEWS | 2 ++ perl-install/harddrake/data.pm | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) (limited to 'perl-install') 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, }, -- cgit v1.2.1