X-Git-Url: https://git.grml.org/?a=blobdiff_plain;f=linuxrc;h=09e05fff6536646b3be999951484d73ddface251;hb=1a55d5f09ec3b8eb8222634dc41b529a89079b1a;hp=d145c92312fb08180f0860bbf39d3e93ec68b165;hpb=941a09ddcea97e62bb737c0a3c570eebbb441081;p=grml-terminalserver.git diff --git a/linuxrc b/linuxrc index d145c92..09e05ff 100755 --- a/linuxrc +++ b/linuxrc @@ -392,7 +392,7 @@ if test -z "$NOUSB"; then if test -f /modules/div/usbcore.ko; then $INSMOD /modules/div/usbcore.ko >/dev/null 2>&1 FOUNDUSB="" - for i in $USB2 uhci-hcd.ko ohci-hcd.ko ; do + for i in $USB2 uhci-hcd.ko ohci-hcd.ko usbhid.ko ; do test -f /modules/div/$i && $INSMOD /modules/div/$i >/dev/null 2>&1 && FOUNDUSB="yes" done if test -n "$FOUNDUSB"; then @@ -526,7 +526,7 @@ if [ -n "$NFS" ]; then KERNELVER=`uname -r` for mod in `find /lib/modules/$KERNELVER/kernel/drivers/net/ -name \*.ko` ; do - echo `basename $mod | tr -d \.ko` >> /modules.load + echo `basename $mod | sed -e 's/\.ko$//'` >> /modules.load done modules_to_load=`cat /modules.load | xargs` @@ -549,10 +549,17 @@ if [ -n "$NFS" ]; then # loading additional modules modLoad sunrpc lockd af_packet nfs - log_begin_msg "Requesting network configuration using udhcp:" ; echo - /static/udhcpc --foreground --quit --script=/static/udhcp-config.sh - #echo "press to start a system shell and configure your system" - #sh + dhcp_iface_=$(getbootparam dhcp_iface) + if [ -z "$dhcp_iface_" ]; then + dhcp_iface_=`ifconfig -a | grep '^eth' | sed 's/ .*//'` + fi + + for INTERFACE in $dhcp_iface_ ; do + log_begin_msg "Requesting network configuration using udhcp for ${INTERFACE}:" ; echo + /static/timeout 10 /static/udhcpc --interface="${INTERFACE}" --foreground --quit --script=/static/udhcp-config.sh + # echo "press to start a system shell and configure your system" + # sh + done # recreate the old dir structures rdir @@ -881,6 +888,10 @@ mkdir -p /UNIONFS if test -n "$UNIONFS" && /bin/mount -t unionfs -o noatime${SECURE},dirs=/ramdisk=rw:/GRML=ro /UNIONFS /UNIONFS; then # We now have unionfs, copy some data from the initial ramdisk first cp -a /etc/fstab /etc/auto.mnt /etc/filesystems /etc/mtab /UNIONFS/etc/ + # disable resolvconf on the terminalserver client + rm /UNIONFS/etc/resolv.conf + cp -a /etc/resolv.conf /UNIONFS/etc + echo REPORT_ABSENT_SYMLINK=no >> /UNIONFS/etc/default/resolvconf for i in bin boot etc sbin var lib opt root usr; do # Move directories to unionfs if test -d /$i; then mv /$i /$i.old && \