multinic support: Add bootdev cmdline argument
authorPhilippe Seewer <philippe.seewer@bfh.ch>
Tue, 16 Jun 2009 18:50:31 +0000 (20:50 +0200)
committerPhilippe Seewer <philippe.seewer@bfh.ch>
Wed, 17 Jun 2009 06:37:40 +0000 (08:37 +0200)
commit8ecd9d010a46999263b629b16954156e34083244
tree9380f7a6fe1f1f84fad493b9a4417adef394e8d1
parentdb8158439dac10e7462203d3de44fd794bd35e2b
multinic support: Add bootdev cmdline argument

This introduces a new cmdline argument bootdev, to support the case
where multiple nics need to be up before the netroot handler is called.
Cases involved might be bonding, iscsi multipathing, bonding, ...
This argument is required to decide which interface is the primary to
use for dhcp root-path, default gw, etc.

When multiple ip= items are present on the cmdline, the ip= parser
now enforces the presence of <dev> further demands that the new argument
bootdev contains the name of the primary interface. Configurtion if of
course still delegated to netroot but in is enhance to ensure that netroot
"waits" for all required interfaces to be up.

Example: root=dhcp ip=eth0:dhcp ip=client-ip:::netmask::eth1:off bootdev=eth0

First, the ip= cmdline parser ensures that all ip items contain a <dev> then
checks the ip items and checks as well that an ip= item for the given bootdev
was found.

When the first netroot starts, probably for eth1, it checks wheter interface
configuration for all interfaces is available. If not it exits. The second
start of netroot (eth0, which was a bit delayed because of dhcp) sees that
all interfaces are present, configures them and continues.
modules.d/40network/net-genrules.sh
modules.d/40network/netroot
modules.d/40network/parse-ip-opts.sh
modules.d/40network/write-ifcfg.sh