-
-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathMakefile
439 lines (344 loc) · 21.2 KB
/
Makefile
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
PSPDEV=$(shell psp-config --pspdev-path)
all: TM/DC9 TM/msipl.bin TM/DC9/ipl_01g.bin TM/DC9/ipl_02g.bin TM/DC9/ipl_03g.bin TM/DC9/nandcipl_01g.bin TM/DC9/nandcipl_02g.bin TM/DC9/nandcipl_03g.bin TM/DC9/retail/kd/pspbtcnf_dc.bin TM/DC9/retail/kd/pspbtcnf_umd.bin TM/DC9/retail/kd/pspbtcnf_np.bin TM/DC9/retail/kd/pspbtcnf_m33.bin TM/DC9/retail/kd/pspbtcnf_recovery.bin TM/DC9/retail/kd/pspbtcnf_02g_dc.bin TM/DC9/retail/kd/pspbtcnf_02g_umd.bin TM/DC9/retail/kd/pspbtcnf_02g_np.bin TM/DC9/retail/kd/pspbtcnf_02g_m33.bin TM/DC9/retail/kd/pspbtcnf_02g_recovery.bin TM/DC9/retail/kd/pspbtcnf_03g_dc.bin TM/DC9/retail/kd/pspbtcnf_03g_umd.bin TM/DC9/retail/kd/pspbtcnf_03g_np.bin TM/DC9/retail/kd/pspbtcnf_03g_m33.bin TM/DC9/retail/kd/pspbtcnf_03g_recovery.bin TM/DC9/testingtool/kd/pspbtcnf_dc.bin TM/DC9/testingtool/kd/pspbtcnf_umd.bin TM/DC9/testingtool/kd/pspbtcnf_np.bin TM/DC9/testingtool/kd/pspbtcnf_m33.bin TM/DC9/testingtool/kd/pspbtcnf_recovery.bin TM/DC9/testingtool/kd/pspbtcnf_02g_dc.bin TM/DC9/testingtool/kd/pspbtcnf_02g_umd.bin TM/DC9/testingtool/kd/pspbtcnf_02g_np.bin TM/DC9/testingtool/kd/pspbtcnf_02g_m33.bin TM/DC9/testingtool/kd/pspbtcnf_02g_recovery.bin TM/DC9/testingtool/kd/pspbtcnf_03g_dc.bin TM/DC9/testingtool/kd/pspbtcnf_03g_umd.bin TM/DC9/testingtool/kd/pspbtcnf_03g_np.bin TM/DC9/testingtool/kd/pspbtcnf_03g_m33.bin TM/DC9/testingtool/kd/pspbtcnf_03g_recovery.bin TM/DC9/tmctrl.prx TM/DC9/kd/ipl_update.prx TM/DC9/kd/resurrection.prx TM/DC9/kd/dcman.prx TM/DC9/kd/iop.prx TM/DC9/kd/lflash_fdisk.prx TM/DC9/kd/idsregeneration.prx TM/DC9/kd/emc_sm_updater.prx TM/DC9/kd/lfatfs_updater.prx TM/DC9/kd/lflash_fatfmt_updater.prx TM/DC9/vsh/module/intraFont.prx TM/DC9/vsh/module/vlf.prx TM/DC9/kd/pspdecrypt.prx TM/DC9/kd/galaxy.prx TM/DC9/kd/idcanager.prx TM/DC9/kd/march33.prx TM/DC9/kd/popcorn.prx TM/DC9/kd/nidresolver.prx TM/DC9/kd/systemctrl.prx TM/DC9/kd/usbdevice.prx TM/DC9/kd/vshctrl.prx TM/DC9/vsh/module/recovery.prx TM/DC9/vsh/module/satelite.prx
clean:
rm -rf TM
make -C ipl/common clean
make -C ipl/msipl clean
make -C ipl/payloadex clean
make -C ipl/ipl_stage2_payload clean
rm -f ipl/ipl_stage2_payload/payloadex.S
make -C ipl/ipl_stage1_payload clean
rm -f ipl/ipl_stage1_payload/payload.S
make -C bootcnf clean
make -C ipl/rebootex clean
make -C modules/flashemu clean
rm -f modules/flashemu/rebootex.S
rm -f modules/flashemu/rebootex_02g.S
rm -f modules/flashemu/rebootex_03g.S
make -C modules/ipl_update clean
make -C modules/vunbricker clean
make -C modules/dcman clean
make -C modules/iop clean
make -C modules/lflash_fdisk clean
make -C modules/idsregeneration clean
make -C modules/idcanager clean
make -C modules/vshctrl clean
make -C modules/usbdevice clean
make -C modules/nidresolver clean
make -C modules/systemctrl clean
rm -f modules/systemctrl/rebootex.S
rm -f modules/systemctrl/rebootex_02g.S
rm -f modules/systemctrl/rebootex_03g.S
make -C modules/satelite clean
make -C modules/galaxy clean
make -C modules/popcorn clean
TM:
mkdir TM
TM/DC9: TM
mkdir TM/DC9
cp -R 502/flash0/* TM/DC9/
cp -R 502/nandipl*.bin TM/DC9/
mkdir -p TM/DC9/dic
mkdir -p TM/DC9/gps
mkdir -p TM/DC9/net/http
mkdir -p TM/DC9/registry
mkdir -p TM/DC9/vsh/module
mkdir -p TM/DC9/vsh/theme
mkdir -p TM/DC9/retail/kd
mkdir -p TM/DC9/retail/vsh
mkdir -p TM/DC9/testingtool/kd
mkdir -p TM/DC9/testingtool/vsh
touch TM/DC9/registry/init.dat
ipl/common/libiplsdk.a:
make -C ipl/common
TM/msipl.bin: TM ipl/common/libiplsdk.a
make -C ipl/msipl
psptools/pack_ipl.py ipl/msipl/msipl.bin@0x40c0000 TM/msipl.bin 0x40c0000
TM/DC9/ipl_01g.bin: TM/DC9 ipl/common/libiplsdk.a
make -C ipl/payloadex clean
make -C ipl/payloadex BFLAGS="-DIPL_01G -DMSIPL=1"
$(PSPDEV)/bin/bin2s ipl/payloadex/payloadex.bin ipl/ipl_stage2_payload/payloadex.S payloadex
make -C ipl/ipl_stage2_payload clean
make -C ipl/ipl_stage2_payload BFLAGS="-DIPL_01G -DMSIPL=1"
$(PSPDEV)/bin/bin2s ipl/ipl_stage2_payload/ipl_stage2_payload.bin ipl/ipl_stage1_payload/payload.S payload
make -C ipl/ipl_stage1_payload clean
make -C ipl/ipl_stage1_payload BFLAGS="-DIPL_01G -DMSIPL=1"
dd if=ipl/ipl_stage1_payload/ipl_stage1_payload.bin of=TM/DC9/ipl_01g.bin
psptools/unpack_ipl.py 502/nandipl_01g.bin ipl_01g.dec
dd if=ipl_01g.dec of=TM/DC9/ipl_01g.bin bs=1 seek=49152
rm ipl_01g.dec
TM/DC9/ipl_02g.bin: TM/DC9 ipl/common/libiplsdk.a
make -C ipl/payloadex clean
make -C ipl/payloadex BFLAGS="-DIPL_02G -DMSIPL=1"
$(PSPDEV)/bin/bin2s ipl/payloadex/payloadex.bin ipl/ipl_stage2_payload/payloadex.S payloadex
make -C ipl/ipl_stage2_payload clean
make -C ipl/ipl_stage2_payload BFLAGS="-DIPL_02G -DMSIPL=1"
$(PSPDEV)/bin/bin2s ipl/ipl_stage2_payload/ipl_stage2_payload.bin ipl/ipl_stage1_payload/payload.S payload
make -C ipl/ipl_stage1_payload clean
make -C ipl/ipl_stage1_payload BFLAGS="-DIPL_02G -DMSIPL=1"
dd if=ipl/ipl_stage1_payload/ipl_stage1_payload.bin of=TM/DC9/ipl_02g.bin
psptools/unpack_ipl.py 502/nandipl_02g.bin ipl_02g.dec
dd if=ipl_02g.dec of=TM/DC9/ipl_02g.bin bs=1 seek=49152
rm ipl_02g.dec
TM/DC9/ipl_03g.bin: TM/DC9 ipl/common/libiplsdk.a
make -C ipl/payloadex clean
make -C ipl/payloadex BFLAGS="-DIPL_03G -DMSIPL=1"
$(PSPDEV)/bin/bin2s ipl/payloadex/payloadex.bin ipl/ipl_stage2_payload/payloadex.S payloadex
make -C ipl/ipl_stage2_payload clean
make -C ipl/ipl_stage2_payload BFLAGS="-DIPL_03G -DMSIPL=1"
$(PSPDEV)/bin/bin2s ipl/ipl_stage2_payload/ipl_stage2_payload.bin ipl/ipl_stage1_payload/payload.S payload
make -C ipl/ipl_stage1_payload clean
make -C ipl/ipl_stage1_payload BFLAGS="-DIPL_03G -DMSIPL=1"
dd if=ipl/ipl_stage1_payload/ipl_stage1_payload.bin of=TM/DC9/ipl_03g.bin
psptools/unpack_ipl.py 502/nandipl_03g.bin ipl_03g.dec --xor 1
dd if=ipl_03g.dec of=TM/DC9/ipl_03g.bin bs=1 seek=49152
rm ipl_03g.dec
TM/DC9/nandcipl_01g.bin: TM/DC9 ipl/common/libiplsdk.a
make -C ipl/payloadex clean
make -C ipl/payloadex BFLAGS="-DIPL_01G"
$(PSPDEV)/bin/bin2s ipl/payloadex/payloadex.bin ipl/ipl_stage2_payload/payloadex.S payloadex
make -C ipl/ipl_stage2_payload clean
make -C ipl/ipl_stage2_payload BFLAGS="-DIPL_01G"
$(PSPDEV)/bin/bin2s ipl/ipl_stage2_payload/ipl_stage2_payload.bin ipl/ipl_stage1_payload/payload.S payload
make -C ipl/ipl_stage1_payload clean
make -C ipl/ipl_stage1_payload BFLAGS="-DIPL_01G"
psptools/unpack_ipl.py 502/nandipl_01g.bin ipl_01g.dec
psptools/pack_ipl.py ipl/ipl_stage1_payload/ipl_stage1_payload.bin@0x40e0000 ipl_01g.dec@0x40f0000 TM/DC9/nandcipl_01g.bin 0x40e0000
rm ipl_01g.dec
TM/DC9/nandcipl_02g.bin: TM/DC9 ipl/common/libiplsdk.a
make -C ipl/payloadex clean
make -C ipl/payloadex BFLAGS="-DIPL_02G"
$(PSPDEV)/bin/bin2s ipl/payloadex/payloadex.bin ipl/ipl_stage2_payload/payloadex.S payloadex
make -C ipl/ipl_stage2_payload clean
make -C ipl/ipl_stage2_payload BFLAGS="-DIPL_02G"
$(PSPDEV)/bin/bin2s ipl/ipl_stage2_payload/ipl_stage2_payload.bin ipl/ipl_stage1_payload/payload.S payload
make -C ipl/ipl_stage1_payload clean
make -C ipl/ipl_stage1_payload BFLAGS="-DIPL_02G"
psptools/unpack_ipl.py 502/nandipl_02g.bin ipl_02g.dec
psptools/pack_ipl.py ipl/ipl_stage1_payload/ipl_stage1_payload.bin@0x40e0000 ipl_02g.dec@0x40f0000 TM/DC9/nandcipl_02g.bin 0x40e0000
rm ipl_02g.dec
TM/DC9/nandcipl_03g.bin: TM/DC9 ipl/common/libiplsdk.a
make -C ipl/payloadex clean
make -C ipl/payloadex BFLAGS="-DIPL_03G"
$(PSPDEV)/bin/bin2s ipl/payloadex/payloadex.bin ipl/ipl_stage2_payload/payloadex.S payloadex
make -C ipl/ipl_stage2_payload clean
make -C ipl/ipl_stage2_payload BFLAGS="-DIPL_03G"
$(PSPDEV)/bin/bin2s ipl/ipl_stage2_payload/ipl_stage2_payload.bin ipl/ipl_stage1_payload/payload.S payload
make -C ipl/ipl_stage1_payload clean
make -C ipl/ipl_stage1_payload BFLAGS="-DIPL_03G"
psptools/unpack_ipl.py 502/nandipl_03g.bin ipl_03g.dec --xor 1
psptools/pack_ipl.py ipl/ipl_stage1_payload/ipl_stage1_payload.bin@0x40e0000 ipl_03g.dec@0x40f0000 TM/DC9/nandcipl_03g.bin 0x40e0000
rm ipl_03g.dec
bootcnf/bootcnf:
make -C bootcnf
TM/DC9/retail/kd/pspbtcnf_dc.bin: bootcnf/bootcnf cfg_retail/pspbtcnf_dc.txt TM/DC9
bootcnf/bootcnf -it cfg_retail/pspbtcnf_dc.txt -ob pspbtcnf_dc.bin
psptools/pack_bootcfg.py pspbtcnf_dc.bin TM/DC9/retail/kd/pspbtcnf_dc.bin
rm pspbtcnf_dc.bin
TM/DC9/retail/kd/pspbtcnf_umd.bin: bootcnf/bootcnf cfg_retail/pspbtcnf_umd.txt TM/DC9
bootcnf/bootcnf -it cfg_retail/pspbtcnf_umd.txt -ob pspbtcnf_umd.bin
psptools/pack_bootcfg.py pspbtcnf_umd.bin TM/DC9/retail/kd/pspbtcnf_umd.bin
rm pspbtcnf_umd.bin
TM/DC9/retail/kd/pspbtcnf_np.bin: bootcnf/bootcnf cfg_retail/pspbtcnf_np.txt TM/DC9
bootcnf/bootcnf -it cfg_retail/pspbtcnf_np.txt -ob pspbtcnf_np.bin
psptools/pack_bootcfg.py pspbtcnf_np.bin TM/DC9/retail/kd/pspbtcnf_np.bin
rm pspbtcnf_np.bin
TM/DC9/retail/kd/pspbtcnf_m33.bin: bootcnf/bootcnf cfg_retail/pspbtcnf_m33.txt TM/DC9
bootcnf/bootcnf -it cfg_retail/pspbtcnf_m33.txt -ob pspbtcnf_m33.bin
psptools/pack_bootcfg.py pspbtcnf_m33.bin TM/DC9/retail/kd/pspbtcnf_m33.bin
rm pspbtcnf_m33.bin
TM/DC9/retail/kd/pspbtcnf_recovery.bin: bootcnf/bootcnf cfg_retail/pspbtcnf_recovery.txt TM/DC9
bootcnf/bootcnf -it cfg_retail/pspbtcnf_recovery.txt -ob pspbtcnf_recovery.bin
psptools/pack_bootcfg.py pspbtcnf_recovery.bin TM/DC9/retail/kd/pspbtcnf_recovery.bin
rm pspbtcnf_recovery.bin
TM/DC9/retail/kd/pspbtcnf_02g_dc.bin: bootcnf/bootcnf cfg_retail/pspbtcnf_02g_dc.txt TM/DC9
bootcnf/bootcnf -it cfg_retail/pspbtcnf_02g_dc.txt -ob pspbtcnf_02g_dc.bin
psptools/pack_bootcfg.py pspbtcnf_02g_dc.bin TM/DC9/retail/kd/pspbtcnf_02g_dc.bin
rm pspbtcnf_02g_dc.bin
TM/DC9/retail/kd/pspbtcnf_02g_umd.bin: bootcnf/bootcnf cfg_retail/pspbtcnf_02g_umd.txt TM/DC9
bootcnf/bootcnf -it cfg_retail/pspbtcnf_02g_umd.txt -ob pspbtcnf_02g_umd.bin
psptools/pack_bootcfg.py pspbtcnf_02g_umd.bin TM/DC9/retail/kd/pspbtcnf_02g_umd.bin
rm pspbtcnf_02g_umd.bin
TM/DC9/retail/kd/pspbtcnf_02g_np.bin: bootcnf/bootcnf cfg_retail/pspbtcnf_02g_np.txt TM/DC9
bootcnf/bootcnf -it cfg_retail/pspbtcnf_02g_np.txt -ob pspbtcnf_02g_np.bin
psptools/pack_bootcfg.py pspbtcnf_02g_np.bin TM/DC9/retail/kd/pspbtcnf_02g_np.bin
rm pspbtcnf_02g_np.bin
TM/DC9/retail/kd/pspbtcnf_02g_m33.bin: bootcnf/bootcnf cfg_retail/pspbtcnf_02g_m33.txt TM/DC9
bootcnf/bootcnf -it cfg_retail/pspbtcnf_02g_m33.txt -ob pspbtcnf_02g_m33.bin
psptools/pack_bootcfg.py pspbtcnf_02g_m33.bin TM/DC9/retail/kd/pspbtcnf_02g_m33.bin
rm pspbtcnf_02g_m33.bin
TM/DC9/retail/kd/pspbtcnf_02g_recovery.bin: bootcnf/bootcnf cfg_retail/pspbtcnf_02g_recovery.txt TM/DC9
bootcnf/bootcnf -it cfg_retail/pspbtcnf_02g_recovery.txt -ob pspbtcnf_02g_recovery.bin
psptools/pack_bootcfg.py pspbtcnf_02g_recovery.bin TM/DC9/retail/kd/pspbtcnf_02g_recovery.bin
rm pspbtcnf_02g_recovery.bin
TM/DC9/retail/kd/pspbtcnf_03g_dc.bin: bootcnf/bootcnf cfg_retail/pspbtcnf_03g_dc.txt TM/DC9
bootcnf/bootcnf -it cfg_retail/pspbtcnf_03g_dc.txt -ob pspbtcnf_03g_dc.bin
psptools/pack_bootcfg.py pspbtcnf_03g_dc.bin TM/DC9/retail/kd/pspbtcnf_03g_dc.bin
rm pspbtcnf_03g_dc.bin
TM/DC9/retail/kd/pspbtcnf_03g_umd.bin: bootcnf/bootcnf cfg_retail/pspbtcnf_03g_umd.txt TM/DC9
bootcnf/bootcnf -it cfg_retail/pspbtcnf_03g_umd.txt -ob pspbtcnf_03g_umd.bin
psptools/pack_bootcfg.py pspbtcnf_03g_umd.bin TM/DC9/retail/kd/pspbtcnf_03g_umd.bin
rm pspbtcnf_03g_umd.bin
TM/DC9/retail/kd/pspbtcnf_03g_np.bin: bootcnf/bootcnf cfg_retail/pspbtcnf_03g_np.txt TM/DC9
bootcnf/bootcnf -it cfg_retail/pspbtcnf_03g_np.txt -ob pspbtcnf_03g_np.bin
psptools/pack_bootcfg.py pspbtcnf_03g_np.bin TM/DC9/retail/kd/pspbtcnf_03g_np.bin
rm pspbtcnf_03g_np.bin
TM/DC9/retail/kd/pspbtcnf_03g_m33.bin: bootcnf/bootcnf cfg_retail/pspbtcnf_03g_m33.txt TM/DC9
bootcnf/bootcnf -it cfg_retail/pspbtcnf_03g_m33.txt -ob pspbtcnf_03g_m33.bin
psptools/pack_bootcfg.py pspbtcnf_03g_m33.bin TM/DC9/retail/kd/pspbtcnf_03g_m33.bin
rm pspbtcnf_03g_m33.bin
TM/DC9/retail/kd/pspbtcnf_03g_recovery.bin: bootcnf/bootcnf cfg_retail/pspbtcnf_03g_recovery.txt TM/DC9
bootcnf/bootcnf -it cfg_retail/pspbtcnf_03g_recovery.txt -ob pspbtcnf_03g_recovery.bin
psptools/pack_bootcfg.py pspbtcnf_03g_recovery.bin TM/DC9/retail/kd/pspbtcnf_03g_recovery.bin
rm pspbtcnf_03g_recovery.bin
TM/DC9/testingtool/kd/pspbtcnf_dc.bin: bootcnf/bootcnf cfg_testingtool/pspbtcnf_dc.txt TM/DC9
bootcnf/bootcnf -it cfg_testingtool/pspbtcnf_dc.txt -ob pspbtcnf_dc.bin
psptools/pack_bootcfg.py pspbtcnf_dc.bin TM/DC9/testingtool/kd/pspbtcnf_dc.bin
rm pspbtcnf_dc.bin
TM/DC9/testingtool/kd/pspbtcnf_umd.bin: bootcnf/bootcnf cfg_testingtool/pspbtcnf_umd.txt TM/DC9
bootcnf/bootcnf -it cfg_testingtool/pspbtcnf_umd.txt -ob pspbtcnf_umd.bin
psptools/pack_bootcfg.py pspbtcnf_umd.bin TM/DC9/testingtool/kd/pspbtcnf_umd.bin
rm pspbtcnf_umd.bin
TM/DC9/testingtool/kd/pspbtcnf_np.bin: bootcnf/bootcnf cfg_testingtool/pspbtcnf_np.txt TM/DC9
bootcnf/bootcnf -it cfg_testingtool/pspbtcnf_np.txt -ob pspbtcnf_np.bin
psptools/pack_bootcfg.py pspbtcnf_np.bin TM/DC9/testingtool/kd/pspbtcnf_np.bin
rm pspbtcnf_np.bin
TM/DC9/testingtool/kd/pspbtcnf_m33.bin: bootcnf/bootcnf cfg_testingtool/pspbtcnf_m33.txt TM/DC9
bootcnf/bootcnf -it cfg_testingtool/pspbtcnf_m33.txt -ob pspbtcnf_m33.bin
psptools/pack_bootcfg.py pspbtcnf_m33.bin TM/DC9/testingtool/kd/pspbtcnf_m33.bin
rm pspbtcnf_m33.bin
TM/DC9/testingtool/kd/pspbtcnf_recovery.bin: bootcnf/bootcnf cfg_testingtool/pspbtcnf_recovery.txt TM/DC9
bootcnf/bootcnf -it cfg_testingtool/pspbtcnf_recovery.txt -ob pspbtcnf_recovery.bin
psptools/pack_bootcfg.py pspbtcnf_recovery.bin TM/DC9/testingtool/kd/pspbtcnf_recovery.bin
rm pspbtcnf_recovery.bin
TM/DC9/testingtool/kd/pspbtcnf_02g_dc.bin: bootcnf/bootcnf cfg_testingtool/pspbtcnf_02g_dc.txt TM/DC9
bootcnf/bootcnf -it cfg_testingtool/pspbtcnf_02g_dc.txt -ob pspbtcnf_02g_dc.bin
psptools/pack_bootcfg.py pspbtcnf_02g_dc.bin TM/DC9/testingtool/kd/pspbtcnf_02g_dc.bin
rm pspbtcnf_02g_dc.bin
TM/DC9/testingtool/kd/pspbtcnf_02g_umd.bin: bootcnf/bootcnf cfg_testingtool/pspbtcnf_02g_umd.txt TM/DC9
bootcnf/bootcnf -it cfg_testingtool/pspbtcnf_02g_umd.txt -ob pspbtcnf_02g_umd.bin
psptools/pack_bootcfg.py pspbtcnf_02g_umd.bin TM/DC9/testingtool/kd/pspbtcnf_02g_umd.bin
rm pspbtcnf_02g_umd.bin
TM/DC9/testingtool/kd/pspbtcnf_02g_np.bin: bootcnf/bootcnf cfg_testingtool/pspbtcnf_02g_np.txt TM/DC9
bootcnf/bootcnf -it cfg_testingtool/pspbtcnf_02g_np.txt -ob pspbtcnf_02g_np.bin
psptools/pack_bootcfg.py pspbtcnf_02g_np.bin TM/DC9/testingtool/kd/pspbtcnf_02g_np.bin
rm pspbtcnf_02g_np.bin
TM/DC9/testingtool/kd/pspbtcnf_02g_m33.bin: bootcnf/bootcnf cfg_testingtool/pspbtcnf_02g_m33.txt TM/DC9
bootcnf/bootcnf -it cfg_testingtool/pspbtcnf_02g_m33.txt -ob pspbtcnf_02g_m33.bin
psptools/pack_bootcfg.py pspbtcnf_02g_m33.bin TM/DC9/testingtool/kd/pspbtcnf_02g_m33.bin
rm pspbtcnf_02g_m33.bin
TM/DC9/testingtool/kd/pspbtcnf_02g_recovery.bin: bootcnf/bootcnf cfg_testingtool/pspbtcnf_02g_recovery.txt TM/DC9
bootcnf/bootcnf -it cfg_testingtool/pspbtcnf_02g_recovery.txt -ob pspbtcnf_02g_recovery.bin
psptools/pack_bootcfg.py pspbtcnf_02g_recovery.bin TM/DC9/testingtool/kd/pspbtcnf_02g_recovery.bin
rm pspbtcnf_02g_recovery.bin
TM/DC9/testingtool/kd/pspbtcnf_03g_dc.bin: bootcnf/bootcnf cfg_testingtool/pspbtcnf_03g_dc.txt TM/DC9
bootcnf/bootcnf -it cfg_testingtool/pspbtcnf_03g_dc.txt -ob pspbtcnf_03g_dc.bin
psptools/pack_bootcfg.py pspbtcnf_03g_dc.bin TM/DC9/testingtool/kd/pspbtcnf_03g_dc.bin
rm pspbtcnf_03g_dc.bin
TM/DC9/testingtool/kd/pspbtcnf_03g_umd.bin: bootcnf/bootcnf cfg_testingtool/pspbtcnf_03g_umd.txt TM/DC9
bootcnf/bootcnf -it cfg_testingtool/pspbtcnf_03g_umd.txt -ob pspbtcnf_03g_umd.bin
psptools/pack_bootcfg.py pspbtcnf_03g_umd.bin TM/DC9/testingtool/kd/pspbtcnf_03g_umd.bin
rm pspbtcnf_03g_umd.bin
TM/DC9/testingtool/kd/pspbtcnf_03g_np.bin: bootcnf/bootcnf cfg_testingtool/pspbtcnf_03g_np.txt TM/DC9
bootcnf/bootcnf -it cfg_testingtool/pspbtcnf_03g_np.txt -ob pspbtcnf_03g_np.bin
psptools/pack_bootcfg.py pspbtcnf_03g_np.bin TM/DC9/testingtool/kd/pspbtcnf_03g_np.bin
rm pspbtcnf_03g_np.bin
TM/DC9/testingtool/kd/pspbtcnf_03g_m33.bin: bootcnf/bootcnf cfg_testingtool/pspbtcnf_03g_m33.txt TM/DC9
bootcnf/bootcnf -it cfg_testingtool/pspbtcnf_03g_m33.txt -ob pspbtcnf_03g_m33.bin
psptools/pack_bootcfg.py pspbtcnf_03g_m33.bin TM/DC9/testingtool/kd/pspbtcnf_03g_m33.bin
rm pspbtcnf_03g_m33.bin
TM/DC9/testingtool/kd/pspbtcnf_03g_recovery.bin: bootcnf/bootcnf cfg_testingtool/pspbtcnf_03g_recovery.txt TM/DC9
bootcnf/bootcnf -it cfg_testingtool/pspbtcnf_03g_recovery.txt -ob pspbtcnf_03g_recovery.bin
psptools/pack_bootcfg.py pspbtcnf_03g_recovery.bin TM/DC9/testingtool/kd/pspbtcnf_03g_recovery.bin
rm pspbtcnf_03g_recovery.bin
TM/DC9/tmctrl.prx: TM/DC9 ipl/common/libiplsdk.a
make -C ipl/rebootex clean
make -C ipl/rebootex BFLAGS="-DIPL_01G -DMSIPL=1"
cat ipl/rebootex/rebootex.bin | gzip > rebootex.bin.gz
$(PSPDEV)/bin/bin2s rebootex.bin.gz modules/flashemu/rebootex.S rebootex
rm rebootex.bin.gz
make -C ipl/rebootex clean
make -C ipl/rebootex BFLAGS="-DIPL_02G -DMSIPL=1"
cat ipl/rebootex/rebootex.bin | gzip > rebootex_02g.bin.gz
$(PSPDEV)/bin/bin2s rebootex_02g.bin.gz modules/flashemu/rebootex_02g.S rebootex_02g
rm rebootex_02g.bin.gz
make -C ipl/rebootex clean
make -C ipl/rebootex BFLAGS="-DIPL_03G -DMSIPL=1"
cat ipl/rebootex/rebootex.bin | gzip > rebootex_03g.bin.gz
$(PSPDEV)/bin/bin2s rebootex_03g.bin.gz modules/flashemu/rebootex_03g.S rebootex_03g
rm rebootex_03g.bin.gz
make -C modules/flashemu
python3 psptools/pack_module.py modules/flashemu/flashemu.prx TM/DC9/tmctrl.prx --tag 0x4c9416f0
TM/DC9/kd/ipl_update.prx: TM/DC9
make -C modules/ipl_update
python3 psptools/pack_module.py modules/ipl_update/ipl_update.prx TM/DC9/kd/ipl_update.prx --tag 0x4c9416f0
TM/DC9/kd/resurrection.prx: TM/DC9
make -C modules/vunbricker
python3 psptools/pack_module.py modules/vunbricker/resurrection.prx TM/DC9/kd/resurrection.prx --tag 0x38020af0
TM/DC9/kd/dcman.prx: TM/DC9
make -C modules/dcman
python3 psptools/pack_module.py modules/dcman/dcman.prx TM/DC9/kd/dcman.prx --tag 0x4c9416f0
TM/DC9/kd/iop.prx: TM/DC9
make -C modules/iop
python3 psptools/pack_module.py modules/iop/iop.prx TM/DC9/kd/iop.prx --tag 0x4c9416f0
TM/DC9/kd/lflash_fdisk.prx: TM/DC9
make -C modules/lflash_fdisk
python3 psptools/pack_module.py modules/lflash_fdisk/lflash_fdisk.prx TM/DC9/kd/lflash_fdisk.prx --tag 0x4c9416f0
TM/DC9/kd/idsregeneration.prx: TM/DC9
make -C modules/idsregeneration
python3 psptools/pack_module.py modules/idsregeneration/idsregeneration.prx TM/DC9/kd/idsregeneration.prx --tag 0x4c9416f0
TM/DC9/kd/emc_sm_updater.prx: TM/DC9
python3 psptools/pack_module.py modules/emc_sm_updater.prx TM/DC9/kd/emc_sm_updater.prx --tag 0x4c9416f0
TM/DC9/kd/lfatfs_updater.prx: TM/DC9
python3 psptools/pack_module.py modules/lfatfs_updater.prx TM/DC9/kd/lfatfs_updater.prx --tag 0x4c9416f0
TM/DC9/kd/lflash_fatfmt_updater.prx: TM/DC9
python3 psptools/pack_module.py modules/lflash_fatfmt_updater.prx TM/DC9/kd/lflash_fatfmt_updater.prx --tag 0x4c9416f0
TM/DC9/vsh/module/intraFont.prx: TM/DC9
python3 psptools/pack_module.py modules/intraFont.elf TM/DC9/vsh/module/intraFont.prx --tag 0x457b0af0
TM/DC9/vsh/module/vlf.prx: TM/DC9
python3 psptools/pack_module.py modules/vlf.elf TM/DC9/vsh/module/vlf.prx --tag 0x457b0af0
TM/DC9/kd/pspdecrypt.prx: TM/DC9
python3 psptools/pack_module.py modules/pspdecrypt.elf TM/DC9/kd/pspdecrypt.prx --tag 0x4c9416f0
TM/DC9/kd/galaxy.prx: TM/DC9
make -C modules/galaxy
python3 psptools/pack_module.py modules/galaxy/galaxy.prx TM/DC9/kd/galaxy.prx --tag 0x4c9416f0
TM/DC9/kd/idcanager.prx: TM/DC9
make -C modules/idcanager
python3 psptools/pack_module.py modules/idcanager/idcanager.prx TM/DC9/kd/idcanager.prx --tag 0x4c9416f0
TM/DC9/kd/march33.prx: TM/DC9
python3 psptools/pack_module.py modules/march33.elf TM/DC9/kd/march33.prx --tag 0x4c9416f0
TM/DC9/kd/popcorn.prx: TM/DC9
make -C modules/popcorn
python3 psptools/pack_module.py modules/popcorn/popcorn.prx TM/DC9/kd/popcorn.prx --tag 0x4c9416f0
TM/DC9/kd/nidresolver.prx: TM/DC9
make -C modules/nidresolver
python3 psptools/pack_module.py modules/nidresolver/nidresolver.prx TM/DC9/kd/nidresolver.prx --tag 0x4c9416f0
TM/DC9/kd/systemctrl.prx: TM/DC9 ipl/common/libiplsdk.a
make -C ipl/rebootex clean
make -C ipl/rebootex BFLAGS="-DIPL_01G"
cat ipl/rebootex/rebootex.bin | gzip > rebootex.bin.gz
$(PSPDEV)/bin/bin2s rebootex.bin.gz modules/systemctrl/rebootex.S rebootex
rm rebootex.bin.gz
make -C ipl/rebootex clean
make -C ipl/rebootex BFLAGS="-DIPL_02G"
cat ipl/rebootex/rebootex.bin | gzip > rebootex.bin.gz
$(PSPDEV)/bin/bin2s rebootex.bin.gz modules/systemctrl/rebootex_02g.S rebootex_02g
rm rebootex.bin.gz
make -C ipl/rebootex clean
make -C ipl/rebootex BFLAGS="-DIPL_03G"
cat ipl/rebootex/rebootex.bin | gzip > rebootex.bin.gz
$(PSPDEV)/bin/bin2s rebootex.bin.gz modules/systemctrl/rebootex_03g.S rebootex_03g
rm rebootex.bin.gz
make -C modules/systemctrl
python3 psptools/pack_module.py modules/systemctrl/systemctrl.prx TM/DC9/kd/systemctrl.prx --tag 0x4c9416f0
TM/DC9/kd/usbdevice.prx: TM/DC9
make -C modules/usbdevice
python3 psptools/pack_module.py modules/usbdevice/usbdevice.prx TM/DC9/kd/usbdevice.prx --tag 0x4c9416f0
TM/DC9/kd/vshctrl.prx: TM/DC9
make -C modules/vshctrl
python3 psptools/pack_module.py modules/vshctrl/vshctrl.prx TM/DC9/kd/vshctrl.prx --tag 0x4c9416f0
TM/DC9/vsh/module/recovery.prx: TM/DC9
python3 psptools/pack_module.py modules/recovery.elf TM/DC9/vsh/module/recovery.prx --tag 0x38020af0
TM/DC9/vsh/module/satelite.prx: TM/DC9
make -C modules/satelite
python3 psptools/pack_module.py modules/satelite/satelite.prx TM/DC9/vsh/module/satelite.prx --tag 0x457b0af0