Diff for /elwix/config/etc/uboot/rc.init between versions 1.1.2.1 and 1.1.2.7

version 1.1.2.1, 2014/01/21 09:19:06 version 1.1.2.7, 2014/01/27 22:10:22
Line 20  export HOME PATH TERM BLOCKSIZE EDITOR PAGER Line 20  export HOME PATH TERM BLOCKSIZE EDITOR PAGER
   
 SYSPKGDIR="/var/frm"  SYSPKGDIR="/var/frm"
 BOOTLOG="/var/run/elwix.boot"  BOOTLOG="/var/run/elwix.boot"
 XML="/etc/config.xml"  
   
 MGMT_VLAN="4093"  MGMT_VLAN="4093"
 MGMT_NAME="mgmt"  MGMT_NAME="mgmt"
Line 37  boot() Line 36  boot()
         cd /elwix/altroot          cd /elwix/altroot
         pax -rw -pe var /          pax -rw -pe var /
         chmod 1777 /var/tmp          chmod 1777 /var/tmp
           mount /elwix/etc
         cd /          cd /
 }  }
   
   restore_uboot()
   {
           echo "Load 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 49  options() Line 55  options()
 passwd()  passwd()
 {  {
         echo "Syncing password database ..." | tee -a $BOOTLOG          echo "Syncing password database ..." | tee -a $BOOTLOG
        pwd_mkdb /etc/master.passwd | tee -a $BOOTLOG 1>/dev/null 2>&1#        pwd_mkdb /etc/master.passwd | tee -a $BOOTLOG 1>/dev/null 2>&1
         rm -f /etc/nologin          rm -f /etc/nologin
 }  }
   
Line 58  local() Line 64  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`
         if [ -x /usr/bin/xmler ]; then  
                 hostname `xmler -g /elwix/system/hostname $XML`  
                 domainname `xmler -g /elwix/system/domain $XML`  
         fi  
 }  }
   
 geteth()  geteth()
Line 75  geteth() Line 77  geteth()
 mgmt()  mgmt()
 {  {
         [ -r /etc/mylan ] && VDEV=`cat /etc/mylan`          [ -r /etc/mylan ] && VDEV=`cat /etc/mylan`
        if [ -x /usr/bin/get1steth ]; then        if [ -x /usr/local/bin/get1steth ]; then
                 VDEV=${VDEV:-`get1steth -g`}                  VDEV=${VDEV:-`get1steth -g`}
   
                 get1steth -v $VDEV | tee -a $BOOTLOG 1>/dev/null 2>&1                  get1steth -v $VDEV | tee -a $BOOTLOG 1>/dev/null 2>&1
Line 168  service() Line 170  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.2.1  
changed lines
  Added in v.1.1.2.7


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