5 # Boot type in initramfs's config
6 bootconf
=$
(egrep '^BOOT=' /conf
/initramfs.conf |
tail -1)
8 # can be superseded by command line (used by Debian-Live's netboot for example)
9 for ARGUMENT
in ${LIVE_BOOT_CMDLINE}
13 NETBOOT
="${ARGUMENT#netboot=}"
18 if [ "$bootconf" != "BOOT=nfs" ] && [ -z "$NETBOOT" ] && [ -z "$FETCH" ] && [ -z "$FTPFS" ] && [ -z "$HTTPFS" ]
20 # Not a net boot : nothing to do
24 # we want to do some basic IP
27 # Available Ethernet interfaces ?
30 # See if we can derive the boot device
35 echo "Waiting for ethernet card(s) up... If this fails, maybe the ethernet card is not supported by the kernel `uname -r`?"
36 while [ -z "$l_interfaces" ]
38 l_interfaces
="$(cd /sys/class/net/ && ls -d eth* 2>/dev/null)"
41 if [ $
(echo $l_interfaces |
wc -w) -lt 2 ]
43 # only one interface : no choice
44 echo "DEVICE=$l_interfaces" >> /conf
/param.conf
48 # If user force to use specific device, write it
49 for ARGUMENT
in ${LIVE_BOOT_CMDLINE}
53 NETDEV
="${ARGUMENT#live-netdev=}"
54 echo "DEVICE=$NETDEV" >> /conf
/param.conf
55 echo "Found live-netdev parameter, forcing to to use network device $NETDEV."
61 l_interfaces
="$DEVICE"
67 echo -n "Looking for a connected Ethernet interface ..."
69 for interface
in $l_interfaces
71 # ATTR{carrier} is not set if this is not done
72 echo -n " $interface ?"
73 ipconfig
-c none
-d $interface -t 1 >/dev
/null
2>&1
80 for interface
in $l_interfaces
82 carrier
=$
(cat /sys
/class
/net
/$interface/carrier \
88 echo "Connected $interface found"
89 # inform initrd's init script :
90 found_eth_dev
="$found_eth_dev $interface"
94 if [ -n "$found_eth_dev" ]
96 echo "DEVICE='$found_eth_dev'" >> /conf
/param.conf