summaryrefslogtreecommitdiffstats
path: root/env.bash
blob: e3d4bebc29deadb5ea6f8839ecefbd75e50c925e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
# IBM_PROLOG_BEGIN_TAG
# This is an automatically generated prolog.
#
# $Source: env.bash $
#
# OpenPOWER HCODE Project
#
# COPYRIGHT 2015,2018
# [+] International Business Machines Corp.
#
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
#     http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
# implied. See the License for the specific language governing
# permissions and limitations under the License.
#
# IBM_PROLOG_END_TAG

ROOTDIR=.

if [ -e ./customrc ]; then
    source ./customrc
fi

# Setup some global variables
export PROJECT_NAME=HCODE
export PROJECT_ROOT=$ROOTDIR
export TOOLSDIR=$PROJECT_ROOT/tools
export PERLMODULES=$TOOLSDIR/perl.modules
export HOOKSDIR=$PROJECT_ROOT/.git/hooks
export EKBHOOKSDIR=$TOOLSDIR/hooks
export EKBENVDIR=$TOOLSDIR/envsetup

export UNAME=`uname -s`

if [ "${OPENPOWER_BUILD}" = "" ]; then

export CTEPATH=/afs/awd.austin.ibm.com/projects/cte

if [ "$UNAME" == 'AIX' ]
then
    export PATH=/opt/xsite/contrib/bin/:$PATH
fi

# Copyright license file for project
export LICENSE=$PROJECT_ROOT/LICENSE_PROLOG

# Update PATH
export PATH=${PATH}:$TOOLSDIR:"$TOOLSDIR/test"


# make sure ECMD_RELEASE is set
if [ -z "${ECMD_RELEASE}" ]; then
    export ECMD_RELEASE=ver-14-7
fi
ECMD_LIB_PATH=${CTEPATH}/tools/ecmd/${ECMD_RELEASE}/x86_64/lib

PPE_LIB_PATH=${CTEPATH}/tools/ppetools/prod/lib

# setup the ld library path
if [ -n "${LD_LIBRARY_PATH}" ]; then
    export LD_LIBRARY_PATH=$LD_LIBRARY_PATH:${ECMD_LIB_PATH}:${PPE_LIB_PATH}
else
    export LD_LIBRARY_PATH=${ECMD_LIB_PATH}:${PPE_LIB_PATH}
fi


if [ -n "${SANDBOXROOT}" ]; then
    if [ -n "${SANDBOXNAME}" ]; then
        export SANDBOXBASE="${SANDBOXROOT}/${SANDBOXNAME}"
    fi
fi

fi
## Search and set gerrit host
# Gerrit host name should be in .ssh/config file
# Example:
# Host gerrit-server
#     Hostname gfw160.aus.stglabs.ibm.com
#     Port 29418
#     AFSTokenPassing no
if [ -e $HOME/.ssh/config ]; then
if [ -e $EKBENVDIR/gerrit-hostname ]; then
    echo "Searching for Gerrit Host..."
    eval $($EKBENVDIR/gerrit-hostname) || exit -1
fi
fi

##  run setupgithooks.pl
if [ -e $HOOKSDIR ]; then
if [ -e $EKBENVDIR/setupgithooks ]; then
    $EKBENVDIR/setupgithooks || exit -1
fi
fi
OpenPOWER on IntegriCloud