blob: 471dd36642ec773ff814b0336f8a891cf5d05f01 (
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
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
|
#!/bin/sh
# IBM_PROLOG_BEGIN_TAG
# This is an automatically generated prolog.
#
# $Source: sb $
#
# OpenPOWER sbe Project
#
# Contributors Listed Below - COPYRIGHT 2016,2017
# [+] 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
SBE_TOOLS_PATH="src/tools/utils"
SBE_CITEST_PATH="src/test/framework"
sb_helptext()
{
echo "SBE Utility Script"
case $1 in
workon)
echo " Topic 'workon'"
echo
echo " Usage:"
echo " sb workon"
echo
echo " Sources necessary environment files for building sbe"
echo " and begins a new shell. The workon may be left via 'exit'."
echo
echo " See also:"
echo " customrc"
;;
cmvc)
echo " Topic 'Launch CMVC Operation on PPE files'"
echo
echo " Usage:"
echo " Refer : $PWD/${SBE_TOOLS_PATH}/CommitSbeImageToCMVC.py -h"
;;
prime)
echo " Topic 'Compile the PPE files on fips Sandbox'"
echo
echo " Usage:"
echo " Refer : $PWD/${SBE_TOOLS_PATH}/sbePrime.py -h"
;;
simsetup)
echo " Topic 'Patch simics action files on fips Sandbox'"
echo
echo " Usage:"
echo " Refer : $PWD/${SBE_TOOLS_PATH}/sbePrime.py -h"
;;
citest)
echo " Topic 'Run SBE CI'"
echo
echo " Usage:"
echo " sb citest"
;;
*)
echo " Usage:"
echo " sb <cmd>"
echo " sb help [<cmd>|<topic>]"
echo ""
echo " Available Commands:"
echo " workon"
echo " cmvc"
echo " ---------------------------------------------------- "
echo " # To check in SBE FW files in CMVC command options # "
echo " sb cmvc -f < feature CMVC No > -r <fips release >"
echo " sb cmvc -d < defect CMVC No > -r <fips release >"
echo " ---------------------------------------------------- "
echo ""
echo " prime"
echo ""
echo " simsetup"
echo ""
echo " citest"
echo
esac
}
sb_workon()
{
if [ -n "${SBE_INSIDE_WORKON}" ]; then
echo "Already in a workon."
exit -1
else
export SBE_INSIDE_WORKON=1
echo "Setting environment variables..."
source ./env.bash
bash
fi
}
sb_cmvc()
{
if [ -n "${SBE_INSIDE_WORKON}" ]; then
echo "Already in a workon.. Continuing"
# Launch the CMVC utility
str="'$*'"
echo "User input string : $str"
$PWD/${SBE_TOOLS_PATH}/CommitSbeImageToCMVC.py $*
else
echo "Please do workon and re launch..."
fi
}
sb_prime()
{
if [ -n "${SBE_INSIDE_WORKON}" ]; then
echo "Already in a workon.. Continuing"
str="'$*'"
echo "User input string : $str"
$PWD/${SBE_TOOLS_PATH}/sbePrime.py $*
else
echo "Please do workon and re launch..."
fi
}
sb_citest()
{
if [ -n "${SBE_INSIDE_WORKON}" ]; then
echo "Already in a workon.. Continuing"
str="'$*'"
echo "User input string : $str"
$PWD/${SBE_CITEST_PATH}/build-script $*
else
echo "Please do workon and re launch..."
fi
}
sb_simsetup()
{
if [ -n "${SBE_INSIDE_WORKON}" ]; then
echo "Already in a workon.. Continuing"
str="'$*'"
echo "User input string : $str"
$PWD/${SBE_TOOLS_PATH}/sbePrime.py -p patch
else
echo "Please do workon and re launch..."
fi
}
if [ 0 == $# ]; then
sb_helptext
exit -1
fi
FIRST_PARAM=$1
shift
case ${FIRST_PARAM} in
workon)
sb_workon $*
;;
cmvc)
sb_cmvc $*
;;
prime)
sb_prime $*
;;
simsetup)
sb_simsetup $*
;;
citest)
sb_citest $*
;;
*)
sb_helptext $*
exit -1
;;
esac
|