summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--kernel/list_modules.pm3
-rw-r--r--perl-install/harddrake/data.pm3
2 files changed, 3 insertions, 3 deletions
diff --git a/kernel/list_modules.pm b/kernel/list_modules.pm
index 63f2124f2..703cf374d 100644
--- a/kernel/list_modules.pm
+++ b/kernel/list_modules.pm
@@ -46,6 +46,9 @@ our %l = (
qw(ibmtr_cs nmclan_cs pcnet_cs smc91c92_cs),
qw(xirc2ps_cs xircom_cb xircom_tulip_cb),
],
+ #- generic NIC detection for USB seems broken (class, subclass,
+ #- protocol reported are not accurate) so we match network adapters against
+ #- known drivers :-(
usb => [
qw(catc CDCEther kaweth pegasus rtl8150 usbnet),
],
diff --git a/perl-install/harddrake/data.pm b/perl-install/harddrake/data.pm
index 7b2153eba..e0c6bc1e1 100644
--- a/perl-install/harddrake/data.pm
+++ b/perl-install/harddrake/data.pm
@@ -201,9 +201,6 @@ our @tree =
icon => "hw_network.png",
configurator => "$sbindir/drakconnect",
detector => sub {
- #- generic NIC detection for USB seems broken (class, subclass,
- #- protocol reported are not accurate) so we match network adapters against
- #- known drivers :-(
require list_modules;
require network::ethernet;
my @net_modules = list_modules::category2modules(network::ethernet::get_eth_categories());