forked from Androxyde/Flashtool
-
Notifications
You must be signed in to change notification settings - Fork 0
/
drivers.nsi
448 lines (370 loc) · 17.2 KB
/
drivers.nsi
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
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
; Script generated by the HM NIS Edit Script Wizard.
SetCompressor /SOLID lzma
# SetCompressor /SOLID lzma
RequestExecutionLevel highest
; HM NIS Edit Wizard helper defines
!define PRODUCT_NAME "FlashTool Xperia Driver Pack"
!define PRODUCT_VERSION "v1.9 (20160308)"
!define PRODUCT_PUBLISHER "Androxyde, DooMLoRD & Bin4ry"
!define PRODUCT_WEB_SITE "http://www.flashtool.net/"
; MUI 1.67 compatible ------
!include "MUI.nsh"
!include "x64.nsh"
; MUI Settings
!define MUI_ABORTWARNING
!define MUI_ICON "${NSISDIR}\Contrib\Graphics\Icons\modern-install.ico"
; Welcome page
!insertmacro MUI_PAGE_WELCOME
; License page
; Components page
!insertmacro MUI_PAGE_COMPONENTS
; Instfiles page
!insertmacro MUI_PAGE_INSTFILES
; Finish page
!insertmacro MUI_PAGE_FINISH
; Language files
!insertmacro MUI_LANGUAGE "English"
; Reserve files
!insertmacro MUI_RESERVEFILE_INSTALLOPTIONS
; MUI end ------
Name "${PRODUCT_NAME} ${PRODUCT_VERSION}"
OutFile ..\Deploy\Flashtool\drivers\Flashtool-drivers.exe
ShowInstDetails show
Section /o "Flashmode Drivers" SEC01
SetOutPath "$TEMP\Flashtool\GordonGate"
File /r "Drivers\GordonGate\*"
SectionEnd
Section /o "Fastboot Drivers" SEC02
SetOutPath "$TEMP\Flashtool\Fastboot"
File /r "Drivers\FASTBOOT\*"
SectionEnd
Section /o "Common drivers Mogami and Zeus board" SEC03
SetOutPath "$TEMP\Flashtool\ADB\Common drivers Mogami and Zeus board"
File /r "Drivers\ADB\Common drivers Mogami and Zeus board\*"
SectionEnd
Section /o "Common drivers Fuji board" SEC04
SetOutPath "$TEMP\Flashtool\ADB\Common drivers Fuji board"
File /r "Drivers\ADB\Common drivers Fuji board\*"
SectionEnd
Section /o "Common drivers RioGrande board" SEC05
SetOutPath "$TEMP\Flashtool\ADB\Common drivers RioGrande board"
File /r "Drivers\ADB\Common drivers RioGrande board\*"
SectionEnd
Section /o "Common drivers Fuji board" SEC06
SetOutPath "$TEMP\Flashtool\ADB\Common drivers Fuji board"
File /r "Drivers\ADB\Common drivers Fuji board\*"
SectionEnd
Section /o "Common drivers Blue1.0 board" SEC07
SetOutPath "$TEMP\Flashtool\ADB\Common drivers Blue1.0 board"
File /r "Drivers\ADB\Common drivers Blue1.0 board\*"
SectionEnd
Section /o "Common drivers Blue3.0 board" SEC08
SetOutPath "$TEMP\Flashtool\ADB\Common drivers Blue3.0 board"
File /r "Drivers\ADB\Common drivers Blue3.0 board\*"
SectionEnd
Section /o "Common drivers Lagan, Fusion3 board" SEC09
SetOutPath "$TEMP\Flashtool\ADB\Common drivers Lagan, Fusion3 board"
File /r "Drivers\ADB\Common drivers Lagan, Fusion3 board\*"
SectionEnd
Section /o "Common drivers JDM-Platform board" SEC10
SetOutPath "$TEMP\Flashtool\ADB\Common drivers JDM-Platform board"
File /r "Drivers\ADB\Common drivers JDM-Platform board\*"
SectionEnd
Section /o "Common drivers Nicky board" SEC11
SetOutPath "$TEMP\Flashtool\ADB\Common drivers Nicky board"
File /r "Drivers\ADB\Common drivers Nicky board\*"
SectionEnd
Section /o "Common drivers Viskan board" SEC12
SetOutPath "$TEMP\Flashtool\ADB\Common drivers Viskan board"
File /r "Drivers\ADB\Common drivers Viskan board\*"
SectionEnd
Section /o "Common drivers Taoshan board" SEC13
SetOutPath "$TEMP\Flashtool\ADB\Common drivers Taoshan board"
File /r "Drivers\ADB\Common drivers Taoshan board\*"
SectionEnd
Section /o "Common drivers Rhine board" SEC14
SetOutPath "$TEMP\Flashtool\ADB\Common drivers Rhine board"
File /r "Drivers\ADB\Common drivers Rhine board\*"
SectionEnd
Section /o "Common drivers Tianchi board" SEC15
SetOutPath "$TEMP\Flashtool\ADB\Common drivers Tianchi board"
File /r "Drivers\ADB\Common drivers Tianchi board\*"
SectionEnd
Section /o "Common drivers Shinano board" SEC16
SetOutPath "$TEMP\Flashtool\ADB\Common drivers Shinano board"
File /r "Drivers\ADB\Common drivers Shinano board\*"
SectionEnd
Section /o "Sony Ericsson X8 Drivers" SEC17
SetOutPath "$TEMP\Flashtool\ADB\Sony Ericsson X8 Drivers"
File /r "Drivers\ADB\Sony Ericsson X8 Drivers\*"
SectionEnd
Section /o "Sony Ericsson X10 Drivers" SEC18
SetOutPath "$TEMP\Flashtool\ADB\Sony Ericsson X10 Drivers"
File /r "Drivers\ADB\Sony Ericsson X10 Drivers\*"
SectionEnd
Section /o "Sony Ericsson X10 Drivers GingerBread" SEC19
SetOutPath "$TEMP\Flashtool\ADB\Sony Ericsson X10 Drivers GingerBread"
File /r "Drivers\ADB\Sony Ericsson X10 Drivers GingerBread\*"
SectionEnd
Section /o "Sony Ericsson X10 mini Drivers" SEC20
SetOutPath "$TEMP\Flashtool\ADB\Sony Ericsson X10 mini Drivers"
File /r "Drivers\ADB\Sony Ericsson X10 mini Drivers\*"
SectionEnd
Section /o "Sony Ericsson Xperia arc, Xperia neo, Xperia PLAY, Xperia acro IS11S, Xperia acro SO-02C drivers" SEC21
SetOutPath "$TEMP\Flashtool\ADB\Sony Ericsson Xperia arc, Xperia neo, Xperia PLAY, Xperia acro IS11S, Xperia acro SO-02C drivers"
File /r "Drivers\ADB\Sony Ericsson Xperia arc, Xperia neo, Xperia PLAY, Xperia acro IS11S, Xperia acro SO-02C drivers\*"
SectionEnd
Section /o "Xperia acro HD (IS12S) driver for ICS" SEC22
SetOutPath "$TEMP\Flashtool\ADB\Xperia acro HD (IS12S) driver for ICS"
File /r "Drivers\ADB\Xperia acro HD (IS12S) driver for ICS\*"
SectionEnd
Section /o "Xperia acro HD (SO-03D) driver for ICS" SEC23
SetOutPath "$TEMP\Flashtool\ADB\Xperia acro HD (SO-03D) driver for ICS"
File /r "Drivers\ADB\Xperia acro HD (SO-03D) driver for ICS\*"
SectionEnd
Section /o "Xperia acro S driver for ICS" SEC24
SetOutPath "$TEMP\Flashtool\ADB\Xperia acro S driver for ICS"
File /r "Drivers\ADB\Xperia acro S driver for ICS\*"
SectionEnd
Section /o "Xperia GX (SO-04D) driver for ICS" SEC25
SetOutPath "$TEMP\Flashtool\ADB\Xperia GX (SO-04D) driver for ICS"
File /r "Drivers\ADB\Xperia GX (SO-04D) driver for ICS\*"
SectionEnd
Section /o "Xperia NX driver for ICS" SEC26
SetOutPath "$TEMP\Flashtool\ADB\Xperia NX driver for ICS"
File /r "Drivers\ADB\Xperia NX driver for ICS\*"
SectionEnd
Section /o "Xperia P, Xperia U, and Xperia sola drivers" SEC27
SetOutPath "$TEMP\Flashtool\ADB\Xperia P, Xperia U, and Xperia sola drivers"
File /r "Drivers\ADB\Xperia P, Xperia U, and Xperia sola drivers\*"
SectionEnd
Section /o "Xperia pro, Xperia ray, Xperia ray SO-03C drivers" SEC28
SetOutPath "$TEMP\Flashtool\ADB\Xperia pro, Xperia ray, Xperia ray SO-03C drivers"
File /r "Drivers\ADB\Xperia pro, Xperia ray, Xperia ray SO-03C drivers\*"
SectionEnd
Section /o "Xperia S driver for ICS" SEC29
SetOutPath "$TEMP\Flashtool\ADB\Xperia S driver for ICS"
File /r "Drivers\ADB\Xperia S driver for ICS\*"
SectionEnd
Section /o "Xperia S, Xperia NX and Xperia acro HD drivers" SEC30
SetOutPath "$TEMP\Flashtool\ADB\Xperia S, Xperia NX and Xperia acro HD drivers"
File /r "Drivers\ADB\Xperia S, Xperia NX and Xperia acro HD drivers\*"
SectionEnd
Section /o "Xperia S, Xperia NX, and Xperia acro HD drivers for GB" SEC31
SetOutPath "$TEMP\Flashtool\ADB\Xperia S, Xperia NX, and Xperia acro HD drivers for GB"
File /r "Drivers\ADB\Xperia S, Xperia NX, and Xperia acro HD drivers for GB\*"
SectionEnd
Section /o "Xperia SX driver for ICS" SEC32
SetOutPath "$TEMP\Flashtool\ADB\Xperia SX driver for ICS"
File /r "Drivers\ADB\Xperia SX driver for ICS\*"
SectionEnd
Section /o "Xperia SL driver" SEC33
SetOutPath "$TEMP\Flashtool\ADB\Xperia SL driver"
File /r "Drivers\ADB\Xperia SL driver\*"
SectionEnd
Section /o "Xperia TX driver" SEC34
SetOutPath "$TEMP\Flashtool\ADB\Xperia TX driver"
File /r "Drivers\ADB\Xperia TX driver\*"
SectionEnd
Section /o "Xperia VL driver" SEC35
SetOutPath "$TEMP\Flashtool\ADB\Xperia VL Drivers"
File /r "Drivers\ADB\Xperia VL Drivers\*"
SectionEnd
Section /o "Xperia Z and SO-02E drivers" SEC36
SetOutPath "$TEMP\Flashtool\ADB\Xperia Z and SO-02E drivers"
File /r "Drivers\ADB\Xperia Z and SO-02E drivers\*"
SectionEnd
Section /o "Xperia Tablet Z drivers SGP311, SGP312, UsbD" SEC37
SetOutPath "$TEMP\Flashtool\ADB\Xperia_Tablet_Z-drivers-SGP311_SGP312_UsbD"
File /r "Drivers\ADB\Xperia_Tablet_Z-drivers-SGP311_SGP312_UsbD\*"
SectionEnd
Section /o "Xperia Z Ultra drivers" SEC38
SetOutPath "$TEMP\Flashtool\ADB\Xperia_Z_Ultra_driver"
File /r "Drivers\ADB\Xperia_Z_Ultra_driver\*"
SectionEnd
Section /o "Xperia Z Ultra XL39h driver" SEC39
SetOutPath "$TEMP\Flashtool\ADB\Xperia Z Ultra XL39h driver"
File /r "Drivers\ADB\Xperia Z Ultra XL39h driver\*"
SectionEnd
Section /o "Xperia Z1 driver" SEC40
SetOutPath "$TEMP\Flashtool\ADB\Xperia Z1 driver"
File /r "Drivers\ADB\Xperia Z1 driver\*"
SectionEnd
Section /o "Xperia Z1 L39h driver" SEC41
SetOutPath "$TEMP\Flashtool\ADB\Xperia Z1 L39h driver"
File /r "Drivers\ADB\Xperia Z1 L39h driver\*"
SectionEnd
Section /o "Sony Z Ultra Google Play Edition driver" SEC42
SetOutPath "$TEMP\Flashtool\ADB\Sony Z Ultra Google Play Edition driver"
File /r "Drivers\ADB\Sony Z Ultra Google Play Edition driver\*"
SectionEnd
Section /o "Xperia Z1 f SO-02F driver" SEC43
SetOutPath "$TEMP\Flashtool\ADB\Xperia_Z1_f_SO-02F_driver"
File /r "Drivers\ADB\Xperia_Z1_f_SO-02F_driver\*"
SectionEnd
Section /o "Xperia UL Drivers" SEC44
SetOutPath "$TEMP\Flashtool\ADB\Xperia UL Drivers"
File /r "Drivers\ADB\Xperia UL Drivers\*"
SectionEnd
Section /o "Xperia A driver" SEC45
SetOutPath "$TEMP\Flashtool\ADB\Xperia A driver"
File /r "Drivers\ADB\Xperia A driver\*"
SectionEnd
Section /o "Xperia Z1 Compact driver" SEC46
SetOutPath "$TEMP\Flashtool\ADB\Xperia Z1 Compact driver"
File /r "Drivers\ADB\Xperia Z1 Compact driver\*"
SectionEnd
Section /o "Xperia Z_Ultra_SGP412_driver" SEC47
SetOutPath "$TEMP\Flashtool\ADB\Xperia Z_Ultra_SGP412_driver"
File /r "Drivers\ADB\Xperia Z_Ultra_SGP412_driver\*"
SectionEnd
Section /o "Xperia Z_Ultra_SOL24_driver" SEC48
SetOutPath "$TEMP\Flashtool\ADB\Xperia Z_Ultra_SOL24_driver"
File /r "Drivers\ADB\Xperia Z_Ultra_SOL24_driver\*"
SectionEnd
Section /o "Xperia T2 Ultra driver" SEC49
SetOutPath "$TEMP\Flashtool\ADB\Xperia_T2_Ultra_driver"
File /r "Drivers\ADB\Xperia_T2_Ultra_driver\*"
SectionEnd
Section /o "Common drivers for Shuang board" SEC50
SetOutPath "$TEMP\Flashtool\ADB\Common drivers Shuang board"
File /r "Drivers\ADB\Common drivers Shuang board\*"
SectionEnd
Section /o "Xperia Z2 Device Driver" SEC51
SetOutPath "$TEMP\Flashtool\ADB\Xperia Z2 Device Driver"
File /r "Drivers\ADB\Xperia Z2 Device Driver\*"
SectionEnd
Section /o "Xperia Z2 Tablet Device Driver" SEC52
SetOutPath "$TEMP\Flashtool\ADB\Xperia Z2 Tablet Device Driver"
File /r "Drivers\ADB\Xperia Z2 Tablet Device Driver\*"
SectionEnd
Section /o "Xperia Z2 Device Driver" SEC53
SetOutPath "$TEMP\Flashtool\ADB\Xperia Z2 Device Driver"
File /r "Drivers\ADB\Xperia Z2 Device Driver\*"
SectionEnd
Section /o "Xperia ZL2 Device Driver" SEC54
SetOutPath "$TEMP\Flashtool\ADB\Xperia ZL2"
File /r "Drivers\ADB\Xperia ZL2\*"
SectionEnd
Section /o "Xperia A2 (SO-04F) Device Driver" SEC55
SetOutPath "$TEMP\Flashtool\ADB\Xperia_A2_SO-04F_driver"
File /r "Drivers\ADB\Xperia_A2_SO-04F_driver\*"
SectionEnd
Section /o "Xperia Z3 Device Driver" SEC56
SetOutPath "$TEMP\Flashtool\ADB\Xperia_Z3"
File /r "Drivers\ADB\Xperia_Z3\*"
SectionEnd
Section /o "Xperia Z3 Compact Device Driver" SEC57
SetOutPath "$TEMP\Flashtool\ADB\Xperia_Z3_Compact"
File /r "Drivers\ADB\Xperia_Z3_Compact\*"
SectionEnd
Section /o "Xperia Z3 Tablet Compact Device Driver" SEC58
SetOutPath "$TEMP\Flashtool\ADB\Xperia_Z3_Tablet_Compact"
File /r "Drivers\ADB\Xperia_Z3_Tablet_Compact\*"
SectionEnd
Section /o "Xperia Z3+ Device Driver" SEC59
SetOutPath "$TEMP\Flashtool\ADB\Xperia_Z3_Plus"
File /r "Drivers\ADB\Xperia_Z3_Plus\*"
SectionEnd
Section /o "Xperia Z4 Device Driver" SEC60
SetOutPath "$TEMP\Flashtool\ADB\Xperia_Z4"
File /r "Drivers\ADB\Xperia_Z4\*"
SectionEnd
Section /o "Xperia Z4 Tablet Device Driver" SEC61
SetOutPath "$TEMP\Flashtool\ADB\Xperia_Z4_Tablet"
File /r "Drivers\ADB\Xperia_Z4_Tablet\*"
SectionEnd
Section /o "Xperia Z5 Device Driver" SEC62
SetOutPath "$TEMP\Flashtool\ADB\Xperia_Z5"
File /r "Drivers\ADB\Xperia_Z5\*"
SectionEnd
Section /o "Xperia Z5 Compact Device Driver" SEC63
SetOutPath "$TEMP\Flashtool\ADB\Xperia_Z5_Compact"
File /r "Drivers\ADB\Xperia_Z5_Compact\*"
SectionEnd
Section /o "Xperia Z5 Premium Device Driver" SEC64
SetOutPath "$TEMP\Flashtool\ADB\Xperia_Z5_Premium"
File /r "Drivers\ADB\Xperia_Z5_Premium\*"
SectionEnd
Section -Post
SetOutPath "$TEMP\Flashtool"
File "Drivers\dpinst.xml"
File "Drivers\DPInst32.exe"
File "Drivers\DPInst64.exe"
${If} ${RunningX64}
ExecWait '"$TEMP\Flashtool\dpinst64.exe"'
${Else}
ExecWait '"$TEMP\Flashtool\dpinst32.exe"'
${EndIf}
RmDir /r "$TEMP\Flashtool"
SectionEnd
; Section descriptions
!insertmacro MUI_FUNCTION_DESCRIPTION_BEGIN
!insertmacro MUI_DESCRIPTION_TEXT ${SEC01} "Common FlashMode drivers for all Xperia devices"
!insertmacro MUI_DESCRIPTION_TEXT ${SEC02} "Common FastBoot mode drivers for all Xperia devices"
!insertmacro MUI_DESCRIPTION_TEXT ${SEC03} "Common ADB drivers for Mogami and Zeus board devices based on MSM7x30/MSM8x55 chipset: Xperia ARC, ARC S, NEO, Acro, Mini, Mini Pro, PRO, Ray, Neo V, Active, Neo L"
!insertmacro MUI_DESCRIPTION_TEXT ${SEC04} "Common ADB drivers for Fuji board devices based on MSM8660 chipset: Xperia S, SL, ion, Acro HD, Acro S"
!insertmacro MUI_DESCRIPTION_TEXT ${SEC05} "Common ADB drivers for RioGrande board based on STE-NovaThor-U8500 chipset: Xperia Sola, P, U, GO"
!insertmacro MUI_DESCRIPTION_TEXT ${SEC06} "Common ADB drivers for Fuji board devices based on MSM8660 chipset: Xperia S, SL, ion, Acro HD, Acro S"
!insertmacro MUI_DESCRIPTION_TEXT ${SEC07} "Common ADB drivers for Blue1.0 board devices based on MSM8960 chipset: Xperia SX, TX, GX, T, TL"
!insertmacro MUI_DESCRIPTION_TEXT ${SEC08} "Common ADB drivers for Blue3.0 board devices based on MSM8960 chipset: Xperia SX, TX, GX, T, TL, V, AX, VL"
!insertmacro MUI_DESCRIPTION_TEXT ${SEC09} "Common ADB drivers for Lagan, Fusion3 board devices based on APQ8064 chipset: Xperia Z, ZL, ZR, ZQ, A, UL, Tablet Z"
!insertmacro MUI_DESCRIPTION_TEXT ${SEC10} "Common ADB drivers for JDM-Platform board devices based on MSM7225A/MSM7227A chipset: Xperia Tipo, Tipo Dual, Miro, J, E, E Dual"
!insertmacro MUI_DESCRIPTION_TEXT ${SEC11} "Common ADB drivers for Nicky board devices based on MSM8227 chipset: Xperia M, M Dual"
!insertmacro MUI_DESCRIPTION_TEXT ${SEC12} "Common ADB drivers for Viskan board devices based on MSM8960T chipset: Xperia SP"
!insertmacro MUI_DESCRIPTION_TEXT ${SEC13} "Common ADB drivers for Taoshan board devices based on MSM8230 chipset: Xperia L"
!insertmacro MUI_DESCRIPTION_TEXT ${SEC14} "Common ADB drivers for Rhine board devices based on MSM8974 chipset: Xperia Z Ultra, Z1, Z1 Compact, Z1s"
!insertmacro MUI_DESCRIPTION_TEXT ${SEC15} "Common ADB drivers for Tianchi board devices based on MSM8928 chipset: Xperia T2 Ultra, T2 Ultra Dual"
!insertmacro MUI_DESCRIPTION_TEXT ${SEC16} "Common ADB drivers for Shinano board devices based on MSM8974AB chipset: Xperia Z2 (D65xx), Xperia Tablet Z2"
!insertmacro MUI_DESCRIPTION_TEXT ${SEC17} ""
!insertmacro MUI_DESCRIPTION_TEXT ${SEC18} ""
!insertmacro MUI_DESCRIPTION_TEXT ${SEC19} ""
!insertmacro MUI_DESCRIPTION_TEXT ${SEC20} ""
!insertmacro MUI_DESCRIPTION_TEXT ${SEC21} ""
!insertmacro MUI_DESCRIPTION_TEXT ${SEC22} ""
!insertmacro MUI_DESCRIPTION_TEXT ${SEC23} ""
!insertmacro MUI_DESCRIPTION_TEXT ${SEC24} ""
!insertmacro MUI_DESCRIPTION_TEXT ${SEC25} ""
!insertmacro MUI_DESCRIPTION_TEXT ${SEC26} ""
!insertmacro MUI_DESCRIPTION_TEXT ${SEC27} ""
!insertmacro MUI_DESCRIPTION_TEXT ${SEC28} ""
!insertmacro MUI_DESCRIPTION_TEXT ${SEC29} ""
!insertmacro MUI_DESCRIPTION_TEXT ${SEC30} ""
!insertmacro MUI_DESCRIPTION_TEXT ${SEC31} ""
!insertmacro MUI_DESCRIPTION_TEXT ${SEC32} ""
!insertmacro MUI_DESCRIPTION_TEXT ${SEC33} ""
!insertmacro MUI_DESCRIPTION_TEXT ${SEC34} ""
!insertmacro MUI_DESCRIPTION_TEXT ${SEC35} ""
!insertmacro MUI_DESCRIPTION_TEXT ${SEC36} ""
!insertmacro MUI_DESCRIPTION_TEXT ${SEC37} ""
!insertmacro MUI_DESCRIPTION_TEXT ${SEC38} ""
!insertmacro MUI_DESCRIPTION_TEXT ${SEC39} ""
!insertmacro MUI_DESCRIPTION_TEXT ${SEC40} ""
!insertmacro MUI_DESCRIPTION_TEXT ${SEC41} ""
!insertmacro MUI_DESCRIPTION_TEXT ${SEC42} ""
!insertmacro MUI_DESCRIPTION_TEXT ${SEC43} ""
!insertmacro MUI_DESCRIPTION_TEXT ${SEC44} ""
!insertmacro MUI_DESCRIPTION_TEXT ${SEC45} ""
!insertmacro MUI_DESCRIPTION_TEXT ${SEC46} ""
!insertmacro MUI_DESCRIPTION_TEXT ${SEC47} ""
!insertmacro MUI_DESCRIPTION_TEXT ${SEC48} ""
!insertmacro MUI_DESCRIPTION_TEXT ${SEC49} ""
!insertmacro MUI_DESCRIPTION_TEXT ${SEC50} "Common ADB drivers for Shuang board devices based on MSM8210 chipset: Xperia E1 (D20xx & D21xx) devices"
!insertmacro MUI_DESCRIPTION_TEXT ${SEC51} ""
!insertmacro MUI_DESCRIPTION_TEXT ${SEC52} ""
!insertmacro MUI_DESCRIPTION_TEXT ${SEC53} ""
!insertmacro MUI_DESCRIPTION_TEXT ${SEC54} ""
!insertmacro MUI_DESCRIPTION_TEXT ${SEC55} ""
!insertmacro MUI_DESCRIPTION_TEXT ${SEC56} ""
!insertmacro MUI_DESCRIPTION_TEXT ${SEC57} ""
!insertmacro MUI_DESCRIPTION_TEXT ${SEC58} ""
!insertmacro MUI_DESCRIPTION_TEXT ${SEC59} ""
!insertmacro MUI_DESCRIPTION_TEXT ${SEC60} ""
!insertmacro MUI_DESCRIPTION_TEXT ${SEC61} ""
!insertmacro MUI_DESCRIPTION_TEXT ${SEC62} ""
!insertmacro MUI_DESCRIPTION_TEXT ${SEC63} ""
!insertmacro MUI_DESCRIPTION_TEXT ${SEC64} ""
!insertmacro MUI_FUNCTION_DESCRIPTION_END
Function .onInit
RmDir /r "$TEMP\Flashtool"
FunctionEnd