I
I had to manually run the ucpld_ip batch/sh file
I tried it in this order earlier and it says it was completed but nothing changed.
Do you mean I should add this back in before the BIOS section?Code:@echo off ECHO *************************************************************************** ECHO WARNING!!! ECHO Please note that this important update will upgrade both BIOS ECHO and BMC, and will restart the system upon completion. ECHO Any previous BIOS/BMC settings and configurations will be wiped out. ECHO Please agree to proceed. ECHO *************************************************************************** CHOICE /C YNC /M "Do you agree to continue??? Yes, No, or Cancel." IF ERRORLEVEL 2 goto END IF ERRORLEVEL 3 goto END IF ERRORLEVEL 1 goto START :START set IP=%1 set USER=%2 set PASSWD=%3 REM : the following is the default BMC IP, user name and password. if "%IP%" == "" set IP=192.168.0.120 if "%USER%" == "" set USER=admin if "%PASSWD%" == "" set PASSWD=admin if exist .\winflash\ERR.LOG ( DEL .\winflash\ERR.LOG ) REM :[ BIOS ]: it is to update BIOS fw CALL .\winflash\biosfw_ip %IP% %USER% %PASSWD% @echo off REM :[ BIOS ]: it is to check update status CALL .\winflash\checkstatus BIOSINFO :END @echo on
Code:REM :[ SYS ]: it is to update system fw @echo off ECHO [ Info ]: Please wait a moment. it is getting system status. CALL .\winflash\ucpld_ip %IP% %USER% %PASSWD% @echo off REM :[ SYS ]: it is to check update status CALL .\winflash\checkstatus SYSINFO
I had to manually run the ucpld_ip batch/sh file
Code:
.\winflash\ucpld_ip %IP% %USER% %PASSWD%
[CODE]