|
|
|
#!/bin/sh
|
|
|
|
|
|
|
|
# NFS root might have reached here before /tmp/net.ifaces was written
|
|
|
|
udevadm settle --timeout=30
|
|
|
|
# Don't write anything if we don't know our bootdev
|
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.
16 years ago
|
|
|
[ -f /tmp/net.ifaces ] || return 1
|
|
|
|
|
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.
16 years ago
|
|
|
read IFACES < /tmp/net.ifaces
|
|
|
|
|
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.
16 years ago
|
|
|
for netif in $IFACES ; do
|
|
|
|
mkdir -p /tmp/ifcfg/
|
|
|
|
# bridge?
|
|
|
|
unset bridge
|
|
|
|
if [ "$netif" = "$bridgename" ]; then
|
|
|
|
bridge=yes
|
|
|
|
fi
|
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.
16 years ago
|
|
|
cat /sys/class/net/$netif/address > /tmp/net.$netif.hwaddr
|
|
|
|
{
|
|
|
|
echo "# Generated by dracut initrd"
|
|
|
|
echo "DEVICE=$netif"
|
|
|
|
echo "ONBOOT=yes"
|
|
|
|
echo "NETBOOT=yes"
|
|
|
|
if [ -f /tmp/net.$netif.lease ]; then
|
|
|
|
strstr "$ip" '*:*:*' &&
|
|
|
|
echo "DHCPV6C=yes"
|
|
|
|
echo "BOOTPROTO=dhcp"
|
|
|
|
else
|
|
|
|
echo "BOOTPROTO=none"
|
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.
16 years ago
|
|
|
# If we've booted with static ip= lines, the override file is there
|
|
|
|
. /tmp/net.$netif.override
|
|
|
|
echo "IPADDR=$ip"
|
|
|
|
echo "NETMASK=$mask"
|
|
|
|
[ -n "$gw" ] && echo "GATEWAY=$gw"
|
|
|
|
fi
|
|
|
|
} > /tmp/ifcfg/ifcfg-$netif
|
|
|
|
|
|
|
|
# bridge needs different things written to ifcfg
|
|
|
|
if [ -z "$bridge" ]; then
|
|
|
|
# standard interface
|
|
|
|
{
|
|
|
|
echo "HWADDR=$(cat /sys/class/net/$netif/address)"
|
|
|
|
echo "TYPE=Ethernet"
|
|
|
|
echo "NAME=\"Boot Disk\""
|
|
|
|
} >> /tmp/ifcfg/ifcfg-$netif
|
|
|
|
else
|
|
|
|
# bridge
|
|
|
|
{
|
|
|
|
echo "TYPE=Bridge"
|
|
|
|
echo "NAME=\"Boot Disk\""
|
|
|
|
} >> /tmp/ifcfg/ifcfg-$netif
|
|
|
|
# write separate ifcfg file for the raw eth interface
|
|
|
|
{
|
|
|
|
echo "DEVICE=$ethname"
|
|
|
|
echo "TYPE=Ethernet"
|
|
|
|
echo "ONBOOT=yes"
|
|
|
|
echo "NETBOOT=yes"
|
|
|
|
echo "HWADDR=$(cat /sys/class/net/$ethname/address)"
|
|
|
|
echo "BRIDGE=$netif"
|
|
|
|
echo "NAME=$ethname"
|
|
|
|
} >> /tmp/ifcfg/ifcfg-$ethname
|
|
|
|
fi
|
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.
16 years ago
|
|
|
done
|
|
|
|
|
|
|
|
# Pass network opts
|
|
|
|
mkdir /dev/.initramfs/
|
|
|
|
cp /tmp/net.* /dev/.initramfs/ >/dev/null 2>&1
|
|
|
|
mkdir -p /dev/.initramfs/state/etc/sysconfig/network-scripts/
|
|
|
|
cp /tmp/net.$netif.resolv.conf /dev/.initramfs/state/etc/ >/dev/null 2>&1
|
|
|
|
echo "files /etc/sysconfig/network-scripts" > /dev/.initramfs/rwtab
|
|
|
|
cp -a /tmp/ifcfg/* /dev/.initramfs/state/etc/sysconfig/network-scripts/ >/dev/null 2>&1
|