Diff for /elwix/build_fs.sh between versions 1.9.4.2 and 1.9.4.3

version 1.9.4.2, 2014/07/14 22:42:36 version 1.9.4.3, 2014/07/29 17:15:44
Line 33  fi Line 33  fi
 clean_fsdir()  clean_fsdir()
 {  {
         echo "+++ Clean ELWIX FS ..."          echo "+++ Clean ELWIX FS ..."
           chflags -Rf nosunlink $1
         rm -rf $1 $2          rm -rf $1 $2
 }  }
   
Line 73  build_fsdir() Line 74  build_fsdir()
         install -d boot;          install -d boot;
 # cf  # cf
         install -d cf;          install -d cf;
           case ${TARGET} in
                   i386)
                           # 256KB for config map
                           dd if=/dev/zero of=cf/map.cfg bs=65536 count=4
                           chflags sunlink cf/map.cfg
                           ;;
                   mips)
                           ln -fs /dev/map/cfg cf/map.cfg
                           ;;
           esac
 # etc  # etc
         install -d etc;          install -d etc;
         install -d -o 883 -g 883 etc/mqtt;          install -d -o 883 -g 883 etc/mqtt;

Removed from v.1.9.4.2  
changed lines
  Added in v.1.9.4.3


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