diff options
author | damien <damien@mandriva.com> | 2001-04-13 09:21:42 +0000 |
---|---|---|
committer | damien <damien@mandriva.com> | 2001-04-13 09:21:42 +0000 |
commit | 5fc632de6b56e66c0ee667a274daf31d8c29d6b2 (patch) | |
tree | dde1ca79dd9d78794f1f772e857278c79421d491 | |
parent | 4c104ee957bcc7506b75401afe3085ba7cb97c6a (diff) | |
download | drakx-backup-do-not-use-5fc632de6b56e66c0ee667a274daf31d8c29d6b2.tar drakx-backup-do-not-use-5fc632de6b56e66c0ee667a274daf31d8c29d6b2.tar.gz drakx-backup-do-not-use-5fc632de6b56e66c0ee667a274daf31d8c29d6b2.tar.bz2 drakx-backup-do-not-use-5fc632de6b56e66c0ee667a274daf31d8c29d6b2.tar.xz drakx-backup-do-not-use-5fc632de6b56e66c0ee667a274daf31d8c29d6b2.zip |
updated wireless configuration
-rw-r--r-- | perl-install/network.pm | 17 |
1 files changed, 16 insertions, 1 deletions
diff --git a/perl-install/network.pm b/perl-install/network.pm index 174692d4d..779e6a7e5 100644 --- a/perl-install/network.pm +++ b/perl-install/network.pm @@ -298,7 +298,22 @@ sub configureNetworkIntf { my ($netc, $in, $intf, $net_device, $skip, $module) = @_; my $text; my @wireless_modules = ("airo_cs", "netwave_cs", "ray_cs", "wavelan_cs", "wvlan_cs"); - member($module, @wireless_modules) and $intf->{wireless_eth}=1 and $netc->{wireless_eth}=1; + if (member($module, @wireless_modules)) { + $intf->{wireless_eth} = 1; + $netc->{wireless_eth} = 1; + $intf->{WIRELESS_MODE} = "Managed"; + $intf->{WIRELESS_ESSID} = "any"; +#- $intf->{WIRELESS_NWID} = ""; +#- $intf->{WIRELESS_FREQ} = ""; +#- $intf->{WIRELESS_SENS} = ""; +#- $intf->{WIRELESS_RATE} = ""; +#- $intf->{WIRELESS_ENC_KEY} = ""; +#- $intf->{WIRELESS_RTS} = ""; +#- $intf->{WIRELESS_FRAG} = ""; +#- $intf->{WIRELESS_IWCONFIG} = ""; +#- $intf->{WIRELESS_IWSPY} = ""; +#- $intf->{WIRELESS_IWPRIV} = ""; + } if ($net_device eq $intf->{DEVICE}) { $skip and return 1; $text = _("WARNING: This device has been previously configured to connect to the Internet. |