blob: 635146f0c553e15aca8781d902ed71e2ee380e81 (
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
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
|
% - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
%
% Install mode selection dialog.
%
% - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
% - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
% Some global vars.
%
/install.option 255 string def
% install types
/.inst_cdrom 0 def
/.inst_slp 1 def
/.inst_ftp 2 def
/.inst_http 3 def
/.inst_nfs 4 def
/.inst_smb 5 def
/.inst_hd 6 def
/install.last .inst_cdrom def
% - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
% Build install mode list.
%
% ( ) ==> ( )
%
/install.init {
/xmenu.install .xm_size array def
/xmenu xmenu.install def
/input.edit.ftp [ 63 string 127 string 31 string 31 string ] def
/input.edit.http [ 63 string 127 string ] def
/input.edit.nfs [ 63 string 127 string ] def
/input.edit.smb [ 63 string 31 string 127 string 31 string 31 string 31 string ] def
/input.edit.hd [ 63 string 127 string ] def
install.read.config
xmenu .xm_current install.last put
% see install types (.inst_*)
xmenu .xm_list [ is_dvd { "DVD" } { "CD-ROM" } ifelse "SLP" "FTP" "HTTP" "NFS" "SMB / CIFS" /txt_harddisk ] put
xmenu .xm_title /txt_install_source put
install.set.install.option
} def
% - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
% Update install mode.
%
% ( ) ==> ( )
%
/install.update {
/xmenu xmenu.install def
xmenu .xm_current get dup .inst_cdrom eq exch .inst_slp eq or {
/install.last xmenu .xm_current get def
install.set.install.option
/window.action actRedrawPanel def
} {
install.dialog
}
ifelse
} def
% - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
% Show install menu.
%
% ( ) => ( )
%
/panel.install {
"install_src" help.setcontext
window.xmenu
dup .xmenu xmenu.install put
dup .xmenu.update /install.update put
dup window.init
window.show
} def
% - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
% Return width of panel entry.
%
% ( ) => ( width )
%
/panel.install.width {
/xmenu xmenu.install def
pmenu.width
} def
% - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
% Redraw panel entry.
%
% ( panel ) => ( )
%
/panel.install.update {
/xmenu xmenu.install def
pmenu.panel.update
} def
% - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
% - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
/install.dialog {
/dia window.dialog def
dia .text "" put
xmenu .xm_current get
dup .inst_ftp eq {
dia .title txt_ftp_title put
% Must all be of same size!
dia .ed.list 4 array put
dia .ed.buffer.list input.edit.ftp put
dia .ed.text.list [ txt_server txt_directory txt_user1 txt_password ] put
dia .ed.font font.normal put
dia .ed.pw_field 3 put
} if
dup .inst_http eq {
dia .title txt_http_title put
% Must all be of same size!
dia .ed.list 2 array put
dia .ed.buffer.list input.edit.http put
dia .ed.text.list [ txt_server txt_directory ] put
} if
dup .inst_nfs eq {
dia .title txt_nfs_title put
% Must all be of same size!
dia .ed.list 2 array put
dia .ed.buffer.list input.edit.nfs put
dia .ed.text.list [ txt_server txt_directory ] put
} if
dup .inst_smb eq {
dia .title txt_smb_title put
% Must all be of same size!
dia .ed.list 6 array put
dia .ed.buffer.list input.edit.smb put
dia .ed.text.list [ txt_server txt_share txt_directory txt_domain txt_user2 txt_password ] put
dia .ed.font font.normal put
dia .ed.pw_field 5 put
} if
dup .inst_hd eq {
dia .title txt_harddisk_title put
% Must all be of same size!
dia .ed.list 2 array put
dia .ed.buffer.list input.edit.hd put
dia .ed.text.list [ txt_hd_diskdevice txt_directory ] put
} if
pop
dia .ed.focus 0 put
dia .ed.width 300 put
dia .buttons [
button.ok button.default actInstallOK actNoClose or button.setaction
button.cancel button.notdefault actInstallCancel button.setaction
config.rtl { exch } if
] put
dia window.init
dia window.show
} def
/install.ok {
/xmenu xmenu.install def
window.done
/install.last xmenu .xm_current get def
/window.action actRedrawPanel def
pmenu.update
install.set.install.option
} def
/install.cancel {
/xmenu xmenu.install def
xmenu .xm_current install.last put
} def
% - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
% Set 'install=' boot option.
%
% ( -- )
%
/install.set.install.option {
xmenu .xm_current get
% default: .inst_cdrom
install.option "" strcpy pop
dup .inst_slp eq {
install.option "install=slp:/" strcpy pop
} if
dup .inst_ftp eq {
input.edit.ftp
"install=ftp://" install.option sprintf
% add user name & password
dup 2 get "" ne {
dup 2 get "%s" install.option dup length add sprintf
dup 3 get "" ne {
dup 3 get ":%s" install.option dup length add sprintf
} if
"@" install.option dup length add sprintf
} if
dup 1 get exch 0 get "%s/%s" install.option dup length add sprintf
} if
dup .inst_http eq {
input.edit.http
dup 1 get dup 0 get '/' eq { 1 add } if
exch 0 get
"install=http://%s/%s" install.option sprintf
} if
dup .inst_nfs eq {
input.edit.nfs
dup 1 get dup 0 get '/' eq { 1 add } if
exch 0 get
"install=nfs://%s/%s" install.option sprintf
} if
dup .inst_smb eq {
input.edit.smb
"install=smb://" install.option sprintf
% add domain
dup 3 get "" ne {
dup 3 get "%s;" install.option dup length add sprintf
} if
% add user name & password
dup 4 get "" ne {
dup 4 get "%s" install.option dup length add sprintf
dup 5 get "" ne {
dup 5 get ":%s" install.option dup length add sprintf
} if
"@" install.option dup length add sprintf
} if
dup 2 get dup 0 get '/' eq { 1 add } if
over 1 get rot 0 get
"%s/%s/%s" install.option dup length add sprintf
} if
dup .inst_hd eq {
input.edit.hd
dup 1 get dup 0 get '/' eq { 1 add } if
exch 0 get dup 0 get '/' eq { 1 add } if
"install=hd://%s/%s" install.option sprintf
} if
pop
} def
% - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
% Read default values.
%
% ( -- )
%
/install.read.config {
install.default
dup "cdrom" eq { /install.last .inst_cdrom def } if
dup "slp" eq { /install.last .inst_slp def } if
dup "ftp" eq { /install.last .inst_ftp def } if
dup "http" eq { /install.last .inst_http def } if
dup "nfs" eq { /install.last .inst_nfs def } if
dup "smb" eq { /install.last .inst_smb def } if
dup "hd" eq { /install.last .inst_hd def } if
pop
input.edit.http 0 get install.http.server strcpy pop
input.edit.http 1 get install.http.path strcpy pop
input.edit.nfs 0 get install.nfs.server strcpy pop
input.edit.nfs 1 get install.nfs.path strcpy pop
input.edit.ftp 0 get install.ftp.server strcpy pop
input.edit.ftp 1 get install.ftp.path strcpy pop
input.edit.ftp 2 get install.ftp.user strcpy pop
input.edit.ftp 3 get install.ftp.password strcpy pop
input.edit.smb 0 get install.smb.server strcpy pop
input.edit.smb 1 get install.smb.share strcpy pop
input.edit.smb 2 get install.smb.path strcpy pop
input.edit.smb 3 get install.smb.domain strcpy pop
input.edit.smb 4 get install.smb.user strcpy pop
input.edit.smb 5 get install.smb.password strcpy pop
input.edit.hd 0 get install.hd.device strcpy pop
input.edit.hd 1 get install.hd.path strcpy pop
} def
|