sl@0: @echo off sl@0: rem Copyright (c) 2006-2010 Nokia Corporation and/or its subsidiary(-ies). sl@0: rem All rights reserved. sl@0: rem This component and the accompanying materials are made available sl@0: rem under the terms of "Eclipse Public License v1.0" sl@0: rem which accompanies this distribution, and is available sl@0: rem at the URL "http://www.eclipse.org/legal/epl-v10.html". sl@0: rem sl@0: rem Initial Contributors: sl@0: rem Nokia Corporation - initial contribution. sl@0: rem sl@0: rem Contributors: sl@0: rem sl@0: rem Description: sl@0: rem @internalComponent - Internal Symbian sl@0: rem sl@0: rem sl@0: set nonnga=false sl@0: if not defined EPOC_INI set EPOC_INI=%EPOCROOT%epoc32\data\epoc.ini sl@0: if /i "%2"=="nonnga" set nonnga=true sl@0: if /i "%3"=="nonnga" set nonnga=true sl@0: if "%nonnga%"=="true" echo Configuring for Non-NGA sl@0: if /i "%1"=="uninstall" goto :uninstall sl@0: if /i "%2"=="changetracking" goto :install_changetracking sl@0: rem ================ install ================ sl@0: sl@0: :install sl@0: echo Replacing WSINI.INI files with test versions. sl@0: if "%EMULATOR_DATA_DIR%"=="" ( sl@0: call :doinstall %EPOCROOT%epoc32\release\winscw\udeb multiscreen %2 %3 sl@0: call :doinstall %EPOCROOT%epoc32\release\winscw\urel multiscreen %2 %3 sl@0: ) else ( sl@0: call :doinstall %EMULATOR_DATA_DIR% multiscreen %2 %3 sl@0: ) sl@0: sl@0: rem If EPOC.INI isn't already backed up then backup EPOC.INI to EPOC.INI.bak sl@0: if not exist %EPOC_INI%.bak copy /y %EPOC_INI% %EPOC_INI%.bak sl@0: sl@0: echo Editing EPOC.INI to use multiscreen. sl@0: echo. >> %EPOC_INI% sl@0: echo StartupMode ^7>> %EPOC_INI% sl@0: echo _NewScreen_ >> %EPOC_INI% sl@0: echo ScreenWidth 640 >> %EPOC_INI% sl@0: echo ScreenHeight 240 >> %EPOC_INI% sl@0: goto :EOF sl@0: sl@0: sl@0: :doinstall sl@0: rem If WSINI.INI(s) aren't already backed up then backup WSINI.INI(s) sl@0: if not exist %1\z\system\data\wsini.bak if exist %1\z\system\data\wsini.ini copy /y %1\z\system\data\wsini.ini %1\z\system\data\wsini.bak >nul sl@0: if not exist %1\z\resource\data\wsini.bak if exist %1\z\resource\data\wsini.ini copy /y %1\z\resource\data\wsini.ini %1\z\resource\data\wsini.bak >nul sl@0: sl@0: rem Back up ECONS.DLL sl@0: if exist %1\econs.dll copy /y %1\econs.dll %1\econs-temp.dll sl@0: sl@0: rem Rename WSECONS.DLL to ECONS.DLL sl@0: if exist %1\wsecons.dll copy /y %1\wsecons.dll %1\econs.dll sl@0: sl@0: rem Replace WSINI.INI with test version sl@0: if "%nonnga%"=="true" goto :doinstall_nonnga sl@0: if exist %1\z\system\data\wsini.ini copy /y %1\z\wstest\wservu_multiscreen.ini %1\z\system\data\wsini.ini sl@0: if exist %1\z\resource\data\wsini.ini copy /y %1\z\wstest\wservu_multiscreen.ini %1\z\resource\data\wsini.ini sl@0: goto :doinstall_editwsini sl@0: sl@0: :doinstall_nonnga sl@0: if exist %1\z\system\data\wsini.ini copy /y %1\z\wstest\wservu_multiscreen-nonnga.ini %1\z\system\data\wsini.ini sl@0: if exist %1\z\resource\data\wsini.ini copy /y %1\z\wstest\wservu_multiscreen-nonnga.ini %1\z\resource\data\wsini.ini sl@0: sl@0: :doinstall_editwsini sl@0: rem Edit WSINI.INI to run tests automatically/multiscreen sl@0: if exist %1\z\system\data\wsini.ini perl %1\z\wstest\wsini-writer.pl %1\z\system\data\wsini.ini %2 %3 %4 sl@0: if exist %1\z\resource\data\wsini.ini perl %1\z\wstest\wsini-writer.pl %1\z\resource\data\wsini.ini %2 %3 %4 sl@0: sl@0: goto :EOF sl@0: sl@0: rem ================ install changetracking ================ sl@0: sl@0: :install_changetracking sl@0: echo Replacing WSINI.INI files with test changetracking versions. sl@0: if "%EMULATOR_DATA_DIR%"=="" ( sl@0: call :doinstall_changetracking %EPOCROOT%epoc32\release\winscw\udeb multiscreen %2 %3 sl@0: call :doinstall_changetracking %EPOCROOT%epoc32\release\winscw\urel multiscreen %2 %3 sl@0: ) else ( sl@0: call :doinstall_changetracking %EMULATOR_DATA_DIR% multiscreen %2 %3 sl@0: ) sl@0: sl@0: rem If EPOC.INI isn't already backed up then backup EPOC.INI to EPOC.INI.bak sl@0: if not exist %EPOC_INI%.bak copy /y %EPOC_INI% %EPOC_INI%.bak >nul sl@0: sl@0: echo Editing EPOC.INI to use multiscreen. sl@0: echo. >> %EPOC_INI% sl@0: echo StartupMode ^7>> %EPOC_INI% sl@0: echo _NewScreen_ >> %EPOC_INI% sl@0: echo ScreenWidth 640 >> %EPOC_INI% sl@0: echo ScreenHeight 240 >> %EPOC_INI% sl@0: goto :EOF sl@0: sl@0: :doinstall_changetracking sl@0: sl@0: rem Back up ECONS.DLL sl@0: if exist %1\econs.dll copy /y %1\econs.dll %1\econs-temp.dll sl@0: sl@0: rem Rename WSECONS.DLL to ECONS.DLL sl@0: if exist %1\wsecons.dll copy /y %1\wsecons.dll %1\econs.dll sl@0: sl@0: rem Back up WSINI.INI sl@0: if not exist %1\z\system\data\wsini.bak if exist %1\z\system\data\wsini.ini copy /y %1\z\system\data\wsini.ini %1\z\system\data\wsini.bak >nul sl@0: if not exist %1\z\resource\data\wsini.bak if exist %1\z\resource\data\wsini.ini copy /y %1\z\resource\data\wsini.ini %1\z\resource\data\wsini.bak >nul sl@0: sl@0: rem Replace WSINI.INI with test changetracking version sl@0: if exist %1\z\system\data\wsini.ini copy /y %1\z\wstest\wservu_multiscreen_changetracking.ini %1\z\system\data\wsini.ini >nul sl@0: if exist %1\z\resource\data\wsini.ini copy /y %1\z\wstest\wservu_multiscreen_changetracking.ini %1\z\resource\data\wsini.ini >nul sl@0: sl@0: rem Edit WSINI.INI to run tests automatically/multiscreen sl@0: if exist %1\z\system\data\wsini.ini perl %1\z\wstest\wsini-writer.pl %1\z\system\data\wsini.ini %2 %3 %4 sl@0: if exist %1\z\resource\data\wsini.ini perl %1\z\wstest\wsini-writer.pl %1\z\resource\data\wsini.ini %2 %3 %4 sl@0: sl@0: goto :EOF sl@0: sl@0: rem ================ Uninstall ============== sl@0: sl@0: :uninstall sl@0: echo Restoring WSINI.INI files. sl@0: if "%EMULATOR_DATA_DIR%"=="" ( sl@0: call :douninstall %EPOCROOT%epoc32\release\winscw\udeb sl@0: call :douninstall %EPOCROOT%epoc32\release\winscw\urel sl@0: ) else ( sl@0: call :douninstall %EMULATOR_DATA_DIR% sl@0: ) sl@0: sl@0: rem If EPOC.INI was already backed up then restore EPOC.INI from EPOC.INI.bak sl@0: if exist %EPOC_INI%.bak ( sl@0: echo Restoring EPOC.INI from backup sl@0: copy /y %EPOC_INI%.bak %EPOC_INI% >nul sl@0: del /f /q %EPOC_INI%.bak >nul sl@0: ) sl@0: goto :EOF sl@0: sl@0: sl@0: :douninstall sl@0: sl@0: rem If WSINI.INI(s) were already backed up then restore WSINI.INI sl@0: if exist %1\z\system\data\wsini.bak ( sl@0: copy /y %1\z\system\data\wsini.bak %1\z\system\data\wsini.ini >nul sl@0: del /f /q %1\z\system\data\wsini.bak >nul sl@0: ) sl@0: if exist %1\z\resource\data\wsini.bak ( sl@0: copy /y %1\z\resource\data\wsini.bak %1\z\resource\data\wsini.ini >nul sl@0: del /f /q %1\z\resource\data\wsini.bak >nul sl@0: ) sl@0: sl@0: echo Restoring backedup ECONS.DLL sl@0: if exist %1\econs-temp.dll copy /y %1\econs-temp.dll %1\econs.dll sl@0: goto :EOF sl@0: