diff options
author | Thierry Vignaud <tvignaud@mandriva.org> | 2004-08-18 08:51:22 +0000 |
---|---|---|
committer | Thierry Vignaud <tvignaud@mandriva.org> | 2004-08-18 08:51:22 +0000 |
commit | 56032e485e9659bdf844fc8745f7f19cf8dc411c (patch) | |
tree | 4277ef1a536ed4268ceb6c7a4139e4d711d5fcdc | |
parent | 92e3fce63a0c18a7e84fe025f88dc779ddcf2cec (diff) | |
download | drakx-56032e485e9659bdf844fc8745f7f19cf8dc411c.tar drakx-56032e485e9659bdf844fc8745f7f19cf8dc411c.tar.gz drakx-56032e485e9659bdf844fc8745f7f19cf8dc411c.tar.bz2 drakx-56032e485e9659bdf844fc8745f7f19cf8dc411c.tar.xz drakx-56032e485e9659bdf844fc8745f7f19cf8dc411c.zip |
add PCMCIA controllers class
-rw-r--r-- | perl-install/harddrake/data.pm | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/perl-install/harddrake/data.pm b/perl-install/harddrake/data.pm index 8caf43fef..ceb6cd2c2 100644 --- a/perl-install/harddrake/data.pm +++ b/perl-install/harddrake/data.pm @@ -310,6 +310,19 @@ our @tree = }, { + class => "PCMCIA_CONTROLLER", + string => N("PCMCIA controllers"), + icon => "scsi.png", + configurator => "", + detector => sub { + require list_modules; + my @modules = list_modules::category2modules('bus/pcmcia'); + f(grep { member($_->{driver}, @modules) } @devices); + }, + checked_on_boot => 1, + }, + + { class => "SCSI_CONTROLLER", string => N("SCSI controllers"), icon => "scsi.png", |