Previous page Next page

Contents of the Upgrade Script

The following is a sample upgrade script file:

NOTE:

The filenames following the SET APPNAME command in this sample are examples only and may not match those used in production.

####################################

#Copyright Avaya 2003 #

#All rights reserved #

####################################

#check bootApp version #

####################################

IF $MODEL4 SEQ 4602 goto BOOTAPP4602
IF $MODEL4 SEQ 4606 goto BOOTAPP46XX
IF $MODEL4 SEQ 4612 goto BOOTAPP46XX
IF $MODEL4 SEQ 4620 goto BOOTAPP4620
IF $MODEL4 SEQ 4624 goto BOOTAPP46XX
goto END

# BOOTAPP4602
IF $BOOTNAME SEQ bb4602r1_61.bin goto DEF46XX
SET APPNAME bb4602r1_61.bin
goto END

# BOOTAPP4620
IF $BOOTNAME SEQ 4620COMMON.V1719 goto DEF46XX
SET APPNAME bbla20_1719.bin
goto END

# BOOTAPP46XX
IF $BOOTNAME SEQ 46XXCOMMON.V36 goto DEF46XX
IF $BOOTNAME SEQ 46XXCOMMON.V52 goto DEF46XX
IF $BOOTNAME SEQ 46XXCOMMON.V69 goto DEF46XX
SET APPNAME bbla0_69.bin
goto END

################################

#download definity bigApp #

################################

# DEF46xx
IF $MODEL4 SEQ 4602 goto DEF4602
IF $MODEL4 SEQ 4606 goto DEF4606
IF $MODEL4 SEQ 4612 goto DEF4624
IF $MODEL4 SEQ 4620 goto DEF4620

IF $MODEL4 SEQ 4624 goto DEF4624
goto END

#definity bigApp for 4602 model
# DEF4602
SET APPNAME ap4602r1_61.bin
goto END

#definity bigApp for 4606 model
# DEF4606
SET APPNAME def06r1_73.bin
goto END

#definity bigApp for 4620 model
# DEF4620
SET APPNAME def20r1_73.bin
goto END

#definity bigApp for 4612 & 4624 model
# DEF4624
SET APPNAME def24r1_73.bin
goto END

# END

#####################################

#download the 46xx Settings script #

#####################################

GET 46xxsettings.scr
GET 46xxsettings.txt


Previous page Next page