-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrom_kit.bat
1013 lines (930 loc) · 35.8 KB
/
rom_kit.bat
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
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
@shift /0
@echo off
title Yet Another Rom Tool(1.0)
Setlocal EnableDelayedExpansion
:error
:skipme
set logdate=%DATE:~0,3%%DATE:~3,12%
set logtime=%TIME:~0,4%%TIME:~4,24%
echo.
:check
::Section for checking recent activity'
if not exist %temp% goto home
if exist %temp%\date_log.txt goto _recent
set activity=" "
echo %date% >> %temp%\date_log.txt
set recent=
goto home
:_recent
if exist %temp%\date_log.txt (
set /p recent=<%temp%\date_log.txt
)
del %temp%\date_log.txt
set "activity=Today's Date:"
set "activitytime=Time :"
echo %date% >> %temp%\date_log.txt
goto home
::::::::::::::::::::::::::::::::::::::
:home
cls
mode con:cols=100 lines=38
echo.
bin\utils\cecho {60} Yet Another Rom Tool {#}
echo.
echo by mr.vybes - Telegram: @nanavybes
bin\utils\cecho {0d}=============={#}
echo.
bin\utils\cecho {30} Yet another unpack/repack tool 'for Android ROM images {#}
echo.
bin\utils\cecho {0e}thanks to @jancox-tool{#}
echo.
echo.
bin\utils\cecho {0b}%activity% {#}{60} %date%{#} / {0b}%activitytime% {#}{20} %time%{#}
echo.
bin\utils\cecho {0b} ***********************************************************************{#}
echo.
echo.
echo Toolbox : pick a choice
bin\utils\ctext " {0b}=============================={0b}{\n}"
echo.
bin\utils\ctext " {0a}[c] *Cleanup!!!{0e} // {0c}[e] *Exit{0e}{\n}"
echo.
bin\utils\cecho {0b}=========={#}
echo.
bin\utils\cecho {0b} AUTO {#}
echo.
bin\utils\cecho {0b}=========={#}
echo.
bin\utils\ctext " {0e}[a] *Unpack ROM.zip{0e} {0e}[r] *Repack ROM.zip{0e}{\n}"
echo.
bin\utils\cecho {0b}=========={#}
echo.
bin\utils\cecho {0b} MANUAL {#}
echo.
bin\utils\cecho {0b}=========={#}
echo.
bin\utils\ctext " {0e}[1] *Unpack system.img{0e} {0e}[3] *Unpack new.dat{0e} {0e}[5] *Unpack new.dat.br{0e} {0e}[7] *Unpack vendor{0e}{\n}"
echo.
bin\utils\ctext " {0f} --------{0f} {0f} --------{0f} {0f} --------{0f} {0f} --------{0f}{\n}"
echo.
bin\utils\ctext " {0e}[2] *Repack system.img{0e} {0e}[4] *Repack new.dat{0e} {0e}[6] *Repack new.dat.br{0e} {0e}[8] *Repack vendor{0e}{\n}"
echo.
echo.
bin\utils\cecho {0f}
set /p web= Type option *:
bin\utils\cecho {0f} {#}
echo.
echo.
if "%web%"=="a" goto unpack_rom
if "%web%"=="r" goto repack_rom
if "%web%"=="1" goto unpack_image
if "%web%"=="2" goto repack_image
if "%web%"=="3" goto unpack_dat
if "%web%"=="4" goto repack_dat
if "%web%"=="5" goto unpack_br
if "%web%"=="6" goto repack_br
if "%web%"=="7" goto unpack_vendor
if "%web%"=="8" goto repack_vendor
if "%web%"=="c" goto cleanup
if "%web%"=="e" exit
goto home
echo.
::::::::::::::::::::::::::::::::::::::
:cleanup
cls
mode con:cols=100 lines=38
echo.
echo.
bin\utils\cecho {60} Yet Another Rom Tool {#}
echo.
echo by mr.vybes - Telegram: @nanavybes
bin\utils\cecho {0d}=============={#}
echo.
bin\utils\cecho {30} Yet another unpack/repack tool 'for Android ROM images {#}
echo.
bin\utils\cecho {0e}thanks to @jancox-tool{#}
echo.
echo.
bin\utils\cecho {0b}%activity% {#}{60} %date%{#} / {0b}%activitytime% {#}{20} %time%{#}
echo.
bin\utils\cecho {0b} ***********************************************************************{#}
echo.
echo.
echo.
echo.
bin\utils\cecho {0b} - Cleaning up...{#}
echo.
echo.
if exist auto_unpack\extracted rd /s /q auto_unpack\extracted
if exist auto_unpack\tmp rd /s /q auto_unpack\tmp
if exist auto_unpack\rom.zip del auto_unpack\rom.zip
if exist auto_unpack\repack_done\new_rom.zip del auto_unpack\repack_done\new_rom.zip
if exist manual_unpack\place_* (
bin\utils\busybox rm -rf auto_unpack\extracted\
bin\utils\busybox rm -rf auto_unpack\repack_done\
bin\utils\busybox rm -rf manual_unpack\extracted\
bin\utils\busybox rm -rf manual_unpack\place_img_here\
bin\utils\busybox rm -rf manual_unpack\place_dat_here\
bin\utils\busybox rm -rf manual_unpack\place_br_here\
bin\utils\busybox rm -rf manual_unpack\place_vendor_here\
bin\utils\busybox rm -rf manual_unpack\repack_done\
mkdir auto_unpack\extracted auto_unpack\repack_done manual_unpack\extracted manual_unpack\repack_done manual_unpack\place_br_here manual_unpack\place_dat_here manual_unpack\place_img_here manual_unpack\place_vendor_here
)
echo.
echo.
bin\utils\cecho {0a} - all files removed...[OK!]{#}
echo.
echo.
pause
goto home
::::::::::::::::::::::::::::::::::::::
:unpack_rom
cls
mode con:cols=100 lines=38
echo.
echo.
bin\utils\cecho {60} Yet Another Rom Tool {#}
echo.
echo by mr.vybes - Telegram: @nanavybes
bin\utils\cecho {0d}=============={#}
echo.
bin\utils\cecho {30} Yet another unpack/repack tool 'for Android ROM images {#}
echo.
bin\utils\cecho {0e}thanks to @jancox-tool{#}
echo.
echo.
bin\utils\cecho {0b}%activity% {#}{60} %date%{#} / {0b}%activitytime% {#}{20} %time%{#}
echo.
bin\utils\cecho {0b} ***********************************************************************{#}
echo.
echo.
bin\utils\cecho {0b} - Processing...{#}
echo.
echo.
if exist auto_unpack\extracted\tmp rd /s /q auto_unpack\extracted\tmp
if exist auto_unpack\extracted rd /s /q auto_unpack\extracted
if not exist auto_unpack\extracted\tmp mkdir auto_unpack\extracted\tmp
if not exist auto_unpack\extracted mkdir auto_unpack\extracted
if exist auto_unpack\rom.zip (
bin\utils\cecho {0b} - Unpacking Your ROM.zip!{#}
echo.
bin\utils\busybox unzip -o auto_unpack\rom.zip -d auto_unpack\extracted\tmp >nul
) else (
bin\utils\cecho {0c} - rom.zip 'not found!{#}
echo.
pause
goto home
)
if exist auto_unpack\extracted\tmp\system.new.dat.br (
bin\utils\cecho {0b} - Unpack system.new.dat.br{#}
echo.
bin\utils\brotli -d auto_unpack\extracted\tmp\system.new.dat.br >nul
del auto_unpack\extracted\tmp\system.new.dat.br
)
if exist auto_unpack\extracted\tmp\vendor.new.dat.br (
bin\utils\cecho {0b} - Unpack vendor.new.dat.br{#}
echo.
bin\utils\brotli -d auto_unpack\extracted\tmp\vendor.new.dat.br >nul
del auto_unpack\extracted\tmp\vendor.new.dat.br
)
if exist auto_unpack\extracted\tmp\system.new.dat (
bin\utils\cecho {0b} - Unpack system.new.dat{#}
echo.
bin\utils\sdat2img auto_unpack\extracted\tmp\system.transfer.list auto_unpack\extracted\tmp\system.new.dat auto_unpack\extracted\tmp\system.img >nul 2>nul
del auto_unpack\extracted\tmp\system.new.dat
del auto_unpack\extracted\tmp\system.transfer.list
del auto_unpack\extracted\tmp\system.patch.dat
)
if exist auto_unpack\extracted\tmp\vendor.new.dat (
bin\utils\cecho {0b} - Unpack vendor.new.dat{#}
echo.
bin\utils\sdat2img auto_unpack\extracted\tmp\vendor.transfer.list auto_unpack\extracted\tmp\vendor.new.dat auto_unpack\extracted\tmp\vendor.img >nul 2>nul
del auto_unpack\extracted\tmp\vendor.new.dat
del auto_unpack\extracted\tmp\vendor.transfer.list
del auto_unpack\extracted\tmp\vendor.patch.dat
)
if exist auto_unpack\extracted\tmp\system.img (
bin\utils\cecho {0b} - Unpack system.img{#}
echo.
bin\utils\imgextractor auto_unpack\extracted\tmp\system.img auto_unpack\extracted\system >nul 2>nul
del auto_unpack\extracted\tmp\system.img
)
if exist auto_unpack\extracted\tmp\vendor.img (
bin\utils\cecho {0b} - Unpack vendor.img{#}
echo.
bin\utils\imgextractor auto_unpack\extracted\tmp\vendor.img auto_unpack\extracted\vendor >nul 2>nul
del auto_unpack\extracted\tmp\vendor.img
)
mkdir auto_unpack\extracted\extra
set tmp=auto_unpack\extracted\tmp
if exist %tmp%\system_file_contexts move /y %tmp%\system_file_contexts auto_unpack\extracted\extra\ >nul 2>nul
if exist %tmp%\vendor_file_contexts move /y %tmp%\vendor_file_contexts auto_unpack\extracted\extra\ >nul 2>nul
if exist %tmp%\system_fs_config move /y %tmp%\system_fs_config auto_unpack\extracted\extra\ >nul 2>nul
if exist %tmp%\vendor_fs_config move /y %tmp%\vendor_fs_config auto_unpack\extracted\extra\ >nul 2>nul
if exist %tmp%\boot.img move /y %tmp%\boot.img auto_unpack\extracted\extra\ >nul 2>nul
if exist %tmp%\dtbo.img move /y %tmp%\dtbo.img auto_unpack\extracted\extra\ >nul 2>nul
if exist %tmp%\vbmeta.img move /y %tmp%\vbmeta.img auto_unpack\extracted\extra\ >nul 2>nul
if exist %tmp%\compatibility.zip move /y %tmp%\compatibility.zip auto_unpack\extracted\extra\ >nul 2>nul
if exist %tmp%\compatibility_no_nfc.zip move /y %tmp%\compatibility_no_nfc.zip auto_unpack\extracted\extra\ >nul 2>nul
if exist %tmp%\install move /y %tmp%\install auto_unpack\extracted\extra\install >nul 2>nul
if exist %tmp%\firmware-update move /y %tmp%\firmware-update auto_unpack\extracted\extra\ >nul 2>nul
if exist %tmp%\META-INF move /y %tmp%\META-INF auto_unpack\extracted\extra\ >nul 2>nul
if exist %tmp%\system move /y %tmp%\system auto_unpack\extracted\extra\system2\ >nul 2>nul
if exist auto_unpack\extracted\system (
echo.
bin\utils\cecho {0b} - ROM Unpacked into folder "/extracted"{#}
echo.
echo.
bin\utils\cecho {0b} - ROM Info:{#}
echo.
echo.
bin\utils\busybox sh ./bin/utils/utility_auto.sh rom-info
bin\utils\busybox sh ./bin/utils/utility_auto.sh rom-info >> auto_unpack/extracted/rom-info
echo.
)
if exist auto_unpack\extracted rd /s /q auto_unpack\extracted\tmp
echo.
echo.
pause
goto home
::::::::::::::::::::::::::::::::::::::
:repack_rom
cls
mode con:cols=100 lines=38
echo.
echo.
bin\utils\cecho {60} Yet Another Rom Tool {#}
echo.
echo by mr.vybes - Telegram: @nanavybes
bin\utils\cecho {0d}=============={#}
echo.
bin\utils\cecho {30} Yet another unpack/repack tool 'for Android ROM images {#}
echo.
bin\utils\cecho {0e}thanks to @jancox-tool{#}
echo.
echo.
bin\utils\cecho {0b}%activity% {#}{60} %date%{#} / {0b}%activitytime% {#}{20} %time%{#}
echo.
bin\utils\cecho {0b} ***********************************************************************{#}
echo.
echo.
bin\utils\cecho {0b} - Processing...{#}
echo.
echo.
if exist auto_unpack\extracted\system (
bin\utils\busybox sh ./bin/utils/utility_auto.sh rom-info
echo.
)
if exist auto_unpack\new_rom.zip del auto_unpack\new_rom.zip
if exist auto_unpack\tmp rd /s /q auto_unpack\tmp
if exist auto_unpack\extracted\tmp rd /s /q auto_unpack\extracted\tmp
if not exist auto_unpack\extracted\tmp mkdir auto_unpack\extracted\tmp
if exist auto_unpack\extracted\system_size.txt (
bin\utils\cecho {0b} - Repacking to ROM.zip!{#}
echo.
)
set /p systemsize=<"auto_unpack\extracted\system_size.txt"
bin\utils\cecho {0b} - Repack System Image!{#}
echo.
bin\utils\make_ext4fs -s -T 0 -S auto_unpack\extracted\extra\system_file_contexts -C auto_unpack\extracted\extra\system_fs_config -l %systemsize% -a system auto_unpack\extracted\tmp\system.new.img auto_unpack\extracted\system\ >nul
bin\utils\cecho {0b} - Repack Vendor-Image!{#}
echo.
if not exist auto_unpack\extracted\extra\vendor_file_contexts (
echo.
bin\utils\ctext "{0c} !# SKIPPING VENDOR BUILD -- 'vendor_file_contexts' not exist,{0c}{\n}
bin\utils\ctext "{0c} add a prebuilt 'vendor_file_contexts(file_contexts)'{0c}{\n}
bin\utils\ctext "{0c} & continue or manually add a compiled vendor.new.dat(.br){0c}{\n}"
bin\utils\ctext "{0c} to your ROM.zip when completed{0c}{\n}"
echo.
) else (
set /p vendorsize=<"auto_unpack\extracted\vendor_size.txt"
bin\utils\make_ext4fs -s -T 0 -S auto_unpack\extracted\extra\vendor_file_contexts -C auto_unpack\extracted\extra\vendor_fs_config -l %vendorsize% -a vendor auto_unpack\extracted\tmp\vendor.new.img auto_unpack\extracted\vendor\ >nul
)
if exist auto_unpack\extracted\tmp (
if exist auto_unpack\extracted\tmp\system.new.img (
bin\utils\cecho {0b} - Repack to system.new.dat{#}
echo.
bin\utils\img2sdat auto_unpack\extracted\tmp\system.new.img -o auto_unpack\extracted\tmp -v 4 >nul 2>nul
del auto_unpack\extracted\tmp\system.new.img
)
if exist auto_unpack\extracted\tmp\vendor.new.img (
bin\utils\cecho {0b} - Repacking to vendor.new.dat{#}
echo.
bin\utils\img2sdat auto_unpack\extracted\tmp\vendor.new.img -o auto_unpack\extracted\tmp -v 4 -p vendor >nul 2>nul
del auto_unpack\extracted\tmp\vendor.new.img
)
if exist auto_unpack\extracted\tmp\system.new.dat (
bin\utils\cecho {0b} - Repacking to system.new.dat.br{#}
echo.
bin\utils\brotli -1 -j -w 24 auto_unpack\extracted\tmp\system.new.dat >nul
)
if exist auto_unpack\tmp\vendor.new.dat (
bin\utils\cecho {0b} - Repacking to vendor.new.dat.br{#}
echo.
bin\utils\brotli -1 -j -w 24 auto_unpack\extracted\tmp\vendor.new.dat >nul
)
)
if exist auto_unpack\extracted\tmp\system.new.dat.br (
echo.
bin\utils\cecho {0b} - Finalizing...{#}
echo.
set tmp=auto_unpack\extracted\extra
set tmp1=auto_unpack\extracted\tmp
if exist %tmp%\extra\boot.img copy /y %tmp%\extra\boot.img %tmp1%\ >nul 2>nul
if exist %tmp%\extra\dtbo.img copy /y %tmp%\extra\dtbo.img %tmp1%\ >nul 2>nul
if exist %tmp%\extra\vbmeta.img copy /y %tmp%\extra\vbmeta.img %tmp1%\ >nul 2>nul
if exist %tmp%\extra\compatibility.zip copy /y %tmp%\extra\compatibility.zip %tmp1% >nul
if exist %tmp%\extra\compatibility_no_nfc.zip copy /y %tmp%\extra\compatibility_no_nfc.zip %tmp1% >nul
if exist %tmp%\extra\install xcopy /i /e /y %tmp%\extra\install %tmp%1\install >nul 2>nul
if exist %tmp%\extra\firmware-update xcopy /i /e %tmp%\extra\firmware-update %tmp1%\firmware-update >nul 2>nul
if exist %tmp%\extra\META-INF xcopy /i /e /y %tmp%\extra\META-INF %tmp1%\META-INF >nul 2>nul
if exist %tmp%\extra\system2 xcopy /i /e /y auto_unpack\extracted\system2 %tmp1%\system >nul 2>nul
bin\utils\cecho {0b} - Zipping...{#}
bin\utils\7za a -tzip new_rom.zip ./auto_unpack/extracted/tmp/* >nul 2>nul
)
@REM if exist auto_unpack\extracted\tmp\META-INF (
@REM bin\utils\cecho {0b} - Zipping...{#}
@REM bin\utils\7za a -tzip new_rom.zip ./auto_unpack/extracted/tmp/* >nul 2>nul
@REM )
if exist auto_unpack\extracted\tmp\new_rom.zip (
cls
mode con:cols=100 lines=38
echo.
echo.
bin\utils\cecho {60} Yet Another Rom Tool {#}
echo.
echo by mr.vybes - Telegram: @nanavybes
bin\utils\cecho {0d}=============={#}
echo.
bin\utils\cecho {30} Yet another unpack/repack tool 'for Android ROM images {#}
echo.
bin\utils\cecho {0e}thanks to @jancox-tool{#}
echo.
echo.
bin\utils\cecho {0b}%activity% {#}{60} %date%{#} / {0b}%activitytime% {#}{20} %time%{#}
echo.
bin\utils\cecho {0b} ***********************************************************************{#}
echo.
echo.
echo.
bin\utils\busybox mv auto_unpack\extracted\tmp\new_rom.zip auto_unpack\repack_done\ >nul 2>nul
echo.
bin\utils\cecho {0b} Completed!{#}
echo.
bin\utils\cecho {0b} ********* {#}
echo.
bin\utils\cecho {0b} ROM Info:{#}
echo.
bin\utils\busybox sh ./bin/utils/utility_auto.sh rom-info
bin\utils\busybox sh ./bin/utils/utility_auto.sh rom-info >> auto_unpack/extracted/rom-info
echo.
echo.
bin\utils\cecho {0a} - "new_rom.zip" Baked! into folder "/repack_done"{#}
echo.
if exist auto_unpack\repack_done\new_rom.zip rd /s /q auto_unpack\extracted\tmp
echo.
echo.
echo.
pause
goto home
) else (
echo.
echo.
bin\utils\cecho {0c} - Error!!{#}
echo.
echo.
pause
goto home
)
::::::::::::::::::::::::::::::::::::::
:unpack_image
cls
mode con:cols=100 lines=38
echo.
echo.
bin\utils\cecho {60} Yet Another Rom Tool {#}
echo.
echo by mr.vybes - Telegram: @nanavybes
bin\utils\cecho {0d}=============={#}
echo.
bin\utils\cecho {30} Yet another unpack/repack tool 'for Android ROM images {#}
echo.
bin\utils\cecho {0e}thanks to @jancox-tool{#}
echo.
echo.
bin\utils\cecho {0b}%activity% {#}{60} %date%{#} / {0b}%activitytime% {#}{20} %time%{#}
echo.
bin\utils\cecho {0b} ***********************************************************************{#}
echo.
echo.
echo.
echo.
bin\utils\cecho {0b} - Unpack into "accessible system"{#}
echo.
echo.
if exist manual_unpack\extracted rd /s /q manual_unpack\extracted
if not exist manual_unpack\extracted mkdir manual_unpack\extracted
if exist manual_unpack\place_img_here\system.img (
echo system.img file found
) else (
bin\utils\cecho {0c} - system.img not found in "place_img_here"{#}
echo.
echo.
echo.
pause
goto home
)
if exist manual_unpack\place_img_here\system.img (
bin\utils\cecho {0b} - Unpacking "system.img"{#}
echo.
bin\utils\imgextractor manual_unpack\place_img_here\system.img manual_unpack\extracted\system >nul 2>nul
)
set tmp=manual_unpack\place_img_here\
if exist %tmp%\system_file_contexts move /y %tmp%\system_file_contexts manual_unpack\extracted\ >nul 2>nul
if exist %tmp%\system_fs_config move /y %tmp%\system_fs_config manual_unpack\extracted\ >nul 2>nul
if exist %tmp%\system move /y %tmp%\system manual_unpack\extracted\system2 >nul 2>nul
if exist manual_unpack\extracted\system (
bin\utils\cecho {0b} - "system.img" Unpack Done!{#}
echo.
bin\utils\busybox sh ./bin/utils/utility_man.sh rom-info
bin\utils\busybox sh ./bin/utils/utility_man.sh rom-info >> maual_unpack/extracted/rom-info
echo.
)
if exist manual_unpack\extracted rd /s /q manual_unpack\extracted\tmp
echo.
echo.
set /p rmsysimg=_Do you want to remove old system.img [yes/no]? :
echo.
if "%rmsysimg%"=="y" goto remove_img
if "%rmsysimg%"=="n" goto skip_del_img
:remove_img
if exist manual_unpack\place_img_here\system.img del manual_unpack\place_img_here\system.img
if not exist manual_unpack\place_img_here\system.img echo checking...
if exist manual_unpack\place_img_here\system.raw.img del manual_unpack\place_img_here\system.raw.img
if not exist manual_unpack\place_img_here\system.raw.img echo checking...
bin\utils\cecho {0e} - file removed!{#}
echo.
echo.
pause
goto home
:skip_del_img
if exist manual_unpack\place_img_here\system.raw.img del manual_unpack\place_img_here\system.raw.img
if not exist manual_unpack\place_img_here\system.raw.img echo 'nothing found
if exist manual_unpack\place_img_here\system.img bin\utils\cecho {0e} - file kept!{#}
echo.
echo.
pause
goto home
::::::::::::::::::::::::::::::::::::::
:repack_image
cls
mode con:cols=100 lines=38
echo.
echo.
bin\utils\cecho {60} Yet Another Rom Tool {#}
echo.
echo by mr.vybes - Telegram: @nanavybes
bin\utils\cecho {0d}=============={#}
echo.
bin\utils\cecho {30} Yet another unpack/repack tool 'for Android ROM images {#}
echo.
bin\utils\cecho {0e}thanks to @jancox-tool{#}
echo.
echo.
bin\utils\cecho {0b}%activity% {#}{60} %date%{#} / {0b}%activitytime% {#}{20} %time%{#}
echo.
bin\utils\cecho {0b} ***********************************************************************{#}
echo.
echo.
echo.
echo.
bin\utils\cecho {0b} - Repack into "system.img"{#}
echo.
echo.
if exist manual_unpack\place_img_here\tmp rd /s /q manual_unpack\place_img_here\tmp
if not exist manual_unpack\place_img_here\tmp mkdir manual_unpack\place_img_here\tmp
if exist manual_unpack\repack_done rd /s /q manual_unpack\repack_done
if not exist manual_unpack\repack_done mkdir manual_unpack\repack_done
if exist manual_unpack\extracted\system (
bin\utils\busybox sh ./bin/utils/utility_man.sh rom-info
bin\utils\busybox sh ./bin/utils/utility_man.sh rom-info >> manual_unpack/extracted/rom-info
echo.
) else (
bin\utils\cecho {0c} - there is nothing to repack from "place_img_here"{#}
echo.
echo.
echo.
pause
goto home
echo.
)
::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
::TODO for custom system_size
::ctext "{0f} Enter size for new image = %new_size% byte{0b}{\n}"
::ctext "{0f} -----------------------------------{0b}{\n}"
::echo.
::set /p new_size=_Enter size in bytes :
::echo %new_size%>>manual_unpack\extracted\system_size.txt
::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
set /p systemsize=<"manual_unpack\extracted\system_size.txt"
bin\utils\cecho {0b} - Repack System Image!{#}
echo.
bin\utils\make_ext4fs -s -T 0 -S manual_unpack\extracted\system_file_contexts -C manual_unpack\extracted\system_fs_config -l %systemsize% -a system manual_unpack\place_img_here\tmp\system.new.img manual_unpack\extracted\system\ >nul
bin\utils\busybox mv manual_unpack\place_img_here\tmp\system.new.img manual_unpack\repack_done\ >nul 2>nul
echo.
echo.
bin\utils\cecho {0a} - new file "system.new.img" Baked! into folder "/repack_done"{#}
echo.
echo.
echo.
pause
goto home
::::::::::::::::::::::::::::::::::::::
:unpack_dat
cls
mode con:cols=100 lines=38
echo.
echo.
bin\utils\cecho {60} Yet Another Rom Tool {#}
echo.
echo by mr.vybes - Telegram: @nanavybes
bin\utils\cecho {0d}=============={#}
echo.
bin\utils\cecho {30} Yet another unpack/repack tool 'for Android ROM images {#}
echo.
bin\utils\cecho {0e}thanks to @jancox-tool{#}
echo.
echo.
bin\utils\cecho {0b}%activity% {#}{60} %date%{#} / {0b}%activitytime% {#}{20} %time%{#}
echo.
bin\utils\cecho {0b} ***********************************************************************{#}
echo.
echo.
echo.
echo.
bin\utils\cecho {0b} - Unpacking "system.new.dat"{#}
bin\utils\cecho {0f} ** be sure that [system.new.dat] & [system.transfer.list]{#}
bin\utils\cecho {0f} are already placed into the folder **{#}
echo.
echo.
if exist manual_unpack\place_dat_here\system.new.dat (
bin\utils\cecho {0b} - Unpacking...{#}
bin\utils\sdat2img place_dat_here\system.transfer.list place_dat_here\system.new.dat place_dat_here\system.new.img >nul 2>nul
if exist manual_unpack\place_dat_here\system.new.dat place_dat_here\system.transfer.list place_dat_here\system.patch.dat del place_dat_here\system.new.dat place_dat_here\system.transfer.list place_dat_here\system.patch.dat
if not exist place_dat_here\system.transfer.list place_dat_here\system.patch.dat echo 'files removed
)
if exist manual_unpack\place_dat_here\system.new.img (
bin\utils\cecho {0b} - working[lvl 01]...{#}
echo.
bin\utils\imgextractor place_dat_here\system.new.img extracted\system >nul 2>nul
)
set tmp=place_dat_here\
if exist %tmp%\system_file_contexts move /y %tmp%\system_file_contexts extracted\ >nul 2>nul
if exist %tmp%\system_fs_config move /y %tmp%\system_fs_config extracted\ >nul 2>nul
if exist %tmp%\system move /y %tmp%\system extracted\system2 >nul 2>nul
if exist manual_unpack\extracted\system (
bin\utils\cecho {0b} - "system.new.dat" Unpack Done!{#}
echo.
bin\utils\cecho {0b} - check "/extracted" 'for files{#}
echo.
bin\utils\busybox sh ./bin/utils/utility_man.sh rom-info
bin\utils\busybox sh ./bin/utils/utility_man.sh rom-info >> manual_unpack/extracted/rom-info
echo.
)
if exist manual_unpack\extracted rd /s /q bin\tmp
echo.
echo.
pause
goto home
::::::::::::::::::::::::::::::::::::::
:repack_dat
cls
mode con:cols=100 lines=38
echo.
echo.
bin\utils\cecho {60} Yet Another Rom Tool {#}
echo.
echo by mr.vybes - Telegram: @nanavybes
bin\utils\cecho {0d}=============={#}
echo.
bin\utils\cecho {30} Yet another unpack/repack tool 'for Android ROM images {#}
echo.
bin\utils\cecho {0e}thanks to @jancox-tool{#}
echo.
echo.
bin\utils\cecho {0b}%activity% {#}{60} %date%{#} / {0b}%activitytime% {#}{20} %time%{#}
echo.
bin\utils\cecho {0b} ***********************************************************************{#}
echo.
echo.
echo.
echo.
bin\utils\cecho {0b} - image info!{#}
echo.
echo.
if exist manual_unpack\extracted\system (
bin\utils\busybox sh ./bin/utils/utility_man.sh rom-info
bin\utils\busybox sh ./bin/utils/utility_man.sh rom-info >> manual_unpack/extracted/rom-info
echo.
)
if not exist manual_unpack\place_dat_here\system.new.img (
bin\utils\cecho {0c} required file ... 'NOT FOUND!{#}
echo.
bin\utils\cecho {0e} ...copy 'system.new.img' to folder "/place_dat_here"{#}
echo.
echo.
pause
goto home
) else (
if exist manual_unpack\place_dat_here\system.new.img (
bin\utils\cecho {0b} - Repack "system.new.dat"{#}
echo.
if exist manual_unpack\place_dat_here\system.new.dat del manual_unpack\place_dat_here\system.new.dat
bin\utils\cecho {0b} - working[lvl 01!]...{#}
bin\utils\img2sdat manual_unpack\place_dat_here\system.new.img -o manual_unpack\place_dat_here -v 4 >nul 2>nul
)
)
del manual_unpack\place_dat_here\system.new.img
if exist manual_unpack\place_dat_here\system.new.dat.br del manual_unpack\place_dat_here\system.new.dat.br
set tmp=manual_unpack\repack_done
bin\utils\busybox mv manual_unpack\place_dat_here\system.new.dat %tmp%\ >nul 2>nul
bin\utils\busybox mv manual_unpack\place_dat_here\system.transfer.list %tmp%\ >nul 2>nul
bin\utils\busybox mv manual_unpack\place_dat_here\system.patch.dat %tmp%\ >nul 2>nul
echo.
bin\utils\cecho {0a} - new file "system.new.dat" Baked! into folder "/repack_done"{#}
echo.
echo.
pause
goto home
else (
bin\utils\cecho {0b} - Repack "system.new.dat" {#}
echo.
set /p systemsize=<"manual_unpack\extracted\system_size.txt"
bin\utils\cecho {0b} - Repacking...{#}
bin\utils\make_ext4fs -s -L system -T -1 -S manual_unpack\extracted\system_file_contexts-C manual_unpack\extracted\system_fs_config -l %systemsize% -a system manual_unpack\place_dat_here\system.new.img manual_unpack\extracted\system\ >nul
echo.
bin\utils\cecho {0b} - working[lvl 01!]...{#}
echo.
if exist manual_unpack\place_dat_here\system.new.img
bin\utils\cecho {0b} - working[lvl 02!]...{#}
if exist manual_unpack\place_dat_here\system.new.dat del manual_unpack\place_dat_here\system.new.dat
bin\utils\img2sdat manual_unpack\place_dat_here\system.new.img -o repack_done -v 4 >nul 2>nul
del manual_unpack\place_dat_here\system.new.img
if exist manual_unpack\place_dat_here\system.new.dat.br del manual_unpack\place_dat_here\system.new.dat.br
echo.
set tmp=manual_unpack\repack_done
bin\utils\busybox mv manual_unpack\place_dat_here\system.new.dat %tmp%\ >nul 2>nul
bin\utils\busybox mv manual_unpack\place_dat_here\system.transfer.list %tmp%\ >nul 2>nul
bin\utils\busybox mv manual_unpack\place_dat_here\system.patch.dat %tmp%\ >nul 2>nul
bin\utils\cecho {0a} - new file "system.new.dat" Baked! into folder "/repack_done"{#}
echo.
echo.
pause
goto home
)
echo.
::::::::::::::::::::::::::::::::::::::
:unpack_br
cls
mode con:cols=100 lines=38
echo.
echo.
bin\utils\cecho {60} Yet Another Rom Tool {#}
echo.
echo by mr.vybes - Telegram: @nanavybes
bin\utils\cecho {0d}=============={#}
echo.
bin\utils\cecho {30} Yet another unpack/repack tool 'for Android ROM images {#}
echo.
bin\utils\cecho {0e}thanks to @jancox-tool{#}
echo.
echo.
bin\utils\cecho {0b}%activity% {#}{60} %date%{#} / {0b}%activitytime% {#}{20} %time%{#}
echo.
bin\utils\cecho {0b} ***********************************************************************{#}
echo.
echo.
echo.
echo.
bin\utils\cecho {0b} - Unpacking "system.new.dat.br"{#}
bin\utils\cecho {0f} ** be sure that [system.patch.dat] & [system.transfer.list]{#}
bin\utils\cecho {0f} are already placed into the folder **{#}
echo.
echo.
if exist manual_unpack\place_img_here\system.new.dat.br (
bin\utils\cecho {0b} - Unpacking...{#}
bin\utils\brotli -d place_br_here\system.new.dat.br >nul
if exist manual_unpack\place_img_here\system.new.dat.br del place_br_here\system.new.dat.br
bin\utils\cecho {0b} - old system.new.dat.br removed
echo.
)
if exist manual_unpack\place_img_here\system.new.dat (
bin\utils\cecho {0b} - working[lvl 02]...{#}
bin\utils\sdat2img place_br_here\system.transfer.list place_br_here\system.new.dat place_br_here\system.img >nul 2>nul
if exist manual_unpack\place_img_here\system.new.dat place_br_here\system.transfer.list place_br_here\system.patch.dat del place_br_here\system.new.dat place_br_here\system.transfer.list place_br_here\system.patch.dat
if not exist place_br_here\system.transfer.list place_br_here\system.patch.dat echo 'files removed
)
if exist manual_unpack\place_img_here\system.new.img (
bin\utils\cecho {0b} - working[lvl 01]...{#}
echo.
bin\utils\imgextractor manual_unpack\place_br_here\system.new.img manual_unpack\extracted\system >nul 2>nul
)
set tmp=manual_unpack\place_br_here
if exist %tmp%\system_file_contexts move /y %tmp%\system_file_contexts manual_unpack\extracted\ >nul 2>nul
if exist %tmp%\system_fs_config move /y %tmp%\system_fs_config manual_unpack\extracted\ >nul 2>nul
if exist %tmp%\system move /y %tmp%\system manual_unpack\extracted\system2 >nul 2>nul
if exist manual_unpack\extracted\system (
bin\utils\cecho {0b} - "system.new.dat.br" Unpack Done!{#}
echo.
bin\utils\cecho {0b} - check "/extracted" 'for files{#}
echo.
bin\utils\busybox sh ./bin/utils/utility_man.sh rom-info
bin\utils\busybox sh ./bin/utils/utility_man.sh rom-info >> manual_unpack/extracted/rom-info
echo.
)
if exist manual_unpack\extracted rd /s /q bin\tmp
echo.
echo.
pause
goto home
::::::::::::::::::::::::::::::::::::::
:repack_br
cls
mode con:cols=100 lines=38
echo.
echo.
bin\utils\cecho {60} Yet Another Rom Tool {#}
echo.
echo by mr.vybes - Telegram: @nanavybes
bin\utils\cecho {0d}=============={#}
echo.
bin\utils\cecho {30} Yet another unpack/repack tool 'for Android ROM images {#}
echo.
bin\utils\cecho {0e}thanks to @jancox-tool{#}
echo.
echo.
bin\utils\cecho {0b}%activity% {#}{60} %date%{#} / {0b}%activitytime% {#}{20} %time%{#}
echo.
bin\utils\cecho {0b} ***********************************************************************{#}
echo.
echo.
echo.
echo.
if exist manual_unpack\place_img_here\system.new.dat.br del manual_unpack\repack_done\system.new.dat.br (
bin\utils\cecho {0b} - working[lvl 01]...{#}
)
echo.
if exist manual_unpack\place_img_here\system.new.dat echo bin\utils\cecho {0e} required file ... OK!{#} (
::bin\utils\img2sdat repack_done\system.new.img -o repack_done -v 4 >nul 2>nul
bin\utils\brotli -1 -j -w 24 manual_unpack\place_br_here\system.new.dat >nul
set tmp=manual_unpack\repack_done
bin\utils\busybox mv manual_unpack\place_dat_here\system.new.dat.br %tmp%\ >nul 2>nul
bin\utils\busybox mv manual_unpack\place_dat_here\system.transfer.list %tmp%\ >nul 2>nul
bin\utils\busybox mv manual_unpack\place_dat_here\system.patch.dat %tmp%\ >nul 2>nul
if exist manual_unpack\repack_done\system.new.img del manual_unpack\repack_done\system.new.img
if exist manual_unpack\repack_done\system.new.dat del manual_unpack\repack_done\system.new.dat
echo.
bin\utils\cecho {0a} - new file "system.new.dat.br" Baked! into folder "/repack_done"{#}
echo.
pause
goto home
)
else (
echo bin\utils\cecho {0c} required file ... 'NOT FOUND!{#}
goto home
)
::::::::::::::::::::::::::::::::::::::
:unpack_vendor
cls
mode con:cols=100 lines=38
echo.
echo.
bin\utils\cecho {60} Yet Another Rom Tool {#}
echo.
echo by mr.vybes - Telegram: @nanavybes
bin\utils\cecho {0d}=============={#}
echo.
bin\utils\cecho {30} Yet another unpack/repack tool 'for Android ROM images {#}
echo.
bin\utils\cecho {0e}thanks to @jancox-tool{#}
echo.
echo.
bin\utils\cecho {0b}%activity% {#}{60} %date%{#} / {0b}%activitytime% {#}{20} %time%{#}
echo.
bin\utils\cecho {0b} ***********************************************************************{#}
echo.
echo.
echo.
echo.
bin\utils\cecho {0b} - Unpacking "vendor.new.dat.br"{#}
echo.
bin\utils\cecho {0f} ** be sure that vendor.patch.dat, vendor.transfer.list{#}
echo.
bin\utils\cecho {0f} are already placed into the folder **{#}
echo.
echo.
if exist manual_unpack\place_vendor_here\vendor.new.dat.br (
(
bin\utils\cecho {0b} - Unpack vendor.new.dat.br{#}
echo.
bin\utils\brotli -d manual_unpack\place_vendor_here\vendor.new.dat.br >nul
del manual_unpack\place_vendor_here\vendor.new.dat.br
)
if exist manual_unpack\place_vendor_here\vendor.new.dat (
bin\utils\cecho {0b} - Unpack vendor.new.dat{#}
echo.
bin\utils\sdat2img manual_unpack\place_vendor_here\vendor.transfer.list manual_unpack\place_vendor_here\vendor.new.dat manual_unpack\place_vendor_here\vendor.img >nul 2>nul
del manual_unpack\place_vendor_here\vendor.new.dat
del manual_unpack\place_vendor_here\vendor.transfer.list
del manual_unpack\place_vendor_here\vendor.patch.dat
)
if exist manual_unpack\place_vendor_here\vendor.img (
bin\utils\cecho {0b} - Unpack vendor.img{#}
echo.
bin\utils\imgextractor manual_unpack\place_vendor_here\vendor.img manual_unpack\extracted\vendor >nul 2>nul
del manual_unpack\place_vendor_here\vendor.img
)
) else (
if exist manual_unpack\place_vendor_here\vendor.img (
bin\utils\cecho {0b} - Unpack vendor.img{#}
echo.
bin\utils\imgextractor manual_unpack\place_vendor_here\vendor.img manual_unpack\extracted\vendor >nul 2>nul
del manual_unpack\place_vendor_here\vendor.img
)
)
if exist manual_unpack\extracted\vendor (
bin\utils\cecho {0b} - "vendor.new.dat.br" Unpack Done!{#}
echo.
bin\utils\cecho {0b} - check "/extracted" 'for files{#}
echo.
)
if exist manual_unpack\extracted\vendor rd /s /q manual_unpack\place_vendor_here\*
echo.
echo.
pause
goto home
::::::::::::::::::::::::::::::::::::::
:repack_vendor
cls
mode con:cols=100 lines=38
echo.
echo.
bin\utils\cecho {60} Yet Another Rom Tool {#}
echo.
echo by mr.vybes - Telegram: @nanavybes
bin\utils\cecho {0d}=============={#}
echo.
bin\utils\cecho {30} Yet another unpack/repack tool 'for Android ROM images {#}
echo.
bin\utils\cecho {0e}thanks to @jancox-tool{#}
echo.
echo.
bin\utils\cecho {0b}%activity% {#}{60} %date%{#} / {0b}%activitytime% {#}{20} %time%{#}
echo.
bin\utils\cecho {0b} ***********************************************************************{#}
echo.
echo.
echo.
echo.
if exist manual_unpack\extracted\vendor (
echo.
bin\utils\cecho {0b} - Repack "Vendor Image"{#}
echo.
echo.
) else (
bin\utils\cecho {0c} - there is nothing to repack from "/extracted/vendor"{#}
echo.
pause
goto home
)
echo.
bin\utils\cecho {0b} - Processing...{#}
echo.
bin\utils\cecho {0b} - Repack to 'vendor.new.img'{#}
echo.
set /p vendorsize=<"manual_unpack\extracted\vendor_size.txt"
bin\utils\make_ext4fs -s -L vendor -T -1 -S manual_unpack\extracted\vendor_file_contexts -C manual_unpack\extracted\vendor_fs_config -l %vendorsize% -a vendor manual_unpack\place_vendor_here\vendor.new.img manual_unpack\extracted\vendor\ >nul
if exist manual_unpack\place_vendor_here\vendor.new.img (
bin\utils\cecho {0b} - Repack to 'vendor.new.dat'{#}
echo.
bin\utils\img2sdat manual_unpack\place_vendor_here\vendor.new.img -o manual_unpack\place_vendor_here -v 4 -p vendor >nul 2>nul
del manual_unpack\place_vendor_here\vendor.new.img
)
@REM if exist manual_unpack\place_vendor_here\vendor.new.dat
bin\utils\cecho {0b} - Repack to 'vendor.new.dat.br'{#}
echo.
bin\utils\brotli -1 -j -w 24 manual_unpack\place_vendor_here\vendor.new.dat >nul
if exist manual_unpack\place_vendor_here\vendor.new.dat del manual_unpack\place_vendor_here\vendor.new.dat
if exist manual_unpack\place_vendor_here\vendor.new.img del manual_unpack\place_vendor_here\vendor.new.img