diff options
author | stevel@tonic-gate <none@none> | 2005-06-14 00:00:00 -0700 |
---|---|---|
committer | stevel@tonic-gate <none@none> | 2005-06-14 00:00:00 -0700 |
commit | 7c478bd95313f5f23a4c958a745db2134aa03244 (patch) | |
tree | c871e58545497667cbb4b0a4f2daf204743e1fe7 /usr/src/tools/scripts/checkpaths.sh | |
download | illumos-joyent-7c478bd95313f5f23a4c958a745db2134aa03244.tar.gz |
OpenSolaris Launch
Diffstat (limited to 'usr/src/tools/scripts/checkpaths.sh')
-rw-r--r-- | usr/src/tools/scripts/checkpaths.sh | 101 |
1 files changed, 101 insertions, 0 deletions
diff --git a/usr/src/tools/scripts/checkpaths.sh b/usr/src/tools/scripts/checkpaths.sh new file mode 100644 index 0000000000..742f233fe8 --- /dev/null +++ b/usr/src/tools/scripts/checkpaths.sh @@ -0,0 +1,101 @@ +#!/bin/ksh -p +# +# CDDL HEADER START +# +# The contents of this file are subject to the terms of the +# Common Development and Distribution License, Version 1.0 only +# (the "License"). You may not use this file except in compliance +# with the License. +# +# You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE +# or http://www.opensolaris.org/os/licensing. +# See the License for the specific language governing permissions +# and limitations under the License. +# +# When distributing Covered Code, include this CDDL HEADER in each +# file and include the License file at usr/src/OPENSOLARIS.LICENSE. +# If applicable, add the following below this CDDL HEADER, with the +# fields enclosed by brackets "[]" replaced with your own identifying +# information: Portions Copyright [yyyy] [name of copyright owner] +# +# CDDL HEADER END +# +# +# Copyright 2005 Sun Microsystems, Inc. All rights reserved. +# Use is subject to license terms. +# +#ident "%Z%%M% %I% %E% SMI" + +# Quis custodiet ipsos custodies? + +if [ -z "$SRC" ]; then + SRC=$CODEMGR_WS/usr/src +fi + +if [ -z "$CODEMGR_WS" -o ! -d "$CODEMGR_WS" -o ! -d "$SRC" ]; then + echo "$0: must be run from within a workspace." + exit 1 +fi + +cd $CODEMGR_WS || exit 1 + +# Use -b to tell this script to ignore derived (built) objects. +if [ "$1" = "-b" ]; then + b_flg=y +fi + +# Not currently used; available for temporary workarounds. +args="-k NEVER_CHECK" + +# We intentionally don't depend on $MACH here, and thus no $ROOT. If +# a proto area exists, then we use it. This allows this script to be +# run against gates (which should contain both SPARC and x86 proto +# areas), build workspaces (which should contain just one proto area), +# and unbuilt workspaces (which contain no proto areas). +if [ "$b_flg" = y ]; then + rootlist= +elif [ $# -gt 0 ]; then + rootlist=$* +else + rootlist="$CODEMGR_WS/proto/root_sparc $CODEMGR_WS/proto/root_i386" +fi + +for ROOT in $rootlist +do + case "$ROOT" in + *sparc) arch=sparc;; + *i386) arch=i386;; + *) + echo "$ROOT has unknown architecture." >&2 + exit 1 + ;; + esac + if [ -d $ROOT ]; then + validate_paths '-s/\s*'$arch'$//' -e '^opt/onbld' -b $ROOT \ + $args $SRC/pkgdefs/etc/exception_list_$arch + fi +done + +# Two entries in the findunref exception_list deal with things created +# by nightly. Otherwise, this test could be run on an unmodifed (and +# unbuilt) workspace. We handle this by flagging the one that is +# present only on a built workspace (./*.out) and the one that's +# present only after a run of findunref (./*.ref) with ISUSED, and +# disabling all checks of them. The assumption is that the entries +# marked with ISUSED are always known to be good, thus the Latin quote +# at the top of the file. +if [ -r $SRC/tools/findunref/exception_list ]; then + validate_paths -k ISUSED -r -e '^\*' -b $SRC \ + $SRC/tools/findunref/exception_list +fi + +# These are straightforward. +if [ -d $SRC/xmod ]; then + validate_paths $SRC/xmod/cry_files + validate_paths -b $SRC $SRC/xmod/xmod_files +fi + +# Finally, make sure the that (req|inc).flg files are in good shape. +validate_flg + +exit 0 |