Diff for /elwix/config/etc/default/rc.init between versions 1.1 and 1.6

version 1.1, 2011/07/05 23:43:00 version 1.6, 2017/02/13 16:52:47
Line 18  EDITOR=vi Line 18  EDITOR=vi
 PAGER=less  PAGER=less
 export HOME PATH TERM BLOCKSIZE EDITOR PAGER  export HOME PATH TERM BLOCKSIZE EDITOR PAGER
   
SYSPKGDIR="/system"SYSPKGDIR="/var/frm"
 BOOTLOG="/var/run/elwix.boot"  BOOTLOG="/var/run/elwix.boot"
 XML="/etc/config.xml"  
   
   MGMT_VLAN="4093"
   MGMT_NAME="mgmt"
   MGMT_ADDR="10.254.254.254/30"
   
 umask 022  umask 022
   
 boot()  boot()
 {  {
        echo "Check and mount filesystems ..."        echo "Loading ELWIX configz ..."
        fsck -y 1>/dev/null 2>&1 && mount -a || fsck -f -y 
 
        if [ -c /dev/ufs/fit2cf ]; then 
                echo "Check and mount if its exist fit2cf ..." 
                fsck -y -tufs /dev/ufs/fit2cf 1>/dev/null 2>&1 && mount -o ro /dev/ufs/fit2cf /elwix/cf || \ 
                        fsck -f -y -tufs /dev/ufs/fit2cf 
        fi 
 
        echo "Loading elwix firmware variables ..." 
         cd /elwix/altroot          cd /elwix/altroot
         pax -rw -pe var /          pax -rw -pe var /
         chmod 1777 /var/tmp          chmod 1777 /var/tmp
           mount -tunionfs -onoatime /var/db /elwix/etc
         cd /          cd /
 }  }
   
   restore_uboot()
   {
           echo "Restore configz from NAND ..."
           /etc/rc.cfg load /etc
   }
   
 options()  options()
 {  {
         echo "Set firmware options ..." | tee -a $BOOTLOG          echo "Set firmware options ..." | tee -a $BOOTLOG
Line 60  local() Line 61  local()
         echo "Configurate localhost ..." | tee -a $BOOTLOG          echo "Configurate localhost ..." | tee -a $BOOTLOG
         ifconfig lo0 127.0.0.1 | tee -a $BOOTLOG 1>/dev/null 2>&1          ifconfig lo0 127.0.0.1 | tee -a $BOOTLOG 1>/dev/null 2>&1
         hostname `cat /etc/myname`          hostname `cat /etc/myname`
         hostname `xmler -g /elwix/system/hostname $XML`  
         domainname `xmler -g /elwix/system/domain $XML`  
 }  }
   
 geteth()  geteth()
Line 75  geteth() Line 74  geteth()
 mgmt()  mgmt()
 {  {
         [ -r /etc/mylan ] && VDEV=`cat /etc/mylan`          [ -r /etc/mylan ] && VDEV=`cat /etc/mylan`
        VDEV=${VDEV:-`get1steth -g`}        if [ -x /usr/bin/get1steth ]; then
                 VDEV=${VDEV:-`get1steth -g`}
   
                   get1steth -v $VDEV | tee -a $BOOTLOG 1>/dev/null 2>&1
           else
                   VDEV=${VDEV:-`geteth`}
                   ifconfig $VDEV up
                   ifconfig vlan$MGMT_VLAN create vlan $MGMT_VLAN vlandev $VDEV
                   ifconfig vlan$MGMT_VLAN name $MGMT_NAME
                   ifconfig $MGMT_NAME inet $MGMT_ADDR
           fi
   
         echo "Configurete management interface to ($VDEV) ..." | tee -a $BOOTLOG          echo "Configurete management interface to ($VDEV) ..." | tee -a $BOOTLOG
         get1steth -v $VDEV | tee -a $BOOTLOG 1>/dev/null 2>&1  
 }  }
   
 syspkg()  syspkg()
Line 88  syspkg() Line 96  syspkg()
   
         echo "Mounting firmware system packages:" | tee -a $BOOTLOG          echo "Mounting firmware system packages:" | tee -a $BOOTLOG
 # Raw images  # Raw images
        for i in /elwix/cf/*-firmware; do        for i in /elwix/cf/*-pkg.frm; do
                 if [ -r $i ]; then                  if [ -r $i ]; then
                         MDDEV=$(mdconfig -a -t vnode -f $i);                          MDDEV=$(mdconfig -a -t vnode -f $i);
                         install -d $SYSPKGDIR/$MDDEV;                          install -d $SYSPKGDIR/$MDDEV;
Line 110  syspkg() Line 118  syspkg()
                 fi                  fi
         done          done
 # UZIP images  # UZIP images
        for i in /elwix/cf/*-firmware-pkg; do        for i in /elwix/cf/*-pkg.frz; do
                 if [ -r $i ]; then                  if [ -r $i ]; then
                         MDDEV=$(mdconfig -a -t vnode -f $i);                          MDDEV=$(mdconfig -a -t vnode -f $i);
                         install -d $SYSPKGDIR/$MDDEV;                          install -d $SYSPKGDIR/$MDDEV;
Line 159  service() Line 167  service()
 #  #
   
 boot  boot
   restore_uboot
 echo "elwix>>> Start system boot stage at `date`" | tee $BOOTLOG  echo "elwix>>> Start system boot stage at `date`" | tee $BOOTLOG
 options  options
 passwd  passwd

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


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