Diff for /elwix/config/etc/uboot/rc.d/015.bridge.stop between versions 1.1 and 1.2

version 1.1, 2014/01/23 09:34:55 version 1.2, 2014/09/15 19:06:52
Line 0 Line 1
   #!/bin/sh
   
   IFACE="bridge0"
   
   BRIDGED="fxp0 rl0 wlan0"
   STP="fxp0 rl0"
   
   IP=""
   
   echo "Config Bridge interface $IFACE ..."
   
   ifconfig $IFACE create
   
   for i in $BRIDGED; do
           ifconfig $IFACE addm $i
   done
   for i in $STP; do
           ifconfig $IFACE stp $i
   done
   
   ifconfig $IFACE inet $IP up

Removed from v.1.1  
changed lines
  Added in v.1.2


FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>