Home | History | Annotate | Download | only in env
      1 #
      2 # CDDL HEADER START
      3 #
      4 # The contents of this file are subject to the terms of the
      5 # Common Development and Distribution License (the "License").
      6 # You may not use this file except in compliance with the License.
      7 #
      8 # You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
      9 # or http://www.opensolaris.org/os/licensing.
     10 # See the License for the specific language governing permissions
     11 # and limitations under the License.
     12 #
     13 # When distributing Covered Code, include this CDDL HEADER in each
     14 # file and include the License file at usr/src/OPENSOLARIS.LICENSE.
     15 # If applicable, add the following below this CDDL HEADER, with the
     16 # fields enclosed by brackets "[]" replaced with your own identifying
     17 # information: Portions Copyright [yyyy] [name of copyright owner]
     18 #
     19 # CDDL HEADER END
     20 #
     21 # Copyright 2008 Sun Microsystems, Inc.  All rights reserved.
     22 # Use is subject to license terms.
     23 #
     24 
     25 #	Configuration variables for the runtime environment of the nightly
     26 # build script and other tools for construction and packaging of releases.
     27 # This script is sourced by 'nightly' and 'bldenv' to set up the environment
     28 # for the build. This example is suitable for building an OpenSolaris
     29 # workspace, which will contain the resulting archives. It is based
     30 # off the onnv release. It sets NIGHTLY_OPTIONS to make nightly do:
     31 #	DEBUG build only (-D, -F)
     32 #	do not run protocmp or checkpaths (-N)
     33 #	do not bringover from the parent (-n)
     34 #	creates cpio archives for bfu (-a)
     35 #	runs 'make check' (-C)
     36 #	runs lint in usr/src (-l plus the LINTDIRS variable)
     37 #	sends mail on completion (-m and the MAILTO variable)
     38 #	checks for changes in ELF runpaths (-r)
     39 #	build and use this workspace's tools in $SRC/tools (-t)
     40 #
     41 NIGHTLY_OPTIONS="-FNnaCDlmrt";		export NIGHTLY_OPTIONS
     42 
     43 # This is a variable for the rest of the script - GATE doesn't matter to
     44 # nightly itself
     45 GATE=testws;			export GATE
     46 
     47 # CODEMGR_WS - where is your workspace at (or what should nightly name it)
     48 CODEMGR_WS="/export/$GATE";			export CODEMGR_WS
     49 
     50 # Location of encumbered binaries.
     51 ON_CLOSED_BINS="$CODEMGR_WS/closed";		export ON_CLOSED_BINS
     52 
     53 # This flag controls whether to build the closed source.  If
     54 # undefined, nightly(1) and bldenv(1) will set it according to whether
     55 # the closed source tree is present.  CLOSED_IS_PRESENT="no" means not
     56 # building the closed sources.
     57 # CLOSED_IS_PRESENT="no";		export CLOSED_IS_PRESENT
     58 
     59 # Maximum number of dmake jobs.  The recommended number is 2 + (2 *
     60 # NCPUS), where NCPUS is the number of CPUs on your build system.
     61 maxjobs() {
     62 	ncpu=`/usr/sbin/psrinfo -p`
     63 	expr $ncpu \* 2 + 2
     64 }
     65 DMAKE_MAX_JOBS=`maxjobs`;			export DMAKE_MAX_JOBS
     66 
     67 # path to onbld tool binaries
     68 ONBLD_BIN="/opt/onbld/bin"
     69 
     70 # used by bfu.
     71 FASTFS=$ONBLD_BIN/`uname -p`/fastfs;		export FASTFS
     72 BFULD=$ONBLD_BIN/`uname -p`/bfuld;		export BFULD
     73 GZIPBIN=/usr/bin/gzip;				export GZIPBIN
     74 ACR=$ONBLD_BIN/acr;				export ACR
     75 
     76 # PARENT_WS is used to determine the parent of this workspace. This is
     77 # for the options that deal with the parent workspace (such as where the
     78 # proto area will go).
     79 PARENT_WS="";			export PARENT_WS
     80 
     81 # CLONE_WS is the workspace nightly should do a bringover from.
     82 CLONE_WS="ssh://anon (at] hg.opensolaris.org//hg/onnv/onnv-gate"
     83 export CLONE_WS
     84 
     85 # The bringover, if any, is done as STAFFER.
     86 # Set STAFFER to your own login as gatekeeper or developer
     87 # The point is to use group "staff" and avoid referencing the parent
     88 # workspace as root.
     89 # Some scripts optionally send mail messages to MAILTO.
     90 #
     91 STAFFER=nobody;				export STAFFER
     92 MAILTO=$STAFFER;			export MAILTO
     93 
     94 # The project (see project(4)) under which to run this build.  If not
     95 # specified, the build is simply run in a new task in the current project.
     96 BUILD_PROJECT=;				export BUILD_PROJECT
     97 
     98 # You should not need to change the next four lines
     99 LOCKNAME="`basename $CODEMGR_WS`_nightly.lock"; export LOCKNAME
    100 ATLOG="$CODEMGR_WS/log";			export ATLOG
    101 LOGFILE="$ATLOG/nightly.log";			export LOGFILE
    102 MACH=`uname -p`;				export MACH
    103 
    104 # REF_PROTO_LIST - for comparing the list of stuff in your proto area
    105 # with. Generally this should be left alone, since you want to see differences
    106 # from your parent (the gate).
    107 #
    108 REF_PROTO_LIST=$PARENT_WS/usr/src/proto_list_${MACH}; export REF_PROTO_LIST
    109 
    110 # where cpio archives of the OS are placed. Usually this should be left
    111 # alone too.
    112 CPIODIR="${CODEMGR_WS}/archives/${MACH}/nightly";	export CPIODIR
    113 
    114 #
    115 #	build environment variables, including version info for mcs, motd,
    116 # motd, uname and boot messages. Mostly you shouldn't change this except
    117 # when the release slips (nah) or you move an environment file to a new
    118 # release
    119 #
    120 ROOT="$CODEMGR_WS/proto/root_${MACH}";	export ROOT
    121 SRC="$CODEMGR_WS/usr/src";         	export SRC
    122 VERSION="$GATE";			export VERSION
    123 
    124 #
    125 # the RELEASE and RELEASE_DATE variables are set in Makefile.master;
    126 # there might be special reasons to override them here, but that
    127 # should not be the case in general
    128 #
    129 # RELEASE="5.11";			export RELEASE
    130 # RELEASE_DATE="October 2007";		export RELEASE_DATE
    131 
    132 # proto area in parent for optionally depositing a copy of headers and
    133 # libraries corresponding to the protolibs target
    134 # not applicable given the NIGHTLY_OPTIONS
    135 #
    136 PARENT_ROOT=$PARENT_WS/proto/root_$MACH; export PARENT_ROOT
    137 
    138 #
    139 #       package creation variable. you probably shouldn't change this either.
    140 #
    141 PKGARCHIVE="${CODEMGR_WS}/packages/${MACH}/nightly";	export PKGARCHIVE
    142 
    143 # we want make to do as much as it can, just in case there's more than
    144 # one problem.
    145 MAKEFLAGS=k;	export MAKEFLAGS
    146 
    147 # Magic variable to prevent the devpro compilers/teamware from sending
    148 # mail back to devpro on every use.
    149 UT_NO_USAGE_TRACKING="1"; export UT_NO_USAGE_TRACKING
    150 
    151 # Build tools - don't change these unless you know what you're doing.  These
    152 # variables allows you to get the compilers and onbld files locally or
    153 # through cachefs.  Set BUILD_TOOLS to pull everything from one location.
    154 # Alternately, you can set ONBLD_TOOLS to where you keep the contents of
    155 # SUNWonbld and SPRO_ROOT to where you keep the compilers.  SPRO_VROOT
    156 # exists to make it easier to test new versions of the compiler.
    157 BUILD_TOOLS=/opt;				export BUILD_TOOLS
    158 #ONBLD_TOOLS=/opt/onbld;			export ONBLD_TOOLS
    159 SPRO_ROOT=/opt/SUNWspro;			export SPRO_ROOT
    160 SPRO_VROOT=$SPRO_ROOT;				export SPRO_VROOT
    161 
    162 # This goes along with lint - it is a series of the form "A [y|n]" which
    163 # means "go to directory A and run 'make lint'" Then mail me (y) the
    164 # difference in the lint output. 'y' should only be used if the area you're
    165 # linting is actually lint clean or you'll get lots of mail.
    166 # You shouldn't need to change this though.
    167 #LINTDIRS="$SRC y";	export LINTDIRS
    168 
    169 # Set this flag to 'n' to disable the automatic validation of the dmake
    170 # version in use.  The default is to check it.
    171 #CHECK_DMAKE=y
    172 
    173 # Set this flag to 'n' to disable the use of 'checkpaths'.  The default,
    174 # if the 'N' option is not specified, is to run this test.
    175 #CHECK_PATHS=y
    176 
    177 # BRINGOVER_FILES is the list of files nightly passes to bringover.
    178 # If not set the default is "usr", but it can be used for bringing
    179 # over deleted_files or other nifty directories.
    180 #BRINGOVER_FILES="usr deleted_files"
    181 
    182 # POST_NIGHTLY can be any command to be run at the end of nightly.  See
    183 # nightly(1) for interactions between environment variables and this command.
    184 #POST_NIGHTLY=
    185