[BACK]Return to release.sh CVS log [TXT][DIR] Up to [local] / openbsd / update_openbsd

Diff for /openbsd/update_openbsd/release.sh between version 1.32 and 1.35

version 1.32, 2010/02/24 21:58:18 version 1.35, 2014/11/08 20:32:55
Line 1 
Line 1 
 #!/bin/sh  #!/bin/sh
 # $AFresh1: release.sh,v 1.31 2010/02/10 20:57:07 andrew Exp $  # $AFresh1: release.sh,v 1.34 2012/05/27 20:48:56 andrew Exp $
 #  #
 # Copyright (c) 2002, 2008 Steven Roberts <sroberts@fenderq.com>  # Copyright (c) 2002, 2008 Steven Roberts <sroberts@fenderq.com>
 #  #
Line 53 
Line 53 
 echo "---------- Update sources ----------"  echo "---------- Update sources ----------"
 local _d  local _d
 for _d in /usr/src "${XSRCDIR}" "${PORTSPATH}"; do  for _d in /usr/src "${XSRCDIR}" "${PORTSPATH}"; do
     if [ -d $_d ]; then      if [ -d $_d -a -e $_d/CVS ]; then
         echo [$_d] cvs update -r$TAG -Pd          R="-r$TAG"
         cd $_d &&  cvs update -r$TAG -Pd || exit 255          [ "$TAG" = "HEAD" ] && R="-A"
           echo [$_d] cvs update $R -Pd
           cd $_d &&  cvs update $R -Pd || exit 255
     fi      fi
 done  done
 }  }
Line 183 
Line 185 
 echo "  system-release   - Make and validate the system release"  echo "  system-release   - Make and validate the system release"
 echo "  xenocara         - Build and install xenocara"  echo "  xenocara         - Build and install xenocara"
 echo "  xenocara-release - Make and validate the xenocara release"  echo "  xenocara-release - Make and validate the xenocara release"
 echo "  full-release     - xenocara, xenocara-release, system, system-release"  echo "  full             - xenocara, xenocara-release, system, system-release"
 echo  echo
 }  }
   
Line 229 
Line 231 
 xenocara-release)  xenocara-release)
 make_xenocara_release  make_xenocara_release
 ;;  ;;
 full-release)  full)
 build_xenocara  build_xenocara
 make_xenocara_release  make_xenocara_release
 build_system  build_system

Legend:
Removed from v.1.32  
changed lines
  Added in v.1.35

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