From a1c7f4b63de4e096cb1ac62db6a6e7ce0d87c62a Mon Sep 17 00:00:00 2001 From: Olivier Blin Date: Sun, 3 Oct 2004 07:52:04 +0000 Subject: (configureNetwork) load only ethernet modules before easy_dhcp (this will load firewire modules after other ethernet modules, so firewire interfaces won't always take the name eth0) --- perl-install/install_steps_interactive.pm | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'perl-install/install_steps_interactive.pm') diff --git a/perl-install/install_steps_interactive.pm b/perl-install/install_steps_interactive.pm index 8e8b7a16d..d4290307f 100644 --- a/perl-install/install_steps_interactive.pm +++ b/perl-install/install_steps_interactive.pm @@ -789,7 +789,8 @@ sub updateModulesFromFloppy { sub configureNetwork { my ($o) = @_; require network::network; - modules::load_category($o->{modules_conf}, 'network/*'); + require network::ethernet; + modules::load_category($o->{modules_conf}, network::ethernet::get_eth_categories()); network::network::easy_dhcp($o->{modules_conf}, $o->{netc}, $o->{intf}) and $o->{netcnx}{type} = 'lan'; $o->SUPER::configureNetwork; } -- cgit v1.2.1