summaryrefslogtreecommitdiffstats
path: root/tools/2adsldb.pm
blob: 23328aafcc8a266c0430237943811b083038c265 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
open F, "isplist.txt" or die "file $file not found";
open G, ">tutu" or die "file $file not found";
foreach (<F>) {
    s/\#.*//;
    /.*ADSL.*/ or  next;
#| NOM | PAYS | CONNECTION | MAILTYPE | SMTP | MAILSERVER | NEWS | MY1DNS | MY2DNS | PROXY | PROXYSERVER | DHCP | EMAIL
    s/(.*)france(.*)/$1France$2/;
    s/(.*)FRANCE(.*)/$1France$2/;
    s/(.*)USA(.*)/$1United States$2/;
    s/(.*)U.S.A(.*)/$1United States$2/;
    s/(.*)US(.*)/$1United States$2/;
    s/(.*)usa(.*)/$1United States$2/;
    s/(.*)club-internet(.*)/$1club internet$2/;
    my ($name, $country, $connexion, $mailtype, $smtp, $popserver, $mailserver, $news, $dns1, $dns2, $proxy, $proxyserver, $dhcp, $email) = split /\|/;
    print G join("|", $country, join("=>", $name,   $dns1, $dns2)), "\n"; #$domain,
}

iv>
-rw-r--r--kernel/list_modules.pm2
1 files changed, 2 insertions, 0 deletions
diff --git a/kernel/list_modules.pm b/kernel/list_modules.pm
index 861286237..ce9ec9765 100644
--- a/kernel/list_modules.pm
+++ b/kernel/list_modules.pm
@@ -26,6 +26,8 @@ our %l = (
qw(lance natsemi ne ne2k-pci ni5010 ni52 ni65 olympic pcnet32 plip rcpci), #old_tulip
qw(sb1000 sis900 sk98lin smc-ultra smc9194 starfire tlan tmspci tulip via-rhine), #sktr
qw(wd winbond-840 yellowfin ns83820),
+
+ qw(iph5526), #- fibre channel
),
qw(3c59x 8139too sundance dl2k), #rtl8139
],