equal
deleted
inserted
replaced
|
1 @rem |
|
2 @rem Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies). |
|
3 @rem All rights reserved. |
|
4 @rem This component and the accompanying materials are made available |
|
5 @rem under the terms of the License "Eclipse Public License v1.0" |
|
6 @rem which accompanies this distribution, and is available |
|
7 @rem at the URL "http://www.eclipse.org/legal/epl-v10.html". |
|
8 @rem |
|
9 @rem Initial Contributors: |
|
10 @rem Nokia Corporation - initial contribution. |
|
11 @rem |
|
12 @rem Contributors: |
|
13 @rem |
|
14 @rem Description: |
|
15 @rem |
|
16 @echo off |
|
17 cls |
|
18 echo DO NOT RUN THIS PROGRAM - PRESS CTRL C to Cancel |
|
19 echo THIS PROGRAM REGENERATES ALL OF THE SIS FILES USED TO TEST DEVELOPER CERTIFICATE EXTENSIONS |
|
20 pause |
|
21 rmdir /S /Q sis certs reqs keys pkg ini |
|
22 del uid.txt.tmp /F /Q |
|
23 |
|
24 mkdir sis\winscw |
|
25 mkdir sis\armv5 |
|
26 mkdir certs |
|
27 mkdir reqs |
|
28 mkdir keys |
|
29 mkdir pkg |
|
30 mkdir ini |
|
31 |
|
32 REM Create the extension files |
|
33 for %%i in (ext\*.txt) do perl -w ..\..\..\certman\tx509\data\extensions\certextbuilder.pl "%%i" "ext\%%~ni.cfg" |
|
34 |
|
35 call makeplatform.bat winscw |
|
36 |
|
37 REM UIDs MUST MATCH INI FILES SO RESET COUNTER |
|
38 del uid.txt.tmp /F /Q |
|
39 del ini\* /F /Q |
|
40 |
|
41 call makeplatform.bat armv5 |
|
42 |
|
43 :exit |