summaryrefslogtreecommitdiffstats
path: root/perl-install/network/ethernet.pm
diff options
context:
space:
mode:
authorDamien Chaumette <dchaumette@mandriva.com>2004-02-04 15:45:01 +0000
committerDamien Chaumette <dchaumette@mandriva.com>2004-02-04 15:45:01 +0000
commitcf9f343cafead0e447f174f5bfab5b1ee8893839 (patch)
treebf74ebb1e0b6eb5d85e67fbf05ecd253f042ca96 /perl-install/network/ethernet.pm
parentcbcbec48e838d6b5b44baf9a253b8a0f4c7cf93f (diff)
downloaddrakx-cf9f343cafead0e447f174f5bfab5b1ee8893839.tar
drakx-cf9f343cafead0e447f174f5bfab5b1ee8893839.tar.gz
drakx-cf9f343cafead0e447f174f5bfab5b1ee8893839.tar.bz2
drakx-cf9f343cafead0e447f174f5bfab5b1ee8893839.tar.xz
drakx-cf9f343cafead0e447f174f5bfab5b1ee8893839.zip
- add network::ethernet::get_eth_cards_names
- kill duplicated code
Diffstat (limited to 'perl-install/network/ethernet.pm')
-rw-r--r--perl-install/network/ethernet.pm10
1 files changed, 10 insertions, 0 deletions
diff --git a/perl-install/network/ethernet.pm b/perl-install/network/ethernet.pm
index 5ac1a3110..1fd52e06d 100644
--- a/perl-install/network/ethernet.pm
+++ b/perl-install/network/ethernet.pm
@@ -62,6 +62,16 @@ sub get_eth_cards() {
} @all_cards;
}
+sub get_eth_cards_names {
+ my (@all_cards) = @_;
+
+ foreach my $card (@all_cards) {
+ modules::remove_alias($card->[1]);
+ modules::add_alias($card->[0], $card->[1]);
+ }
+
+ { map { $_->[0] => join(': ', $_->[0], $_->[2]) } @all_cards };
+}
#- conf_network_card_backend : configure the network cards and return the list of them, or configure one specified interface : WARNING, you have to setup the ethernet cards, by calling load_category($in, 'network/main|gigabit|usb', !$::expert, 1) or load_category_backend before calling this function. Basically, you call this function in 2 times.
#- input