summaryrefslogtreecommitdiffstats
path: root/scripts/checkstack.pl
diff options
context:
space:
mode:
authorMatthias Fuchs <matthias.fuchs@esd.eu>2015-01-12 22:47:35 +0100
committerTom Rini <trini@ti.com>2015-01-13 09:37:27 -0500
commit3c3b55d974a0e9e8c0e61711fc83e4a9f60994a9 (patch)
tree9cbfa4888656041f2830daa20000a8adf7471e48 /scripts/checkstack.pl
parent348303566de129e6f42c6a9e9761ce3d7851d698 (diff)
ppc4xx: switch VOM405 to generic board
Signed-off-by: Matthias Fuchs <matthias.fuchs@esd.eu>
Diffstat (limited to 'scripts/checkstack.pl')
0 files changed, 0 insertions, 0 deletions
Unnamed repository; edit this file 'description' to name the repository.Endi Dewata
summaryrefslogtreecommitdiffstats
path: root/base/migrate/TxtTo70/run.bat
blob: 3e70ee8cdccdcc82e16c83bf5b32f96245971a13 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
@ECHO OFF
REM  --- BEGIN COPYRIGHT BLOCK ---
REM  This program is free software; you can redistribute it and/or modify
REM  it under the terms of the GNU General Public License as published by
REM  the Free Software Foundation; version 2 of the License.
REM
REM  This program is distributed in the hope that it will be useful,
REM  but WITHOUT ANY WARRANTY; without even the implied warranty of
REM  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
REM  GNU General Public License for more details.
REM
REM  You should have received a copy of the GNU General Public License along
REM  with this program; if not, write to the Free Software Foundation, Inc.,
REM  51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
REM
REM  Copyright (C) 2007 Red Hat, Inc.
REM  All rights reserved.
REM  --- END COPYRIGHT BLOCK ---

REM
REM  This script converts a normalized <Source CMS Version> ldif
REM  text file (e. g. - created via a <Source CMS Version>ToTxt
REM  script) into a CMS 7.0 ldif data file.
REM
REM  This CMS 7.0 ldif data file can then be imported into the
REM  internal database of the desired CMS 7.0 server using a
REM  utility such as ldif2db.
REM


SETLOCAL


REM
REM  SERVER_ROOT - fully qualified path of the location of the server
REM

REM SET SERVER_ROOT=C:\cms70


REM
REM  INSTANCE  - if the CMS instance directory is called 'cert-ca',
REM              set the CMS instance to 'ca'
REM
REM              NOTE:  When a single SERVER_ROOT contains more than
REM                     one CMS instance, this script must be run multiple
REM                     times.  To do this, there is only a need to change
REM                     the INSTANCE parameter.
REM

REM SET INSTANCE=ca


REM
REM             *** DON'T CHANGE ANYTHING BELOW THIS LINE ***
REM


REM
REM  Script-defined constants
REM

SET CMS="CMS 7.0"


REM
REM  Perform a usage check for the appropriate number of arguments:
REM

IF "%1" == "" GOTO USAGE
IF "%3" == "" GOTO CHECK_INPUT_FILE


:USAGE
ECHO.
ECHO Usage:  "%0 input [errors] > output"
ECHO.