sl@0
|
1 |
@echo off
|
sl@0
|
2 |
REM wspointershifttest_run.bat
|
sl@0
|
3 |
REM Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
|
sl@0
|
4 |
REM All rights reserved.
|
sl@0
|
5 |
REM This component and the accompanying materials are made available
|
sl@0
|
6 |
REM under the terms of "Eclipse Public License v1.0"
|
sl@0
|
7 |
REM which accompanies this distribution, and is available
|
sl@0
|
8 |
REM at the URL "http://www.eclipse.org/legal/epl-v10.html".
|
sl@0
|
9 |
REM
|
sl@0
|
10 |
REM Initial Contributors:
|
sl@0
|
11 |
REM Nokia Corporation - initial contribution.
|
sl@0
|
12 |
REM
|
sl@0
|
13 |
REM Contributors:
|
sl@0
|
14 |
REM
|
sl@0
|
15 |
REM Description:
|
sl@0
|
16 |
REM
|
sl@0
|
17 |
setlocal
|
sl@0
|
18 |
|
sl@0
|
19 |
set WSINI_ARM=%EPOCROOT%epoc32\data\z\system\data\wsini.ini
|
sl@0
|
20 |
set WSINI_WINSCW=z\system\data\wsini.ini
|
sl@0
|
21 |
set WSINI_TEST_WINS=%EPOCROOT%epoc32\data\z\wstest\wsini_pointershift_wins.ini
|
sl@0
|
22 |
set WSINI_TEST_ARM=%EPOCROOT%epoc32\data\z\wstest\wsini_pointershift.ini
|
sl@0
|
23 |
set EPOCINI_TEST=%EPOCROOT%epoc32\data\z\wstest\epoc_pointershift.ini
|
sl@0
|
24 |
if not defined EPOC_INI set EPOC_INI=%EPOCROOT%epoc32\data\epoc.ini
|
sl@0
|
25 |
|
sl@0
|
26 |
if /i "%1"=="uninstall" goto :uninstall
|
sl@0
|
27 |
if /i "%1"=="install" goto :install
|
sl@0
|
28 |
|
sl@0
|
29 |
:help
|
sl@0
|
30 |
echo.
|
sl@0
|
31 |
echo Description:
|
sl@0
|
32 |
echo This script substitutes in the correct epoc ini and window server ini file for the test
|
sl@0
|
33 |
echo arg1: It takes argument "install or "uninstall"
|
sl@0
|
34 |
goto :done
|
sl@0
|
35 |
|
sl@0
|
36 |
rem *** START STANDARD FILE-REPLACEMENT FUNCTIONS ***
|
sl@0
|
37 |
:replace
|
sl@0
|
38 |
set DST=%1
|
sl@0
|
39 |
set SRC=%2
|
sl@0
|
40 |
echo INFO: Replacing %DST% with %SRC%
|
sl@0
|
41 |
copy /y %DST% %DST%.original >NUL
|
sl@0
|
42 |
if defined SRC (
|
sl@0
|
43 |
copy /y %SRC% %DST% >NUL
|
sl@0
|
44 |
if not exist %DST% echo ERROR: Copy failed!
|
sl@0
|
45 |
)
|
sl@0
|
46 |
goto :EOF
|
sl@0
|
47 |
:restore
|
sl@0
|
48 |
echo INFO: Restoring %1
|
sl@0
|
49 |
if not exist %1.original echo ERROR: %1.original does not exist
|
sl@0
|
50 |
copy /y %1.original %1 >NUL
|
sl@0
|
51 |
del %1.original >NUL
|
sl@0
|
52 |
goto :EOF
|
sl@0
|
53 |
:replace_em
|
sl@0
|
54 |
if defined EMULATOR_DATA_DIR (
|
sl@0
|
55 |
call :replace %EMULATOR_DATA_DIR%\%1 %2
|
sl@0
|
56 |
) else (
|
sl@0
|
57 |
call :replace %EPOCROOT%epoc32\release\winscw\udeb\%1 %2
|
sl@0
|
58 |
call :replace %EPOCROOT%epoc32\release\winscw\urel\%1 %2
|
sl@0
|
59 |
)
|
sl@0
|
60 |
goto :EOF
|
sl@0
|
61 |
:replace_em2
|
sl@0
|
62 |
if defined EMULATOR_DATA_DIR (
|
sl@0
|
63 |
call :replace %EMULATOR_DATA_DIR%\%1 %EMULATOR_DATA_DIR%\%2
|
sl@0
|
64 |
) else (
|
sl@0
|
65 |
call :replace %EPOCROOT%epoc32\release\winscw\udeb\%1 %EPOCROOT%epoc32\release\winscw\udeb\%2
|
sl@0
|
66 |
call :replace %EPOCROOT%epoc32\release\winscw\urel\%1 %EPOCROOT%epoc32\release\winscw\urel\%2
|
sl@0
|
67 |
)
|
sl@0
|
68 |
goto :EOF
|
sl@0
|
69 |
:restore_em
|
sl@0
|
70 |
if defined EMULATOR_DATA_DIR (
|
sl@0
|
71 |
call :restore %EMULATOR_DATA_DIR%\%1
|
sl@0
|
72 |
) else (
|
sl@0
|
73 |
call :restore %EPOCROOT%epoc32\release\winscw\udeb\%1
|
sl@0
|
74 |
call :restore %EPOCROOT%epoc32\release\winscw\urel\%1
|
sl@0
|
75 |
)
|
sl@0
|
76 |
goto :EOF
|
sl@0
|
77 |
rem *** END STANDARD FILE-REPLACEMENT FUNCTIONS ***
|
sl@0
|
78 |
|
sl@0
|
79 |
|
sl@0
|
80 |
:install
|
sl@0
|
81 |
echo Replacing files with test versions.
|
sl@0
|
82 |
call :replace %EPOC_INI% %EPOCINI_TEST%
|
sl@0
|
83 |
call :replace %WSINI_ARM% %WSINI_TEST_ARM%
|
sl@0
|
84 |
call :replace_em %WSINI_WINSCW% %WSINI_TEST_WINS%
|
sl@0
|
85 |
if defined EPOC_HOST_CPU echo HostCPU %EPOC_HOST_CPU% >> %EPOC_INI%
|
sl@0
|
86 |
goto :done
|
sl@0
|
87 |
|
sl@0
|
88 |
:uninstall
|
sl@0
|
89 |
echo Restoring files
|
sl@0
|
90 |
call :restore %EPOC_INI%
|
sl@0
|
91 |
call :restore %WSINI_ARM%
|
sl@0
|
92 |
call :restore_em %WSINI_WINSCW%
|
sl@0
|
93 |
|
sl@0
|
94 |
|
sl@0
|
95 |
:done
|
sl@0
|
96 |
endlocal
|