Branch
Hash :
1a08f436
Author :
Date :
2010-08-25T09:23:17
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 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438
#!/bin/sh
# ========== Copyright Header Begin ==========================================
#
# Hypervisor Software File: jbos_mkflash
#
# Copyright (c) 2006 Sun Microsystems, Inc. All Rights Reserved.
#
# - Do no alter or remove copyright notices
#
# - Redistribution and use of this software in source and binary forms, with
# or without modification, are permitted provided that the following
# conditions are met:
#
# - Redistribution of source code must retain the above copyright notice,
# this list of conditions and the following disclaimer.
#
# - Redistribution in binary form must reproduce the above copyright notice,
# this list of conditions and the following disclaimer in the
# documentation and/or other materials provided with the distribution.
#
# Neither the name of Sun Microsystems, Inc. or the names of contributors
# may be used to endorse or promote products derived from this software
# without specific prior written permission.
#
# This software is provided "AS IS," without a warranty of any kind.
# ALL EXPRESS OR IMPLIED CONDITIONS, REPRESENTATIONS AND WARRANTIES,
# INCLUDING ANY IMPLIED WARRANTY OF MERCHANTABILITY, FITNESS FOR A
# PARTICULAR PURPOSE OR NON-INFRINGEMENT, ARE HEREBY EXCLUDED. SUN
# MICROSYSTEMS, INC. ("SUN") AND ITS LICENSORS SHALL NOT BE LIABLE FOR
# ANY DAMAGES SUFFERED BY LICENSEE AS A RESULT OF USING, MODIFYING OR
# DISTRIBUTING THIS SOFTWARE OR ITS DERIVATIVES. IN NO EVENT WILL SUN
# OR ITS LICENSORS BE LIABLE FOR ANY LOST REVENUE, PROFIT OR DATA, OR
# FOR DIRECT, INDIRECT, SPECIAL, CONSEQUENTIAL, INCIDENTAL OR PUNITIVE
# DAMAGES, HOWEVER CAUSED AND REGARDLESS OF THE THEORY OF LIABILITY,
# ARISING OUT OF THE USE OF OR INABILITY TO USE THIS SOFTWARE, EVEN IF
# SUN HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES.
#
# You acknowledge that this software is not designed, licensed or
# intended for use in the design, construction, operation or maintenance of
# any nuclear facility.
#
# ========== Copyright Header End ============================================
#
# id: @(#)jbos_mkflash.sh 1.1 02/11/08
# purpose: Stiletto-specific version of the mkflash script.
# purpose: Builds the final script for the OS-level Flash PROM Update Utility
# copyright: Copyright 2002 Sun Microsystems, Inc. All Rights Reserved
# copyright: Use is subject to license terms.
#
say () {
echo "$*" 2>&1 > /dev/tty
}
usage() {
say "mkflash <in: gpio drvr name> <in: update prog name> <out: filename>" say " <in: drvr name 64b> [ OPS ] [ SUN4U ]"
exit 1;
}
check() {
if [ ! -f $1 ];
then
say $1: No such file or directory
exit 1
fi
}
PATH=/usr/bin:/usr/sbin:/sbin
export PATH
RMF="rm -f"
RMRF="rm -rf"
cleanup() {
$RMF $OUTPUT
}
trap cleanup 1 2 3 15
if test $# -lt 4
then
usage
fi
if test $# -gt 6
then
usage
fi
# Note that there will normally be 4 args, as shown in usage(). However,
# for Ops, a 5th arg may be passed in which, if it is "OPS", will cause
# the final script to be created such that a final reboot is not issued.
# Also the SUN4U flag may be provided, which causes the kernel nvram driver
# to be added as "eeprom" (sun4s doesn't have an eeprom node and so by
# default the eeprom driver does not get added).
INPGPIODRV=$1
INPGPIOCONF=$1.conf
PROGRAM=$2
OUTPUT=$3
INPDRVR64=$4
if test $# -eq 5
then
ARG5=$5
else
ARG5=NULL
fi
if test $# -eq 6
then
ARG6=$6
else
ARG6=NULL
fi
DRVRNAME=flashprom
DRV=/kernel/drv/$DRVRNAME
if [ $ARG5 = SUN4U -0 $ARG6 = SUN4U ]
then
EDRVRNAM=eeprom
EDRV=/kernel/drv/$EDRVRNAM
fi
GPIODRVRNAME=sb_gpio
check $INPGPIODRV
check $INPGPIOCONF
check $INPDRVR64
check $PROGRAM
cat << SEND > $OUTPUT
#!/bin/sh
#
# Copyright 1995-2000,2002 Sun Microsystems, Inc.
# All Rights Reserved
#
textdom="SUNW_UXFL_DTOP"
echo ""
echo \`gettext \$textdom \\
"Flash Update 2.4: Program and system initialization in progress..."\`
SEND
if [ $ARG5 = OPS -0 $ARG6 = OPS ]
then
cat << SEND >> $OUTPUT
echo ""
echo "This version of the flash update utility is intended for"
echo "use within Sun Microsystems' Operations groups only. It"
echo "is not intended for use by other groups within Sun or by"
echo "customers external to Sun."
echo ""
SEND
fi
cat << SEND >> $OUTPUT
PATH=/usr/bin:/usr/sbin:/sbin
export PATH
XDRV=/kernel/drv
TMP=/tmp/flash-update.\$\$
if [ -w \$XDRV ]
then
DRV=\$XDRV/$DRVRNAME
if [ $ARG5 = SUN4U -0 $ARG6 = SUN4U ]
then
EDRV=\$XDRV/$EDRVRNAM
fi
else
# backup driver location is for OPS, since their systems usually run
# as clients, and thus don't have a /usr/kernel/drv.
ALTDRVPATH=/platform/sun4u/kernel/drv
if [ -w \$ALTDRVPATH ]
then
echo \`gettext \$textdom "\$XDRV does not exist or is not writable:"\`
echo \`gettext \$textdom "Driver is now located at \$ALTDRVPATH ."\`
DRV=\$ALTDRVPATH/$DRVRNAME
EDRV=\$ALTDRVPATH/$EDRVRNAM
else
echo
echo \`gettext \$textdom "Could not find a writable driver location;"\`
echo \`gettext \$textdom " \$XDRV"\`
echo \`gettext \$textdom " \$ALTDRVPATH"\`
echo \`gettext \$textdom "\(Be sure the program is run as root.\)"\`
echo
echo \`gettext \$textdom "The flash PROM update was not successful."\`
echo
exit 1
fi
fi
cleanup() {
rem_drv $DRVRNAME > /dev/null 2>&1
if [ $ARG5 = SUN4U -0 $ARG6 = SUN4U ]
then
rem_drv $EDRVRNAM > /dev/null 2>&1
$RMF /dev/eeprom
$RMF \$EDRV
fi
$RMF /dev/flashprom:?
$RMF \$DRV
$RMF \$DRV.conf
$RMF /kernel/drv/$GPIODRVRNAME.conf
$RMRF \$TMP
}
trap cleanup 1 2 3 15
mkdir -m 700 \$TMP
GPIODRV_UU=\$TMP/sb_gpio.uu
GPIOCONF_UU=\$TMP/sb_gpio_conf.uu
DRV64_UU=\$TMP/flashprom64.uu
$RMF \$GPIODRV_UU \$TMP/sb_gpio.Z \$GPIOCONF_UU
$RMF \$DRV64_UU \$TMP/flashprom64.Z
cat << END > \$DRV64_UU
SEND
$RMF \$DRV64_UU
compress -cf $INPDRVR64 | uuencode flashprom64.Z \
|sed 's/\\/\\\\/g' \
|sed 's/\$/\\$/g' \
>> $OUTPUT
cat << SEND >> $OUTPUT
END
# gpio driver (64-bit only)
cat << END >\$GPIODRV_UU
SEND
$RMF \$GPIODRV_UU
compress -cf $INPGPIODRV | uuencode sb_gpio64.Z \
|sed 's/\\/\\\\/g' \
|sed 's/\$/\\$/g' \
>> $OUTPUT
cat << SEND >> $OUTPUT
END
# gpio driver conf file
cat << END >\$GPIOCONF_UU
SEND
$RMF \$GPIOCONF_UU
compress -cf $INPGPIOCONF | uuencode sb_gpio_conf.Z \
|sed 's/\\/\\\\/g' \
|sed 's/\$/\\$/g' \
>> $OUTPUT
cat << SEND >> $OUTPUT
END
OUR_CWD=\`pwd\`
rem_drv $DRVRNAME > /dev/null 2>&1
rem_drv $GPIODRVRNAME > /dev/null 2>&1
if [ $ARG5 = SUN4U -0 $ARG6 = SUN4U ]
then
rem_drv $EDRVRNAM > /dev/null 2>&1
fi
$RMF \$DRV
if [ $ARG5 = SUN4U -0 $ARG6 = SUN4U ]
then
$RMF \$EDRV
fi
if [ -d /kernel/drv/sparcv9 ]
then
$RMF /kernel/drv/sparcv9/$DRVRNAME
$RMF /kernel/drv/sparcv9/$GPIODRVRNAME
$RMF /kernel/drv/$GPIODRVRNAME.conf
$RMF /kernel/drv/$DRVRNAME.conf
if [ $ARG5 = SUN4U -0 $ARG6 = SUN4U ]
then
$RMF /kernel/drv/sparcv9/$EDRVRNAM
fi
fi
cd \$TMP; uudecode \$GPIODRV_UU ; uncompress sb_gpio64.Z
cd \$TMP; uudecode \$GPIOCONF_UU ; uncompress sb_gpio_conf.Z
cd \$TMP; uudecode \$DRV64_UU ; uncompress flashprom64.Z
cd \$OUR_CWD
if [ -d /kernel/drv/sparcv9 ]
then
if [ $ARG5 = SUN4U -0 $ARG6 = SUN4U ]
then
cp -p \$TMP/flashprom64 /kernel/drv/sparcv9/$EDRVRNAM
fi
mv -f \$TMP/flashprom64 /kernel/drv/sparcv9/$DRVRNAME
mv -f \$TMP/sb_gpio64 /kernel/drv/sparcv9/$GPIODRVRNAME
mv -f \$TMP/sb_gpio_conf /kernel/drv/$GPIODRVRNAME.conf
else
$RMF \$TMP/flashprom64
echo \`gettext \$textdom "Flash Update 2.4: 64-bit kernel is required."\`
echo \`gettext \$textdom "The flash PROM update was not successful."\`
exit 1
fi
$RMF \$GPIODRV_UU \$TMP/sb_gpio64.Z \$DRV64_UU \$TMP/flashprom64.Z
$RMF \$GPIOCONF_UU \$TMP/sb_gpio_conf.Z
add_drv $DRVRNAME
add_drv $GPIODRVRNAME
if [ $ARG5 = SUN4U -0 $ARG6 = SUN4U ]
then
add_drv $EDRVRNAM
fi
AWKSCR=\$TMP/awk.\$$
cat <<EOF > \$AWKSCR
{
printf "rm -f /dev/flashprom:%s\n", \\\$2;
printf "ln -s %s:%s /dev/flashprom:%s\n", \\\$1, \\\$2, \\\$2;
}
EOF
AWKSCRE=\$TMP/awke.\$$
cat <<EOF > \$AWKSCRE
{
printf "rm -f /dev/eeprom\n";
printf "ln -s %s:%s /dev/eeprom\n", \\\$1, \\\$2;
}
EOF
AWKSCRG=\$TMP/awkg.\$$
cat <<EOF > \$AWKSCRG
{
printf "rm -f /dev/sb_gpio\n";
printf "ln -s %s:%s /dev/sb_gpio\n", \\\$1, \\\$2;
}
EOF
make_link() {
(
cd /devices
find ../devices -name "flashprom@*:\$1" -exec echo {} \; \
|awk -F: -f \$AWKSCR | /bin/sh
find ../devices -name "sb_gpio@*" -exec echo {} \; \
|awk -F: -f \$AWKSCRG | /bin/sh
if [ $ARG5 = SUN4U -0 $ARG6 = SUN4U ]
then
find ../devices -name "eeprom@*:\$1" -exec echo {} \; \
|awk -F: -f \$AWKSCRE | /bin/sh
fi
)
}
make_link 0
$RMF \$AWKSCR
if [ $ARG5 = SUN4U -0 $ARG6 = SUN4U ]
then
$RMF \$AWKSCRE
fi
PRG_UU=\$TMP/flash-update.uu
$RMF \$PRG_UU \$TMP/flash-update.Z
cat << END > \$PRG_UU
SEND
$RMF \$PRG_UU \$TMP/flash-update.Z
compress -cf $PROGRAM | uuencode flash-update.Z \
|sed 's/\\/\\\\/g' \
|sed 's/\$/\\$/g' \
>> $OUTPUT
cat << SEND >> $OUTPUT
END
cd \$TMP; uudecode \$PRG_UU ; uncompress flash-update.Z ; \
chmod u+x flash-update
cd \$OUR_CWD
$RMF \$PRG_UU \$TMP/flash-update.Z
\$TMP/flash-update
exitval=\$?
cleanup
if [ \$exitval -eq 25 ]
then
# Exit status to indicate that the user chose to exit without doing the
# update - this is necessary so that a reboot is not issued.
exit 0
fi
SEND
if [ $ARG5 = OPS -0 $ARG6 = OPS ]
then
#******ifthen-else-fi intentionally not indented******
# For Ops, always exit such that a reboot is never issued.
cat << SEND >> $OUTPUT
exit \$exitval
SEND
else
cat << SEND >> $OUTPUT
if [ \$exitval -ne 0 ]
then
exit \$exitval
fi
echo ""
echo \`gettext \$textdom \\
"Please wait while the system is rebooted..."\`
echo ""
/etc/shutdown -i6 -g0 -y
SEND
fi