[BACK]Return to build.sh CVS log [TXT][DIR] Up to [cvs.NetBSD.org] / src

Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.

Diff for /src/build.sh between version 1.252 and 1.253

version 1.252, 2011/12/05 23:04:39 version 1.253, 2012/01/22 03:53:32
Line 864  Usage: ${progname} [-EhnorUuxy] [-a arch
Line 864  Usage: ${progname} [-EhnorUuxy] [-a arch
                         RELEASEDIR/RELEASEMACHINEDIR/binary/syspkgs.                          RELEASEDIR/RELEASEMACHINEDIR/binary/syspkgs.
     iso-image           Create CD-ROM image in RELEASEDIR/iso.      iso-image           Create CD-ROM image in RELEASEDIR/iso.
     iso-image-source    Create CD-ROM image with source in RELEASEDIR/iso.      iso-image-source    Create CD-ROM image with source in RELEASEDIR/iso.
       live-image          Create bootable live image in
                           RELEASEDIR/RELEASEMACHINEDIR/installation/liveimage.
       install-image       Create bootable installation image in
                           RELEASEDIR/RELEASEMACHINEDIR/installation/installimage.
     params              Display various make(1) parameters.      params              Display various make(1) parameters.
   
  Options:   Options:
Line 1135  parseoptions()
Line 1139  parseoptions()
                         op=iso_image_source   # used as part of a variable name                          op=iso_image_source   # used as part of a variable name
                         ;;                          ;;
   
                   live-image)
                           op=live_image   # used as part of a variable name
                           ;;
   
                   install-image)
                           op=install_image # used as part of a variable name
                           ;;
   
                 kernel=*|releasekernel=*)                  kernel=*|releasekernel=*)
                         arg=${op#*=}                          arg=${op#*=}
                         op=${op%%=*}                          op=${op%%=*}
Line 1960  main()
Line 1972  main()
                         statusmsg "Successful make ${op}"                          statusmsg "Successful make ${op}"
                         ;;                          ;;
   
                   live-image)
                           ${runcmd} "${makewrapper}" ${parallel} ${op} ||
                               bomb "Failed to make ${op}"
                           statusmsg "Successful make ${op}"
                           ;;
   
                   install-image)
                           ${runcmd} "${makewrapper}" ${parallel} ${op} ||
                               bomb "Failed to make ${op}"
                           statusmsg "Successful make ${op}"
                           ;;
                 kernel=*)                  kernel=*)
                         arg=${op#*=}                          arg=${op#*=}
                         buildkernel "${arg}"                          buildkernel "${arg}"

Legend:
Removed from v.1.252  
changed lines
  Added in v.1.253

CVSweb <webmaster@jp.NetBSD.org>