diff options
author | Thierry Vignaud <tv@mageia.org> | 2011-12-10 06:50:57 +0000 |
---|---|---|
committer | Thierry Vignaud <tv@mageia.org> | 2011-12-10 06:50:57 +0000 |
commit | bebb1a66a12c0fb209261e962f7244b93d0dba3d (patch) | |
tree | 3b2c31f722a93bb4ca722add1b0f412306b2340d /perl-install | |
parent | 234f4cc8edbf116ad814544715a7a2c2ea28d8c3 (diff) | |
download | drakx-bebb1a66a12c0fb209261e962f7244b93d0dba3d.tar drakx-bebb1a66a12c0fb209261e962f7244b93d0dba3d.tar.gz drakx-bebb1a66a12c0fb209261e962f7244b93d0dba3d.tar.bz2 drakx-bebb1a66a12c0fb209261e962f7244b93d0dba3d.tar.xz drakx-bebb1a66a12c0fb209261e962f7244b93d0dba3d.zip |
do not display some bluetooth stuff as unknown (mga#1460)
Diffstat (limited to 'perl-install')
-rw-r--r-- | perl-install/NEWS | 1 | ||||
-rw-r--r-- | perl-install/harddrake/data.pm | 2 |
2 files changed, 2 insertions, 1 deletions
diff --git a/perl-install/NEWS b/perl-install/NEWS index 186c9028f..184235d5e 100644 --- a/perl-install/NEWS +++ b/perl-install/NEWS @@ -1,6 +1,7 @@ - drakhelp: make it work somewhat despite lack of doc - prevent net_applet to crash on notifications without icons (mga#2876) - harddrake: + o do not display some bluetooth stuff as unknown (mga#1460) o prevent detecting some soft modems as scanners (mga#2753) Version 13.71 - 04 December 2011 diff --git a/perl-install/harddrake/data.pm b/perl-install/harddrake/data.pm index d0d604599..513943b96 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')) }, + detector => sub { f(detect_devices::probe_category('bus/bluetooth')), f(grep { $_->{description}) }, checked_on_boot => 1, }, |