-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathkitPrep.sh
More file actions
executable file
·392 lines (288 loc) · 7.97 KB
/
kitPrep.sh
File metadata and controls
executable file
·392 lines (288 loc) · 7.97 KB
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
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
#!/bin/ksh
#
# RCS Revision: $Id: kitPrep.sh,v 1.1 1999/11/15 00:25:55 mohsen Exp $
#
#
# Description:
# Sample File for a do-some-stuff script
#
# Example:
#
# For WIN95/WINNT
# ./doSomeStuff.sh -f os-winnt.sh -f win32.sh
#
# For WINCE
# doSomeStuff.sh -f os-wince -f cpu-mips -f win32
#
#
#
#
# Author: Mohsen Banan.
#
#
#set -v
. ${CURENVBASE}/tools/ocp-lib.sh
#
# DEFAULTS
#
doAction="pre"
doActionValidList="pre install"
runOSValidList="SunOS Windows_NT"
#runOSValidList="Windows_NT"
#
# DEFAULTS
#
usage() {
printf >&2 "Usage: $0 [ -T traceLevel ] [ -u ] [-f flavor] [-s status] [-a arch]\n"
printf >&2 "Usage: flavor is one of: ${targetProdFlavorValidList}\n"
printf >&2 "Usage: status is one of: ${targetProdStatusValidList}\n"
printf >&2 "Usage: arch is one of: ${targetArchTypeValidList}\n"
exit 1
}
systemName=`uname -n`
devlOsType=`uname -s`
###
#PATH=/usr/sbin:/usr/bin:/sbin
# Get options (defaults immediately below):
badUsage=
traceLevel=
targetConfigFiles=""
TM_trace 9 $*
while getopts d:f:T:u? c
do
case $c in
T)
case $OPTARG in
*[!0-9]* )
echo "$0: -T requires a numeric option"
badUsage=TRUE
;;
[0-9]* )
traceLevel=$OPTARG
;;
esac
;;
f)
targetConfigFiles="${targetConfigFiles} ${OPTARG}"
;;
d)
doAction="${OPTARG}"
;;
u | \?)
badUsage=TRUE
;;
esac
done
if [ "${targetConfigFiles}" != "" ]
then
for i in ${targetConfigFiles}
do
if test -f "$i"
then
. $i
elif test -f "${CURENVBASE}/tools/targets/$i"
then
. ${CURENVBASE}/tools/targets/$i
elif test -f "${CURENVBASE}/tools/targets/$i.sh"
then
. ${CURENVBASE}/tools/targets/$i.sh
else
echo "No such flavor or file"
exit 1
fi
done
else
. ${CURENVBASE}/tools/target.sh
fi
targetConfigCmd=""
for i in ${targetConfigFiles}
do
targetConfigCmd="${targetConfigCmd} -f ${i}"
done
G_validateOption ${targetProdFlavor} "${targetProdFlavorValidList}"
G_validateOption ${targetProdStatus} "${targetProdStatusValidList}"
G_validateOption ${targetArchType} "${targetArchTypeValidList}"
G_validateRunOS "${runOSValidList}"
if [ ${badUsage} ]
then
usage
exit 1
fi
shift `expr $OPTIND - 1`
#
# Now that we have all the parameters, get the job done.
#
distBaseDir="${CURENVBASE}/install/wce/dist"
safeCopyFile()
{
# $1=srcAbsolutePath and $2=dstDirectory
if [ -f ${1} ] ; then
cp -p -v ${1} ${2}/`basename ${1}`.${targetArchType}
else
print -r -- Skipping $1
fi
}
logActivitySeperator()
{
print -r -- ""
print -r -- "-------------------------------------------------------"
}
getRelInfo()
{
print -r -- "Getting Relevant Information From releaseNotes"
RELID_extractInfo ${targetReleaseNotesFile}
. ${CURENVBASE}/tools/target.sh
# case ${targetProdStatus} in
# 'beta')
#
# ;;
# 'rel')
# EH_problem "NOTYET"
# ;;
# *)
# EH_problem "Unknown: ${i}"
# exit 1
# ;;
# esac
LOG_message " RELID_PROD_NAME=${RELID_PROD_NAME}"
LOG_message " RELID_REVNUM=${RELID_REVNUM}"
LOG_message " RELID_Rel_Date=${RELID_REL_DATE}"
LOG_message " RELID_CVS_Tag=${RELID_CVS_TAG}"
LOG_message " RELID_BUILD_DATE=${RELID_BUILD_DATE}"
LOG_message " RELID_BUILD_USER=${RELID_BUILD_USER}"
LOG_message " RELID_BUILD_HOST=${RELID_BUILD_HOST}"
LOG_message " RELID_BUILD_DIR=`DOS_toFrontSlash ${CURENVBASE}`"
}
makeTarFiles()
{
print -r -- "Putting the Distribution Disk in a tar File"
#tarFileName=${RELID_PROD_NAME}-${RELID_REVNUM}-wce-${targetArchType}.tar
tarFileName=${targetDistFileBase}-${targetProdStatus}-${RELID_REVNUM}-wce-${targetArchType}.tar
cd ${distBaseDir}
tar cf ${tarFileName} ${RELID_PROD_NAME}-${RELID_REVNUM}-wce-${targetArchType}
ls -l ${tarFileName}
tar tvf ${tarFileName}
#rm -r -f ${tarFileName}
}
ETWP_putDocsOnFtpSite()
{
TM_trace 9 ""
mkdir -p ${targetFtpInstallDir}
cd ${CURENVBASE}
cp ./doc/etwp-wce/UserGuide.ps ${targetFtpInstallDir}/Neda-ETWP-wce-UserGuide.ps
cp ./doc/etwp-wce/UserGuide.pdf ${targetFtpInstallDir}/Neda-ETWP-wce-UserGuide.pdf
cp ./doc/etwp-wce/Neda-ETWP-wce-UserGuide.info ${targetFtpInstallDir}/Neda-ETWP-wce-UserGuide.info
cp ./doc/etwp-wce/readme.tty ${targetFtpInstallDir}/Neda-ETWP-wce-readme.tty
cp ./doc/etwp-wce/readme.ps ${targetFtpInstallDir}/Neda-ETWP-wce-readme.ps
cp ./doc/etwp-wce/readme.pdf ${targetFtpInstallDir}/Neda-ETWP-wce-readme.pdf
cp ./doc/etwp-wce/announce.tty ${targetFtpInstallDir}/Neda-ETWP-wce-announce.tty
cp ./doc/etwp-wce/announce.ps ${targetFtpInstallDir}/Neda-ETWP-wce-announce.ps
cp ./doc/etwp-wce/announce.pdf ${targetFtpInstallDir}/Neda-ETWP-wce-announce.pdf
# NOTYET License
}
ETWP_putRelNotesOnFtpSite()
{
TM_trace 9 ""
mkdir -p ${targetFtpInstallDir}
cd ${CURENVBASE}
specificProductRelNotesBase=${targetProdName}-${targetOS}-${targetProdStatus}
cp ./relnotes/${specificProductRelNotesBase}.tty ${targetFtpInstallDir}/Neda-${targetProdName}-${targetOS}-ReleaseNotes.tty
cp ./relnotes/${specificProductRelNotesBase}.ps ${targetFtpInstallDir}/Neda-${targetProdName}-${targetOS}-ReleaseNotes.ps
cp ./relnotes/${specificProductRelNotesBase}.pdf ${targetFtpInstallDir}/Neda-${targetProdName}-${targetOS}-ReleaseNotes.pdf
}
ETWP_putSoftwareOnFtpSite()
{
TM_trace 9 ""
mkdir -p ${targetFtpInstallDir}
cd ${CURENVBASE}
exeZipFileNameSh3=${targetDistFileBase}-${targetProdStatus}-${RELID_REVNUM}-wce-sh3.exe
exeZipFileNameMips=${targetDistFileBase}-${targetProdStatus}-${RELID_REVNUM}-wce-mips.exe
tarFileNameSh3=${targetDistFileBase}-${targetProdStatus}-${RELID_REVNUM}-wce-sh3.tar
tarFileNameMips=${targetDistFileBase}-${targetProdStatus}-${RELID_REVNUM}-wce-mips.tar
cp ./install/wce/dist/${exeZipFileNameSh3} ${targetFtpInstallDir}
ls -l ${targetFtpInstallDir}/${exeZipFileNameSh3}
cp ./install/wce/dist/${exeZipFileNameMips} ${targetFtpInstallDir}
ls -l ${targetFtpInstallDir}/${exeZipFileNameMips}
cp ./install/wce/dist/${tarFileNameSh3} ${targetFtpInstallDir}
ls -l ${targetFtpInstallDir}/${tarFileNameSh3}
cp ./install/wce/dist/${tarFileNameMips} ${targetFtpInstallDir}
ls -l ${targetFtpInstallDir}/${tarFileNameMips}
}
ETWP_putAnnouncementOnTheWeb()
{
logActivitySeperator
TM_trace 9 ""
echo "ETWP_putAnnouncementOnTheWeb HTML files going to: ${targetWebInstallDir}"
mkdir -p ${targetWebInstallDir}/announce
cd ${CURENVBASE}/doc/etwp-wce/announce
cp * ${targetWebInstallDir}/announce
}
ETWP_putUserGuideOnTheWeb()
{
logActivitySeperator
TM_trace 9 ""
echo "ETWP_putUserGuideOnTheWeb HTML files going to: ${targetWebInstallDir}"
mkdir -p ${targetWebInstallDir}/UserGuide
cd ${CURENVBASE}
cd ./doc/etwp-wce/html
cp * ${targetWebInstallDir}/UserGuide
}
ETWP_putProductsSegmentOnTheWeb()
{
productsSegmentDest=/usr/public/doc/web/htdocs/products.html
logActivitySeperator
TM_trace 9 ""
echo "ETWP_putUserGuideOnTheWeb HTML files going to: ${productsSegmentDest}"
cd ${CURENVBASE}
cp ./doc/etwp-wce/websegment/websegment.html ${productsSegmentDest}
}
buildReleaseNotes () {
cd ${CURENVBASE}/relnotes
./buildAll.sh
}
buildDocumentation () {
cd ${CURENVBASE}/doc/etwp-wce
./buildAll.sh
}
doPreBuild () {
# Give The user a chance to verify that
# the target.sh file is the right one.
buildDocumentation
buildReleaseNotes
echo "Pre Build Activities Completed"
echo "Now Build The Product"
}
doInstall () {
case ${targetDistMethod} in
'net-all')
TM_trace 9 ""
logActivitySeperator
ETWP_putDocsOnFtpSite
ETWP_putRelNotesOnFtpSite
ETWP_putUserGuideOnTheWeb
ETWP_putAnnouncementOnTheWeb
ETWP_putProductsSegmentOnTheWeb
ETWP_putSoftwareOnFtpSite
;;
'disk'|'local'|'private')
;;
*)
EH_problem "Unknown: ${targetDistMethod}"
exit 1
;;
esac
}
# Now do it all
getRelInfo
case ${doAction} in
'pre')
doPreBuild
;;
'install')
doInstall
;;
*)
EH_problem "Unknown: ${doAction}"
exit 1
;;
esac