-
Notifications
You must be signed in to change notification settings - Fork 0
/
all_files.txt
3064 lines (3064 loc) · 104 KB
/
all_files.txt
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
all_files.txt
board-info.txt
bootdts/01.dtsdump_MT6580.dts
boot.img
bootimg/00_kernel
bootimg/01_dtbdump_MT6580.dtb
boot/img_info
boot/kernel
boot/ramdisk/fstab.enableswap
boot/ramdisk/init
boot/ramdisk/init.environ.rc
boot/ramdisk/init.rc
boot/ramdisk/init.usb.configfs.rc
boot/ramdisk/init.usb.rc
boot/ramdisk/init.zygote32.rc
boot/ramdisk.packed
boot/ramdisk/sbin/charger
boot/ramdisk/ueventd.rc
bootRE/boot.elf
bootRE/boot_kallsyms.txt
.gitignore
ikconfig
odmdtbo.img
README.md
recovery.img
system/app/BasicDreams/BasicDreams.apk
system/app/BasicDreams/oat/arm/BasicDreams.odex
system/app/BasicDreams/oat/arm/BasicDreams.vdex
system/app/BatteryWarning/BatteryWarning.apk
system/app/BatteryWarning/oat/arm/BatteryWarning.odex
system/app/BatteryWarning/oat/arm/BatteryWarning.vdex
system/app/BluetoothMidiService/BluetoothMidiService.apk
system/app/BluetoothMidiService/oat/arm/BluetoothMidiService.odex
system/app/BluetoothMidiService/oat/arm/BluetoothMidiService.vdex
system/app/BookmarkProvider/BookmarkProvider.apk
system/app/BookmarkProvider/oat/arm/BookmarkProvider.odex
system/app/BookmarkProvider/oat/arm/BookmarkProvider.vdex
system/app/BuiltInPrintService/BuiltInPrintService.apk
system/app/BuiltInPrintService/lib/arm/libcups.so
system/app/BuiltInPrintService/lib/arm/libwfds.so
system/app/BuiltInPrintService/oat/arm/BuiltInPrintService.odex
system/app/BuiltInPrintService/oat/arm/BuiltInPrintService.vdex
system/app/CalendarGoogle/CalendarGoogle.apk
system/app/CalendarGoogle/oat/arm/CalendarGoogle.odex
system/app/CalendarGoogle/oat/arm/CalendarGoogle.vdex
system/app/CalendarImporter/CalendarImporter.apk
system/app/CalendarImporter/oat/arm/CalendarImporter.odex
system/app/CalendarImporter/oat/arm/CalendarImporter.vdex
system/app/Camera/Camera.apk
system/app/Camera/oat/arm/Camera.odex
system/app/Camera/oat/arm/Camera.vdex
system/app/CaptivePortalLogin/CaptivePortalLogin.apk
system/app/CaptivePortalLogin/oat/arm/CaptivePortalLogin.odex
system/app/CaptivePortalLogin/oat/arm/CaptivePortalLogin.vdex
system/app/CertInstaller/CertInstaller.apk
system/app/CertInstaller/oat/arm/CertInstaller.odex
system/app/CertInstaller/oat/arm/CertInstaller.vdex
system/app/Chrome/Chrome.apk
system/app/Chrome/oat/arm/Chrome.odex
system/app/Chrome/oat/arm/Chrome.vdex
system/app/CompanionDeviceManager/CompanionDeviceManager.apk
system/app/CompanionDeviceManager/oat/arm/CompanionDeviceManager.odex
system/app/CompanionDeviceManager/oat/arm/CompanionDeviceManager.vdex
system/app/CtsShimPrebuilt/CtsShimPrebuilt.apk
system/app/DrmProvider/DrmProvider.apk
system/app/DrmProvider/oat/arm/DrmProvider.odex
system/app/DrmProvider/oat/arm/DrmProvider.vdex
system/app/EasterEgg/EasterEgg.apk
system/app/EasterEgg/oat/arm/EasterEgg.odex
system/app/EasterEgg/oat/arm/EasterEgg.vdex
system/app/EngineerMode/EngineerMode.apk
system/app/EngineerMode/oat/arm/EngineerMode.odex
system/app/EngineerMode/oat/arm/EngineerMode.vdex
system/app/ExactCalculator/ExactCalculator.apk
system/app/ExactCalculator/oat/arm/ExactCalculator.odex
system/app/ExactCalculator/oat/arm/ExactCalculator.vdex
system/app/FileManager/FileManager.apk
system/app/FileManager/oat/arm/FileManager.odex
system/app/FileManager/oat/arm/FileManager.vdex
system/app/Gmail2/Gmail2.apk
system/app/Gmail2/oat/arm/Gmail2.odex
system/app/Gmail2/oat/arm/Gmail2.vdex
system/app/GoogleContactsSyncAdapter/GoogleContactsSyncAdapter.apk
system/app/GoogleContactsSyncAdapter/oat/arm/GoogleContactsSyncAdapter.odex
system/app/GoogleContactsSyncAdapter/oat/arm/GoogleContactsSyncAdapter.vdex
system/app/GoogleExtShared/GoogleExtShared.apk
system/app/GoogleExtShared/oat/arm/GoogleExtShared.odex
system/app/GoogleExtShared/oat/arm/GoogleExtShared.vdex
system/app/GooglePrintRecommendationService/GooglePrintRecommendationService.apk
system/app/GooglePrintRecommendationService/oat/arm/GooglePrintRecommendationService.odex
system/app/GooglePrintRecommendationService/oat/arm/GooglePrintRecommendationService.vdex
system/app/GoogleTTS/GoogleTTS.apk
system/app/GoogleTTS/oat/arm/GoogleTTS.odex
system/app/GoogleTTS/oat/arm/GoogleTTS.vdex
system/app/HTMLViewer/HTMLViewer.apk
system/app/HTMLViewer/oat/arm/HTMLViewer.odex
system/app/HTMLViewer/oat/arm/HTMLViewer.vdex
system/app/KeyChain/KeyChain.apk
system/app/KeyChain/oat/arm/KeyChain.odex
system/app/KeyChain/oat/arm/KeyChain.vdex
system/app/LatinImeGoogle/LatinImeGoogle.apk
system/app/LatinImeGoogle/oat/arm/LatinImeGoogle.odex
system/app/LatinImeGoogle/oat/arm/LatinImeGoogle.vdex
system/app/LiveWallpapersPicker/LiveWallpapersPicker.apk
system/app/LiveWallpapersPicker/oat/arm/LiveWallpapersPicker.odex
system/app/LiveWallpapersPicker/oat/arm/LiveWallpapersPicker.vdex
system/app/LovelyFonts/LovelyFonts.apk
system/app/LovelyFonts/oat/arm/LovelyFonts.odex
system/app/LovelyFonts/oat/arm/LovelyFonts.vdex
system/app/Maps/Maps.apk
system/app/Maps/oat/arm/Maps.odex
system/app/Maps/oat/arm/Maps.vdex
system/app/Messages/Messages.apk
system/app/Messages/oat/arm/Messages.odex
system/app/Messages/oat/arm/Messages.vdex
system/app/MmsSupport/MmsSupport.apk
system/app/MmsSupport/oat/arm/MmsSupport.odex
system/app/MmsSupport/oat/arm/MmsSupport.vdex
system/app/MtkBluetooth/lib/arm/libmtkbluetooth_jni.so
system/app/MtkBluetooth/MtkBluetooth.apk
system/app/MtkBluetooth/oat/arm/MtkBluetooth.odex
system/app/MtkBluetooth/oat/arm/MtkBluetooth.vdex
system/app/MtkDeskClock/MtkDeskClock.apk
system/app/MtkDeskClock/oat/arm/MtkDeskClock.odex
system/app/MtkDeskClock/oat/arm/MtkDeskClock.vdex
system/app/MtkDownloadProviderUi/MtkDownloadProviderUi.apk
system/app/MtkDownloadProviderUi/oat/arm/MtkDownloadProviderUi.odex
system/app/MtkDownloadProviderUi/oat/arm/MtkDownloadProviderUi.vdex
system/app/MtkGallery2/MtkGallery2.apk
system/app/MtkGallery2/oat/arm/MtkGallery2.odex
system/app/MtkGallery2/oat/arm/MtkGallery2.vdex
system/app/MtkLatinIME/lib/arm/libjni_latinime.so
system/app/MtkLatinIME/MtkLatinIME.apk
system/app/MtkLatinIME/oat/arm/MtkLatinIME.odex
system/app/MtkLatinIME/oat/arm/MtkLatinIME.vdex
system/app/MtkNlp/MtkNlp.apk
system/app/MtkNlp/oat/arm/MtkNlp.odex
system/app/MtkNlp/oat/arm/MtkNlp.vdex
system/app/MtkWallpaperPicker/MtkWallpaperPicker.apk
system/app/MtkWallpaperPicker/oat/arm/MtkWallpaperPicker.odex
system/app/MtkWallpaperPicker/oat/arm/MtkWallpaperPicker.vdex
system/app/NfcNci/lib/arm/libnfc_nci_jni.so
system/app/NfcNci/NfcNci.apk
system/app/NfcNci/oat/arm/NfcNci.odex
system/app/NfcNci/oat/arm/NfcNci.vdex
system/app/Omacp/oat/arm/Omacp.odex
system/app/Omacp/oat/arm/Omacp.vdex
system/app/Omacp/Omacp.apk
system/app/OpenWnn/lib/arm/libwnndict.so
system/app/OpenWnn/lib/arm/libWnnEngDic.so
system/app/OpenWnn/lib/arm/libWnnJpnDic.so
system/app/OpenWnn/oat/arm/OpenWnn.odex
system/app/OpenWnn/oat/arm/OpenWnn.vdex
system/app/OpenWnn/OpenWnn.apk
system/app/PacProcessor/lib/arm/libjni_pacprocessor.so
system/app/PacProcessor/oat/arm/PacProcessor.odex
system/app/PacProcessor/oat/arm/PacProcessor.vdex
system/app/PacProcessor/PacProcessor.apk
system/app/PartnerBookmarksProvider/oat/arm/PartnerBookmarksProvider.odex
system/app/PartnerBookmarksProvider/oat/arm/PartnerBookmarksProvider.vdex
system/app/PartnerBookmarksProvider/PartnerBookmarksProvider.apk
system/app/PrintSpooler/lib/arm/libprintspooler_jni.so
system/app/PrintSpooler/oat/arm/PrintSpooler.odex
system/app/PrintSpooler/oat/arm/PrintSpooler.vdex
system/app/PrintSpooler/PrintSpooler.apk
system/app/Protips/oat/arm/Protips.odex
system/app/Protips/oat/arm/Protips.vdex
system/app/Protips/Protips.apk
system/app/Stk/oat/arm/Stk.odex
system/app/Stk/oat/arm/Stk.vdex
system/app/Stk/Stk.apk
system/app/UserDictionaryProvider/oat/arm/UserDictionaryProvider.odex
system/app/UserDictionaryProvider/oat/arm/UserDictionaryProvider.vdex
system/app/UserDictionaryProvider/UserDictionaryProvider.apk
system/app/Videos/oat/arm/Videos.odex
system/app/Videos/oat/arm/Videos.vdex
system/app/Videos/Videos.apk
system/app/WallpaperBackup/oat/arm/WallpaperBackup.odex
system/app/WallpaperBackup/oat/arm/WallpaperBackup.vdex
system/app/WallpaperBackup/WallpaperBackup.apk
system/app/WallpaperPicker/oat/arm/WallpaperPicker.odex
system/app/WallpaperPicker/oat/arm/WallpaperPicker.vdex
system/app/WallpaperPicker/WallpaperPicker.apk
system/app/WAPPushManager/oat/arm/WAPPushManager.odex
system/app/WAPPushManager/oat/arm/WAPPushManager.vdex
system/app/WAPPushManager/WAPPushManager.apk
system/app/WebViewGoogle/oat/arm/WebViewGoogle.odex
system/app/WebViewGoogle/oat/arm/WebViewGoogle.vdex
system/app/WebViewGoogle/WebViewGoogle.apk
system/app/YGPS/oat/arm/YGPS.odex
system/app/YGPS/oat/arm/YGPS.vdex
system/app/YGPS/YGPS.apk
system/bin/[
system/bin/[[
system/bin/aal
system/bin/acpi
system/bin/acpid
system/bin/adbd
system/bin/addgroup
system/bin/adduser
system/bin/adjtimex
system/bin/am
system/bin/applypatch
system/bin/appops
system/bin/app_process
system/bin/app_process32
system/bin/appwidget
system/bin/arch
system/bin/arp
system/bin/arping
system/bin/art
system/bin/ash
system/bin/atcid
system/bin/atrace
system/bin/audiocmdservice_atci
system/bin/audioserver
system/bin/awk
system/bin/badblocks
system/bin/base64
system/bin/basename
system/bin/batterywarning
system/bin/bc
system/bin/bcc
system/bin/beep
system/bin/blkdiscard
system/bin/blkid
system/bin/blockdev
system/bin/bmgr
system/bin/bootchartd
system/bin/boot_logo_updater
system/bin/bootstat
system/bin/brctl
system/bin/bu
system/bin/bugreport
system/bin/bugreportz
system/bin/bunzip2
system/bin/busybox
system/bin/bzcat
system/bin/bzip2
system/bin/cal
system/bin/cameraserver
system/bin/cat
system/bin/chat
system/bin/chattr
system/bin/chcon
system/bin/chgrp
system/bin/chmod
system/bin/chown
system/bin/chpasswd
system/bin/chpst
system/bin/chroot
system/bin/chrt
system/bin/chvt
system/bin/cksum
system/bin/clatd
system/bin/clear
system/bin/cmd
system/bin/cmp
system/bin/comm
system/bin/conspy
system/bin/content
system/bin/cp
system/bin/cpio
system/bin/crash_dump32
system/bin/crond
system/bin/crontab
system/bin/cryptpw
system/bin/cttyhack
system/bin/cut
system/bin/dalvikvm
system/bin/dalvikvm32
system/bin/date
system/bin/dc
system/bin/dd
system/bin/deallocvt
system/bin/debuggerd
system/bin/delgroup
system/bin/deluser
system/bin/depmod
system/bin/devmem
system/bin/dex2oat
system/bin/dexdiag
system/bin/dexdump
system/bin/dexlist
system/bin/dexoptanalyzer
system/bin/df
system/bin/dhcprelay
system/bin/diff
system/bin/dirname
system/bin/dm_agent_binder
system/bin/dmesg
system/bin/dnsd
system/bin/dnsdomainname
system/bin/dnsmasq
system/bin/dos2unix
system/bin/dpkg
system/bin/dpkg-deb
system/bin/dpm
system/bin/drmserver
system/bin/du
system/bin/dumpkmap
system/bin/dumpleases
system/bin/dumpstate
system/bin/dumpsys
system/bin/e2fsck
system/bin/e2fsdroid
system/bin/echo
system/bin/ed
system/bin/egrep
system/bin/eject
system/bin/env
system/bin/envdir
system/bin/envuidgid
system/bin/ether-wake
system/bin/expand
system/bin/expr
system/bin/factor
system/bin/factory
system/bin/fakeidentd
system/bin/fallocate
system/bin/false
system/bin/fatattr
system/bin/fbset
system/bin/fbsplash
system/bin/fdflush
system/bin/fdformat
system/bin/fdisk
system/bin/fgconsole
system/bin/fgrep
system/bin/file
system/bin/find
system/bin/findfs
system/bin/flock
system/bin/fold
system/bin/free
system/bin/freeramdisk
system/bin/fsck
system/bin/fsck.f2fs
system/bin/fsck.minix
system/bin/fsck_msdos
system/bin/fsfreeze
system/bin/fstrim
system/bin/fsync
system/bin/ftpd
system/bin/ftpget
system/bin/ftpput
system/bin/fuser
system/bin/gatekeeperd
system/bin/ged_srv
system/bin/getenforce
system/bin/getevent
system/bin/getopt
system/bin/getprop
system/bin/getty
system/bin/grep
system/bin/groups
system/bin/gunzip
system/bin/gzip
system/bin/halt
system/bin/hd
system/bin/hdparm
system/bin/head
system/bin/healthd
system/bin/hexdump
system/bin/hexedit
system/bin/hid
system/bin/hostid
system/bin/hostname
system/bin/httpd
system/bin/hush
system/bin/hw/android.hidl.allocator@1.0-service
system/bin/hwclock
system/bin/hwservicemanager
system/bin/i2cdetect
system/bin/i2cdump
system/bin/i2cget
system/bin/i2cset
system/bin/i2ctransfer
system/bin/id
system/bin/idmap
system/bin/ifconfig
system/bin/ifdown
system/bin/ifenslave
system/bin/ifplugd
system/bin/ifup
system/bin/ime
system/bin/incident
system/bin/incidentd
system/bin/inetd
system/bin/init
system/bin/inotifyd
system/bin/input
system/bin/insmod
system/bin/install
system/bin/installd
system/bin/ionice
system/bin/iorenice
system/bin/iostat
system/bin/ip
system/bin/ip6tables
system/bin/ip6tables-restore
system/bin/ip6tables-save
system/bin/ip6tables-wrapper-1.0
system/bin/ipaddr
system/bin/ipcalc
system/bin/ipcrm
system/bin/ipcs
system/bin/iplink
system/bin/ipneigh
system/bin/iproute
system/bin/iprule
system/bin/iptables
system/bin/iptables-restore
system/bin/iptables-save
system/bin/iptables-wrapper-1.0
system/bin/iptunnel
system/bin/ip-wrapper-1.0
system/bin/kbd_mode
system/bin/keystore
system/bin/kill
system/bin/killall
system/bin/killall5
system/bin/klogd
system/bin/kpoc_charger
system/bin/last
system/bin/lcdc_screen_cap
system/bin/ld.mc
system/bin/less
system/bin/link
system/bin/linker
system/bin/linker_asan
system/bin/linux32
system/bin/linux64
system/bin/linuxrc
system/bin/lmkd
system/bin/ln
system/bin/loadfont
system/bin/loadkmap
system/bin/load_policy
system/bin/locksettings
system/bin/log
system/bin/logcat
system/bin/logd
system/bin/logger
system/bin/logname
system/bin/logread
system/bin/logwrapper
system/bin/losetup
system/bin/ls
system/bin/lsattr
system/bin/lshal
system/bin/lsmod
system/bin/lsof
system/bin/lspci
system/bin/lsscsi
system/bin/lsusb
system/bin/lzcat
system/bin/lzma
system/bin/lzop
system/bin/makedevs
system/bin/make_ext4fs
system/bin/make_f2fs
system/bin/man
system/bin/md5sum
system/bin/mdev
system/bin/mdnsd
system/bin/media
system/bin/mediadrmserver
system/bin/mediaextractor
system/bin/mediametrics
system/bin/mediaserver
system/bin/mesg
system/bin/meta_tst
system/bin/microcom
system/bin/mim
system/bin/mkdir
system/bin/mkdosfs
system/bin/mke2fs
system/bin/mkfifo
system/bin/mkfs.ext2
system/bin/mkfs.minix
system/bin/mkfs.vfat
system/bin/mknod
system/bin/mkpasswd
system/bin/mkswap
system/bin/mktemp
system/bin/modinfo
system/bin/modprobe
system/bin/monkey
system/bin/more
system/bin/mount
system/bin/mountpoint
system/bin/mpstat
system/bin/mt
system/bin/mtkbootanimation
system/bin/mtpd
system/bin/mv
system/bin/nameif
system/bin/nanddump
system/bin/nandwrite
system/bin/nbd-client
system/bin/nc
system/bin/ndc
system/bin/ndc-wrapper-1.0
system/bin/netd
system/bin/netstat
system/bin/netutils-wrapper-1.0
system/bin/newfs_msdos
system/bin/nice
system/bin/nl
system/bin/nmeter
system/bin/nohup
system/bin/nologin
system/bin/nproc
system/bin/nsenter
system/bin/nslookup
system/bin/ntpd
system/bin/oatdump
system/bin/od
system/bin/openvt
system/bin/partprobe
system/bin/passwd
system/bin/paste
system/bin/patch
system/bin/patchoat
system/bin/pgrep
system/bin/pidof
system/bin/ping
system/bin/ping6
system/bin/pipe_progress
system/bin/pivot_root
system/bin/pkill
system/bin/pm
system/bin/pmap
system/bin/poweroff
system/bin/powertop
system/bin/ppl_agent
system/bin/pppd
system/bin/printenv
system/bin/printf
system/bin/profman
system/bin/program_binary_builder
system/bin/program_binary_service
system/bin/ps
system/bin/pscan
system/bin/pstree
system/bin/pwd
system/bin/pwdx
system/bin/racoon
system/bin/raidautorun
system/bin/rdate
system/bin/rdev
system/bin/readahead
system/bin/readlink
system/bin/readprofile
system/bin/realpath
system/bin/reboot
system/bin/renice
system/bin/requestsync
system/bin/reset
system/bin/resize
system/bin/resize2fs
system/bin/resize.f2fs
system/bin/restorecon
system/bin/rev
system/bin/rm
system/bin/rmdir
system/bin/rmmod
system/bin/ROM
system/bin/route
system/bin/rpm
system/bin/rpm2cpio
system/bin/rtcwake
system/bin/run-as
system/bin/runcon
system/bin/run-init
system/bin/runlevel
system/bin/run-parts
system/bin/runsv
system/bin/runsvdir
system/bin/rx
system/bin/schedtest
system/bin/screencap
system/bin/screenrecord
system/bin/script
system/bin/scriptreplay
system/bin/sdcard
system/bin/secdiscard
system/bin/secilc
system/bin/sed
system/bin/sendevent
system/bin/sendmail
system/bin/sensorservice
system/bin/seq
system/bin/service
system/bin/servicemanager
system/bin/setarch
system/bin/setconsole
system/bin/setenforce
system/bin/setfattr
system/bin/setfont
system/bin/setkeycodes
system/bin/setlogcons
system/bin/setpriv
system/bin/setprop
system/bin/setserial
system/bin/setsid
system/bin/settings
system/bin/setuidgid
system/bin/sgdisk
system/bin/sh
system/bin/sha1sum
system/bin/sha224sum
system/bin/sha256sum
system/bin/sha384sum
system/bin/sha3sum
system/bin/sha512sum
system/bin/showkey
system/bin/shred
system/bin/shuf
system/bin/slattach
system/bin/sleep
system/bin/sm
system/bin/smemcap
system/bin/sn
system/bin/softlimit
system/bin/sort
system/bin/split
system/bin/ssl_client
system/bin/start
system/bin/start-stop-daemon
system/bin/stat
system/bin/stop
system/bin/storaged
system/bin/storagemanagerd
system/bin/strings
system/bin/stty
system/bin/sum
system/bin/surfaceflinger
system/bin/sv
system/bin/svc
system/bin/svlogd
system/bin/svok
system/bin/swapoff
system/bin/swapon
system/bin/switch_root
system/bin/sync
system/bin/sysctl
system/bin/syslogd
system/bin/tac
system/bin/tail
system/bin/tar
system/bin/taskset
system/bin/tc
system/bin/tcpsvd
system/bin/tc-wrapper-1.0
system/bin/tee
system/bin/telecom
system/bin/telnet
system/bin/telnetd
system/bin/terservice
system/bin/tertestclient
system/bin/test
system/bin/tftp
system/bin/tftpd
system/bin/thermald
system/bin/thermalindicator
system/bin/thermalserviced
system/bin/time
system/bin/timeout
system/bin/tombstoned
system/bin/toolbox
system/bin/top
system/bin/touch
system/bin/toybox
system/bin/tr
system/bin/traceroute
system/bin/traceroute6
system/bin/true
system/bin/truncate
system/bin/ts
system/bin/tty
system/bin/ttysize
system/bin/tunctl
system/bin/tune2fs
system/bin/tzdatacheck
system/bin/ubiattach
system/bin/ubidetach
system/bin/ubimkvol
system/bin/ubirename
system/bin/ubirmvol
system/bin/ubirsvol
system/bin/ubiupdatevol
system/bin/udhcpc
system/bin/udhcpd
system/bin/udpsvd
system/bin/uevent
system/bin/uiautomator
system/bin/ulimit
system/bin/umount
system/bin/uname
system/bin/uncrypt
system/bin/unexpand
system/bin/uniq
system/bin/unix2dos
system/bin/unlink
system/bin/unlzma
system/bin/unshare
system/bin/unxz
system/bin/unzip
system/bin/uptime
system/bin/users
system/bin/usleep
system/bin/uudecode
system/bin/uuencode
system/bin/vconfig
system/bin/vdc
system/bin/vi
system/bin/vintf
system/bin/vmstat
system/bin/vold
system/bin/volname
system/bin/vr
system/bin/w
system/bin/wall
system/bin/watch
system/bin/watchdog
system/bin/wc
system/bin/webview_zygote32
system/bin/wget
system/bin/which
system/bin/who
system/bin/whoami
system/bin/whois
system/bin/wificond
system/bin/wm
system/bin/xargs
system/bin/xxd
system/bin/xz
system/bin/xzcat
system/bin/yes
system/bin/zcat
system/bin/zcip
system/build.prop
system/compatibility_matrix.xml
system/etc/a2dp_audio_policy_configuration.xml
system/etc/apdb/APDB_MT6580_S01_alps-trunk-o1.bsp_W18.24
system/etc/apdb/APDB_MT6580_S01_alps-trunk-o1.bsp_W18.24_ENUM
system/etc/apns-conf.xml
system/etc/audio_effects.conf
system/etc/audio_policy_configuration_stub.xml
system/etc/audio_policy_configuration.xml
system/etc/audio_policy_volumes.xml
system/etc/bluetooth/bt_did.conf
system/etc/bluetooth/bt_stack.conf
system/etc/bluetooth/mtk_bt_fw.conf
system/etc/bluetooth/mtk_bt_stack.conf
system/etc/clatd.conf
system/etc/compiled-classes
system/etc/custom.conf
system/etc/default_volume_tables.xml
system/etc/dirty-image-objects
system/etc/event-log-tags
system/etc/factory.ini
system/etc/fonts.xml
system/etc/fs_config_dirs
system/etc/fs_config_files
system/etc/group
system/etc/hosts
system/etc/init/aal.rc
system/etc/init/android.hidl.allocator@1.0-service.rc
system/etc/init/atcid.rc
system/etc/init/atrace.rc
system/etc/init/audiocmdservice_atci.rc
system/etc/init/audioserver.rc
system/etc/init/batterywarning.rc
system/etc/init/bootlogoupdater.rc
system/etc/init/bootstat.rc
system/etc/init/cameraserver.rc
system/etc/init/dm_agent_binder.rc
system/etc/init/drmserver.rc
system/etc/init/dumpstate.rc
system/etc/init/gatekeeperd.rc
system/etc/init/ged_srv.rc
system/etc/init/hwservicemanager.rc
system/etc/init/init.lovelyfonts.rc
system/etc/init/init.thermald.rc
system/etc/init/installd.rc
system/etc/init/keystore.rc
system/etc/init/kpoc_charger.rc
system/etc/init/lmkd.rc
system/etc/init/logd.rc
system/etc/init/mdnsd.rc
system/etc/init/mediadrmserver.rc
system/etc/init/mediaextractor.rc
system/etc/init/mediametrics.rc
system/etc/init/mediaserver.rc
system/etc/init/mtkbootanim.rc
system/etc/init/mtpd.rc
system/etc/init/netd.rc
system/etc/init/ppl_agent.rc
system/etc/init/program_binary_service.rc
system/etc/init/racoon.rc
system/etc/init/servicemanager.rc
system/etc/init/sn.rc
system/etc/init/storaged.rc
system/etc/init/storagemanagerd.rc
system/etc/init/surfaceflinger.rc
system/etc/init/terserver.rc
system/etc/init/thermalindicator.rc
system/etc/init/thermalservice.rc
system/etc/init/tombstoned.rc
system/etc/init/uncrypt.rc
system/etc/init/vdc.rc
system/etc/init/vold.rc
system/etc/init/webview_zygote32.rc
system/etc/init/wificond.rc
system/etc/init/wifi-events.rc
system/etc/ld.config.txt
system/etc/mddb
system/etc/media_profiles_V1_0.dtd
system/etc/mke2fs.conf
system/etc/mkshrc
system/etc/mtklog-config.prop
system/etc/NOTICE.xml.gz
system/etc/passwd
system/etc/permissions/android.software.live_wallpaper.xml
system/etc/permissions/android.software.webview.xml
system/etc/permissions/com.android.location.provider.xml
system/etc/permissions/com.android.mediadrm.signer.xml
system/etc/permissions/com.android.media.remotedisplay.xml
system/etc/permissions/com.google.android.maps.xml
system/etc/permissions/com.google.android.media.effects.xml
system/etc/permissions/mediatek-packages-teleservice.xml
system/etc/permissions/platform.xml
system/etc/permissions/pms_sysapp_removable_system_list.txt
system/etc/permissions/privapp-permissions-google.xml
system/etc/permissions/privapp-permissions-mediatek.xml
system/etc/permissions/privapp-permissions-platform.xml
system/etc/ppp/ip-up-vpn
system/etc/preferred-apps/google.xml
system/etc/preloaded-classes
system/etc/prop.default
system/etc/public.libraries.txt
system/etc/recovery-resource.dat
system/etc/resolv.conf
system/etc/r_submix_audio_policy_configuration.xml
system/etc/seccomp_policy/mediacodec.policy
system/etc/seccomp_policy/mediaextractor.policy
system/etc/security/cacerts/00673b5b.0
system/etc/security/cacerts/02756ea4.0
system/etc/security/cacerts/04f60c28.0
system/etc/security/cacerts/0d5a4e1c.0
system/etc/security/cacerts/0d69c7e1.0
system/etc/security/cacerts/10531352.0
system/etc/security/cacerts/111e6273.0
system/etc/security/cacerts/12d55845.0
system/etc/security/cacerts/17b51fe6.0
system/etc/security/cacerts/1dac3003.0
system/etc/security/cacerts/1dcd6f4c.0
system/etc/security/cacerts/1df5a75f.0
system/etc/security/cacerts/1e1eab7c.0
system/etc/security/cacerts/1e8e7201.0
system/etc/security/cacerts/1eb37bdf.0
system/etc/security/cacerts/1f58a078.0
system/etc/security/cacerts/21855f49.0
system/etc/security/cacerts/219d9499.0
system/etc/security/cacerts/23f4c490.0
system/etc/security/cacerts/27af790d.0
system/etc/security/cacerts/2add47b6.0
system/etc/security/cacerts/2d9dafe4.0
system/etc/security/cacerts/2fa87019.0
system/etc/security/cacerts/31188b5e.0
system/etc/security/cacerts/343eb6cb.0
system/etc/security/cacerts/35105088.0
system/etc/security/cacerts/3929ec9f.0
system/etc/security/cacerts/399e7759.0
system/etc/security/cacerts/3a3b02ce.0
system/etc/security/cacerts/3ad48a91.0
system/etc/security/cacerts/3c58f906.0
system/etc/security/cacerts/3c6676aa.0
system/etc/security/cacerts/3c860d51.0
system/etc/security/cacerts/3c9a4d3b.0
system/etc/security/cacerts/3d441de8.0
system/etc/security/cacerts/3e7271e8.0
system/etc/security/cacerts/40dc992e.0
system/etc/security/cacerts/418595b9.0
system/etc/security/cacerts/455f1b52.0
system/etc/security/cacerts/48a195d8.0
system/etc/security/cacerts/4be590e0.0
system/etc/security/cacerts/4e18c148.0
system/etc/security/cacerts/5046c355.0
system/etc/security/cacerts/524d9b43.0
system/etc/security/cacerts/52b525c7.0
system/etc/security/cacerts/559f7c71.0
system/etc/security/cacerts/5a250ea7.0
system/etc/security/cacerts/5a3f0ff8.0
system/etc/security/cacerts/5cf9d536.0
system/etc/security/cacerts/5e4e69e7.0
system/etc/security/cacerts/5f47b495.0
system/etc/security/cacerts/60afe812.0
system/etc/security/cacerts/6187b673.0
system/etc/security/cacerts/63a2c897.0
system/etc/security/cacerts/67495436.0
system/etc/security/cacerts/69105f4f.0
system/etc/security/cacerts/6e8bf996.0
system/etc/security/cacerts/6fcc125d.0
system/etc/security/cacerts/75680d2e.0
system/etc/security/cacerts/76579174.0
system/etc/security/cacerts/7672ac4b.0
system/etc/security/cacerts/7999be0d.0
system/etc/security/cacerts/7a7c655d.0
system/etc/security/cacerts/7a819ef2.0
system/etc/security/cacerts/7d453d8f.0
system/etc/security/cacerts/81b9768f.0
system/etc/security/cacerts/82223c44.0
system/etc/security/cacerts/85cde254.0
system/etc/security/cacerts/86212b19.0
system/etc/security/cacerts/87753b0d.0
system/etc/security/cacerts/882de061.0
system/etc/security/cacerts/89c02a45.0
system/etc/security/cacerts/8d6437c3.0
system/etc/security/cacerts/91739615.0
system/etc/security/cacerts/9282e51c.0
system/etc/security/cacerts/9339512a.0
system/etc/security/cacerts/9479c8c3.0
system/etc/security/cacerts/9576d26b.0
system/etc/security/cacerts/95aff9e3.0
system/etc/security/cacerts/9685a493.0
system/etc/security/cacerts/9772ca32.0
system/etc/security/cacerts/9c3323d4.0
system/etc/security/cacerts/9d6523ce.0
system/etc/security/cacerts/9dbefe7b.0
system/etc/security/cacerts/9f533518.0
system/etc/security/cacerts/a0bc6fbb.0
system/etc/security/cacerts/a2c66da8.0
system/etc/security/cacerts/a3896b44.0
system/etc/security/cacerts/a7605362.0
system/etc/security/cacerts/a7d2cf64.0
system/etc/security/cacerts/a81e292b.0
system/etc/security/cacerts/ab5346f4.0
system/etc/security/cacerts/aeb67534.0
system/etc/security/cacerts/b0ed035a.0
system/etc/security/cacerts/b0f3e76e.0
system/etc/security/cacerts/b3fb433b.0
system/etc/security/cacerts/b7db1890.0
system/etc/security/cacerts/b872f2b4.0
system/etc/security/cacerts/b936d1c6.0
system/etc/security/cacerts/bc3f2570.0
system/etc/security/cacerts/bdacca6f.0
system/etc/security/cacerts/bf64f35b.0
system/etc/security/cacerts/c491639e.0
system/etc/security/cacerts/c51c224c.0
system/etc/security/cacerts/c7e2a638.0
system/etc/security/cacerts/c907e29b.0
system/etc/security/cacerts/c90bc37d.0
system/etc/security/cacerts/cb156124.0
system/etc/security/cacerts/cb1c3204.0
system/etc/security/cacerts/ccc52f49.0
system/etc/security/cacerts/cf701eeb.0
system/etc/security/cacerts/d06393bb.0
system/etc/security/cacerts/d16a5865.0
system/etc/security/cacerts/d18e9066.0
system/etc/security/cacerts/d41b5e2a.0
system/etc/security/cacerts/d4c339cb.0
system/etc/security/cacerts/d59297b8.0
system/etc/security/cacerts/d66b55d9.0
system/etc/security/cacerts/d6e6eab9.0
system/etc/security/cacerts/d7746a63.0
system/etc/security/cacerts/d8317ada.0
system/etc/security/cacerts/dbc54cab.0
system/etc/security/cacerts/dc99f41e.0
system/etc/security/cacerts/dfc0fe80.0
system/etc/security/cacerts/e442e424.0
system/etc/security/cacerts/e48193cf.0
system/etc/security/cacerts/e775ed2d.0
system/etc/security/cacerts/e8651083.0
system/etc/security/cacerts/ea169617.0
system/etc/security/cacerts/ed39abd0.0
system/etc/security/cacerts/ee7cd6fb.0
system/etc/security/cacerts/facacbc6.0
system/etc/security/cacerts/fb5fa911.0
system/etc/security/cacerts/fd08c599.0
system/etc/security/cacerts/fde84897.0
system/etc/security/otacerts.zip
system/etc/selinux/mapping/26.0.cil
system/etc/selinux/mapping/27.0.cil
system/etc/selinux/plat_and_mapping_sepolicy.cil.sha256
system/etc/selinux/plat_file_contexts
system/etc/selinux/plat_hwservice_contexts
system/etc/selinux/plat_mac_permissions.xml
system/etc/selinux/plat_property_contexts
system/etc/selinux/plat_seapp_contexts
system/etc/selinux/plat_sepolicy.cil
system/etc/selinux/plat_service_contexts
system/etc/sepolicy_tests
system/etc/spn-conf.xml
system/etc/sysconfig/framework-sysconfig.xml
system/etc/sysconfig/gmsexpress.xml
system/etc/sysconfig/google.xml