xref: /titanic_41/usr/src/tools/env/gatekeeper.sh (revision 5aefb6555731130ca4fd295960123d71f2d21fe8)
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, Version 1.0 only
6# (the "License").  You may not use this file except in compliance
7# with the License.
8#
9# You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
10# or http://www.opensolaris.org/os/licensing.
11# See the License for the specific language governing permissions
12# and limitations under the License.
13#
14# When distributing Covered Code, include this CDDL HEADER in each
15# file and include the License file at usr/src/OPENSOLARIS.LICENSE.
16# If applicable, add the following below this CDDL HEADER, with the
17# fields enclosed by brackets "[]" replaced with your own identifying
18# information: Portions Copyright [yyyy] [name of copyright owner]
19#
20# CDDL HEADER END
21#
22#
23#ident	"%Z%%M%	%I%	%E% SMI"
24#
25# Copyright 2005 Sun Microsystems, Inc.  All rights reserved.
26# Use is subject to license terms.
27#
28#	Configuration variables for the runtime environment of the nightly
29# build script and other tools for construction and packaging of releases.
30# This script is sourced by 'nightly' and 'bldenv' to set up the environment
31# for the build. This example is suitable for building a gate,
32# which will contain the resulting packages and archives (builds of the gate
33# are done in children and then the resulting archives, packages, and proto
34# area are put into the parent for everyone to use). It is based off
35# the onnv release. It sets NIGHTLY_OPTIONS to make nightly do:
36#	DEBUG and non-DEBUG builds (-D)
37#	creates cpio archives for bfu (-a)
38#	creates packages for PIT/RE (-p)
39#	checks for new interfaces in libraries (-A)
40#	runs 'make check' (-C)
41#	runs lint in usr/src (-l plus the LINTDIRS variable)
42#	sends mail on completion (-m and the MAILTO variable)
43#	updates the protolist in the parent for children to compare with (-u)
44#	updates the proto area in the parent when done (-U)
45#	checks for changes in ELF runpaths (-r)
46#	checks for changes in unreferenced files (-f)
47#	use dmake instead of pmake (-d)
48#
49NIGHTLY_OPTIONS="-aADClmpuUrfd";		export NIGHTLY_OPTIONS
50
51# This is a variable for the rest of the script - GATE doesn't matter to
52# nightly itself
53GATE=onnv-gate;					export GATE
54
55# CODEMGR_WS - where is your workspace at (or what should nightly name it)
56# there is only one definition here, which assumes all the gate build machines
57# (sparc and x86) are set up the same. But remember, this is a script, so
58# you _could_ look at $MACH or `uname -n` and set these variables differently.
59CODEMGR_WS="/builds/$GATE";			export CODEMGR_WS
60
61# PARENT_WS is used to determine the parent of this workspace. This is
62# for the options that deal with the parent workspace (such as where the
63# proto area will go).
64PARENT_WS="/ws/$GATE";				export PARENT_WS
65
66# CLONE_WS is the workspace nightly should do a bringover from. Since it's
67# going to bringover usr/src, this could take a while, so we use the
68# clone instead of the gate (see the gate's README).
69CLONE_WS="/ws/onnv-clone";			export CLONE_WS
70
71# This flag controls whether to build the closed source.  If
72# undefined, nightly(1) and bldenv(1) will set it according to whether
73# the closed tree is present.
74# CLOSED_IS_PRESENT="yes";		export CLOSED_IS_PRESENT
75
76# The bringover, if any, is done as STAFFER.
77# Set STAFFER to your own login as gatekeeper or integration engineer.
78# The point is to use group "staff" and avoid referencing the parent
79# workspace as root.
80# Some scripts optionally send mail messages to MAILTO.
81#
82STAFFER=nobody;				export STAFFER
83MAILTO=$STAFFER;			export MAILTO
84
85# The project (see project(4)) under which to run this build.  If not
86# specified, the build is simply run in a new task in the current project.
87BUILD_PROJECT=;				export BUILD_PROJECT
88
89# You should not need to change the next four lines
90LOCKNAME="`basename $CODEMGR_WS`_nightly.lock"; export LOCKNAME
91ATLOG="$CODEMGR_WS/log";			export ATLOG
92LOGFILE="$ATLOG/nightly.log";			export LOGFILE
93MACH=`uname -p`;				export MACH
94
95# REF_PROTO_LIST - for comparing the list of stuff in your proto area
96# with. Generally this should be left alone, since you want to see differences
97# between todays build and yesterdays.
98#
99REF_PROTO_LIST=$PARENT_WS/usr/src/proto_list_${MACH}; export REF_PROTO_LIST
100
101# where cpio archives of the OS are placed. Usually this should be left
102# alone too. Here they don't go in the build workspace, but in the parent.
103# Since this is done as root, the build machine needs root acces to
104# the parent over NFS.
105CPIODIR="${PARENT_WS}/archives/${MACH}/nightly";	export CPIODIR
106
107#
108#	build environment variables, including version info for mcs, motd,
109# motd, uname and boot messages. Mostly you shouldn't change this except
110# when the release slips (nah) or when starting a new release.
111#
112ROOT="$CODEMGR_WS/proto/root_${MACH}";	export ROOT
113SRC="$CODEMGR_WS/usr/src";         	export SRC
114VERSION="$GATE";			export VERSION
115
116# the source product has no SCCS history, and is modified to remove source
117# that cannot be shipped. EXPORT_SRC is where the clear files are copied, then
118# modified with 'make EXPORT_SRC'.
119EXPORT_SRC="$CODEMGR_WS/export_src";    export EXPORT_SRC
120
121# CRYPT_SRC is similar to EXPORT_SRC, but after 'make CRYPT_SRC' the files in
122# xmod/cry_files are saved. They are dropped on the exportable source to create
123# the domestic build.
124CRYPT_SRC="$CODEMGR_WS/crypt_src";      export CRYPT_SRC
125
126#
127# the RELEASE and RELEASE_DATE variables are set in Makefile.master;
128# there might be special reasons to override them here, but that
129# should not be the case in general
130#
131# RELEASE="5.10.1";			export RELEASE
132# RELEASE_DATE="October 2007";		export RELEASE_DATE
133
134# proto area in parent for optionally depositing a copy of headers and
135# libraries corresponding to the protolibs target
136#
137PARENT_ROOT=$PARENT_WS/proto/root_$MACH; export PARENT_ROOT
138
139#
140#       package creation variable. This put the packages in the parent.
141#
142PKGARCHIVE="${PARENT_WS}/packages/${MACH}/nightly";	export PKGARCHIVE
143
144# we want make to do as much as it can, just in case there's more than
145# one problem. This is especially important with the gate, since multiple
146# unrelated broken things can be integrated.
147MAKEFLAGS=k;	export MAKEFLAGS
148
149# Magic variable to prevent the devpro compilers/teamware from sending
150# mail back to devpro on every use.
151UT_NO_USAGE_TRACKING="1"; export UT_NO_USAGE_TRACKING
152
153# Build tools - don't set these unless you know what you're doing.  These
154# variables allows you to get the compilers and onbld files locally or
155# through cachefs.  Set BUILD_TOOLS to pull everything from one location.
156# Alternately, you can set ONBLD_TOOLS to where you keep the contents of
157# SUNWonbld and SPRO_ROOT to where you keep the compilers.
158#
159#BUILD_TOOLS=/opt;				export BUILD_TOOLS
160#ONBLD_TOOLS=/opt/onbld;			export ONBLD_TOOLS
161#SPRO_ROOT=/opt/SUNspro;			export SPRO_ROOT
162
163# This goes along with lint - it is a series of the form "A [y|n]" which
164# means "go to directory A and run 'make lint'" Then mail me (y) the
165# difference in the lint output. 'y' should only be used if the area you're
166# linting is actually lint clean or you'll get lots of mail.
167# You shouldn't need to change this though.
168#LINTDIRS="$SRC y";	export LINTDIRS
169
170#
171# NT server for realmode builds
172#
173#NTSERVER=<hostname>;			export NTSERVER
174
175#
176# Reference to IA32 IHV workspace, proto area and packages
177#
178#IA32_IHV_WS=/ws/${GATE}-ihv;				export IA32_IHV_WS
179#IA32_IHV_ROOT=$IA32_IHV_WS/proto/root_i386;		export IA32_IHV_ROOT
180#IA32_IHV_PKGS=$IA32_IHV_WS/packages/i386/nightly;	export IA32_IHV_PKGS
181
182#
183# Reference to binary-only IA32 IHV packages (for boot floppy construction)
184#
185#IA32_IHV_BINARY_PKGS=/ws/${GATE}_ihv_bin
186#export IA32_IHV_BINARY_PKGS
187
188#
189# Boot floppy proto area
190#
191#DCB_ROOT="${CODEMGR_WS}/proto/root_dcb_${MACH}"
192#BOOTFLOPPY_ROOT="${CODEMGR_WS}/proto/root_BootFloppy_${MACH}"
193#export DCB_ROOT
194#export BOOTFLOPPY_ROOT
195
196#
197# Destination for sparc realmode package SUNWrmodu
198#
199#SPARC_RM_PKGARCHIVE="${CODEMGR_WS}/packages/sparc_realmode/nightly"
200#export SPARC_RM_PKGARCHIVE
201
202# REF_PROTO_LIST_DCB & REF_PROTO_LIST_BOOTFLOPPY
203# To compare the list of stuff in your DCB and BootFloppy proto areas
204# against. Generally this should be left alone, since you want to see
205# differences between todays build and yesterdays.
206#
207#REF_PROTO_LIST_DCB=$PARENT_WS/usr/src/realmode/proto_list_dcb_${MACH}
208#REF_PROTO_LIST_BOOTFLOPPY=$PARENT_WS/usr/src/realmode/proto_list_bootfloppy_${MACH}
209#export REF_PROTO_LIST_DCB
210#export REF_PROTO_LIST_BOOTFLOPPY
211
212# Set this flag to 'n' to disable the automatic validation of the dmake
213# version in use.  The default is to check it.
214#CHECK_DMAKE=y
215
216# Set this flag to 'n' to disable the use of 'checkpaths'.  The default,
217# if the 'N' option is not specified, is to run this test.
218#CHECK_PATHS=y
219
220# Set this flag to 'y' to enable the use of elfsigncmp to validate the
221# output of elfsign.  Doing so requires that 't' be set in NIGHTLY_OPTIONS.
222# The default is to not verify them.
223#VERIFY_ELFSIGN=n
224
225# BRINGOVER_FILES is the list of files nightly passes to bringover.
226# If not set the default is "usr", but it can be used for bringing
227# over deleted_files or other nifty directories.
228#BRINGOVER_FILES="usr deleted_files"
229