prevent ldconfig use in autoconf based packages
[openwrt/svn-archive/archive.git] / openwrt / package / base-files / default / etc / functions.sh
index 6278a0fe2886fa801f05b8c7d3880f0ae16176a6..57f2734c1c4c047312e7383b2a6e534840d91591 100755 (executable)
@@ -17,6 +17,7 @@ if_valid () (
 
       vif=$(ifconfig -a | awk '/^eth.*'$hwaddr'/ {print $1; exit}' IGNORECASE=1)
       debug "# vlan$i => $vif"
+         [ -n "$vif" ] || vif=$(ifconfig -a | awk '/^eth'${hw##et}'/ {print $1; exit}' IGNORECASE=1)
 
       $DEBUG ifconfig $vif up
       $DEBUG vconfig add $vif $i 2>&-
@@ -26,54 +27,56 @@ if_valid () (
 )
 
 do_ifup() {
-       if_proto=$(nvram get ${2}_proto)
-       if=$(nvram get ${2}_ifname)
-       [ "${if%%[0-9]}" = "ppp" ] && if=$(nvram get ${2}_device)
+       ifproto="$1"
+       iftype="$2"
+       if="$(nvram get ${iftype}_ifname)"
+       [ "${if%%[0-9]}" = "ppp" ] && if="$(nvram get ${iftype}_device)"
        
        pidfile=/var/run/${if}.pid
        [ -f $pidfile ] && $DEBUG kill $(cat $pidfile)
 
-       case "$1" in
+       case "$ifproto" in
        static)
-               ip=$(nvram get ${2}_ipaddr)
-               netmask=$(nvram get ${2}_netmask)
-               gateway=$(nvram get ${2}_gateway)
-               mtu=$(nvram get ${2}_mtu)
-               static_route=$(nvram get ${2}_static_route)
+               ip=$(nvram get ${iftype}_ipaddr)
+               netmask=$(nvram get ${iftype}_netmask)
+               gateway=$(nvram get ${iftype}_gateway)
+               mtu=$(nvram get ${iftype}_mtu)
+               static_route=$(nvram get ${iftype}_static_route)
 
                $DEBUG ifconfig $if $ip ${netmask:+netmask $netmask} ${mtu:+mtu $(($mtu))} broadcast + up
                ${gateway:+$DEBUG route add default gw $gateway}
 
+               [ -f /tmp/resolv.conf.auto ] || {
+                       debug "# --- creating /tmp/resolv.conf.auto ---"
+                       for dns in $(nvram get ${iftype}_dns); do
+                               echo "nameserver $dns" >> /tmp/resolv.conf.auto
+                       done
+               }
+               
                [ -n "$static_route" ] && {
                        for route in $static_route; do {
                        eval "set $(echo $route | sed 's/:/ /g')"
-                               if [ "$2" = "255.255.255.255" ]; then
+                               if [ "$2" = "0.0.0.0" ]; then
                                        opt="-host"
                                fi
                                $DEBUG route add ${opt:-"-net"} $1 netmask $2 gw $3 metric $4 
+                               unset opt
                        } done
                }
 
-               [ -f /tmp/resolv.conf.auto ] || {
-                       debug "# --- creating /tmp/resolv.conf.auto ---"
-                       for dns in $(nvram get ${2}_dns); do
-                               echo "nameserver $dns" >> /tmp/resolv.conf.auto
-                       done
-               }
-               
-               env -i ACTION="ifup" INTERFACE="${2}" PROTO=static /sbin/hotplug "iface" &
+               env -i ACTION="ifup" INTERFACE="${iftype}" PROTO=static /sbin/hotplug "iface" &
        ;;
        dhcp*)
-               DHCP_IP=$(nvram get ${2}_ipaddr)
-               DHCP_NETMASK=$(nvram get ${2}_netmask)
-               mtu=$(nvram get ${2}_mtu)
+               DHCP_IP=$(nvram get ${iftype}_ipaddr)
+               DHCP_NETMASK=$(nvram get ${iftype}_netmask)
+               mtu=$(nvram get ${iftype}_mtu)
                $DEBUG ifconfig $if $DHCP_IP ${DHCP_NETMASK:+netmask $DHCP_NETMASK} ${mtu:+mtu $(($mtu))} broadcast + up
 
                DHCP_ARGS="-i $if ${DHCP_IP:+-r $DHCP_IP} -b -p $pidfile -t 0"
-               DHCP_HOSTNAME=$(nvram get ${2}_hostname)
+               DHCP_HOSTNAME=$(nvram get ${iftype}_hostname)
                DHCP_HOSTNAME=${DHCP_HOSTNAME%%.*}
                [ -z $DHCP_HOSTNAME ] || DHCP_ARGS="$DHCP_ARGS -H $DHCP_HOSTNAME"
-               [ "$if_proto" = "pptp" ] && DHCP_ARGS="$DHCP_ARGS -n -q" || DHCP_ARGS="$DHCP_ARGS -R &"
+               [ "$(nvram get ${iftype}_proto)" = "pptp" ] && DHCP_ARGS="$DHCP_ARGS -n -q" || DHCP_ARGS="$DHCP_ARGS -R &"
                [ -r $pidfile ] && oldpid=$(cat $pidfile 2>&-)
                ${DEBUG:-eval} "udhcpc $DHCP_ARGS"
                [ -n "$oldpid" ] && pidof udhcpc | grep "$oldpid" >&- 2>&- && {
@@ -85,8 +88,8 @@ do_ifup() {
        none|"")
        ;;
        *)
-               [ -x "/sbin/ifup.$1" ] && { $DEBUG /sbin/ifup.$1 ${2}; exit; }
-               echo "### ifup ${2}: ignored ${2}_proto=\"$1\" (not supported)"
+               [ -x "/sbin/ifup.$ifproto" ] && { $DEBUG /sbin/ifup.$ifproto ${iftype}; exit; }
+               echo "### ifup ${iftype}: ignored ${iftype}_proto=\"$ifproto\" (not supported)"
        ;;
        esac
 }