Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!

Bug 102722

Summary: baselayout-1.12.0_pre5 ignores eth0 ip setting if adsl module is also enabled
Product: Gentoo Linux Reporter: The Master <da_master937>
Component: [OLD] baselayoutAssignee: Gentoo's Team for Core System packages <base-system>
Status: RESOLVED INVALID    
Severity: minor    
Priority: High    
Version: 2005.1   
Hardware: All   
OS: Linux   
Whiteboard:
Package list:
Runtime testing required: ---

Description The Master 2005-08-16 09:44:38 UTC
In conf.d/net if config_eth0=( "192.168.2.2/24" ) is set along with
config_eth0=( "adsl" ), the IP address setting is ignored altogether and only
DSL is brought up. This was not the case prior when the dsl init script was
brought online separately from net.eth0. (IP was set, and DSL was brought up as
well.)

Thanks for your time,
Comment 1 SpanKY gentoo-dev 2005-08-16 15:30:57 UTC
the net file is basically bash

that means you're setting variables ... so whatever config_eth0 setting comes
last is used
Comment 2 The Master 2005-08-19 12:07:50 UTC
In that case, is it possible to have it set the IP and engage the adsl module in
one statement?
Comment 3 Roy Marples (RETIRED) gentoo-dev 2005-09-07 06:51:30 UTC
config_eth0=( "adsl" "192.168.2.2/24" )

Should do it