From 0071b8bafd29bd1ffcbcf6500ab5801ce09e42c0 Mon Sep 17 00:00:00 2001 From: Thierry Vignaud Date: Thu, 19 May 2005 03:03:03 +0000 Subject: list ATM, Bluetooth, WAN, USB audio devices in their own categories --- perl-install/harddrake/data.pm | 46 ++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 46 insertions(+) (limited to 'perl-install') diff --git a/perl-install/harddrake/data.pm b/perl-install/harddrake/data.pm index f27c8d9a4..37fc9c491 100644 --- a/perl-install/harddrake/data.pm +++ b/perl-install/harddrake/data.pm @@ -205,6 +205,52 @@ our @tree = checked_on_boot => 0, }, + + { + class => "USB_AUDIO", + string => N("USB sound devices"), + icon => "sound.png", + configurator => "", + detector => sub { f(modules::probe_category('multimedia/usb_sound')) }, + checked_on_boot => 0, + }, + + { + class => "RADIO", + string => N("Radio cards"), + icon => "tv.png", + configurator => "", + detector => sub { f(modules::probe_category('multimedia/radio')) }, + checked_on_boot => 0, + }, + + { + class => "WAN", + string => N("WAN network cards"), + icon => "hw_network.png", + configurator => "", + detector => sub { f(modules::probe_category('network/wan')) }, + checked_on_boot => 0, + }, + + { + class => "WAN", + string => N("WAN network cards"), + icon => "hw_network.png", + configurator => "", + detector => sub { f(modules::probe_category('network/wan')) }, + checked_on_boot => 0, + }, + + { + class => "BLUETOOTH", + string => N("Bluetooth devices"), + icon => "hw_network.png", + configurator => "", + detector => sub { f(modules::probe_category('bus/bluetooth')) }, + checked_on_boot => 0, + }, + { class => "ETHERNET", string => N("Ethernetcard"), -- cgit v1.2.1