-
Notifications
You must be signed in to change notification settings - Fork 0
/
all_files.txt
1672 lines (1672 loc) · 59.8 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
boot.img
boot/img_info
boot/kernel
boot/ramdisk/auto_shutdown.sh
boot/ramdisk/default.prop
boot/ramdisk/enableswap.sh
boot/ramdisk/factory_init.project.rc
boot/ramdisk/factory_init.rc
boot/ramdisk/file_contexts
boot/ramdisk/fstab
boot/ramdisk/fstab.mt8127
boot/ramdisk/init
boot/ramdisk/init.aee.rc
boot/ramdisk/init.charging.rc
boot/ramdisk/init.environ.rc
boot/ramdisk/init.mt8127.rc
boot/ramdisk/init.mt8127usb.rc
boot/ramdisk/init.project.rc
boot/ramdisk/init.rc
boot/ramdisk/init.ssd.rc
boot/ramdisk/init.trace.rc
boot/ramdisk/init.usb.rc
boot/ramdisk/init.zygote32.rc
boot/ramdisk/meta_init.project.rc
boot/ramdisk/meta_init.rc
boot/ramdisk/mounts.sh
boot/ramdisk.mtk_header
boot/ramdisk.packed
boot/ramdisk/property_contexts
boot/ramdisk/sbin/adbd
boot/ramdisk/sbin/healthd
boot/ramdisk/sbin/mkfs.f2fs
boot/ramdisk/seapp_contexts
boot/ramdisk/selinux_version
boot/ramdisk/sepolicy
boot/ramdisk/service_contexts
boot/ramdisk/ueventd.mt8127.rc
boot/ramdisk/ueventd.rc
file_contexts
META-INF/CERT.RSA
META-INF/CERT.SF
META-INF/com/android/metadata
META-INF/com/android/otacert
META-INF/com/google/android/update-binary
META-INF/com/google/android/updater-script
META-INF/MANIFEST.MF
recovery/bin/install-recovery.sh
recovery.img
recovery/recovery-from-boot.p
scatter.txt
SEC_VER.txt
sig/boot.sig
sig/recovery.sig
system/app/ApkInstaller/ApkInstaller.apk
system/app/ApplicationsProvider/ApplicationsProvider.apk
system/app/ApplicationsProvider/arm/ApplicationsProvider.odex
system/app/ArchosLauncherProvider.apk
system/app/ArchosVideo/ArchosVideo.apk
system/app/ArchosVideo/lib/arm/libaudiocompress.so
system/app/ArchosVideo/lib/arm/libavcodec.so
system/app/ArchosVideo/lib/arm/libavformat.so
system/app/ArchosVideo/lib/arm/libavos_android.so
system/app/ArchosVideo/lib/arm/libavosjni.so
system/app/ArchosVideo/lib/arm/libavos.so
system/app/ArchosVideo/lib/arm/libavutil.so
system/app/ArchosVideo/lib/arm/libcputest.so
system/app/ArchosVideo/lib/arm/libcurl.so
system/app/ArchosVideo/lib/arm/libdeinterlace.so
system/app/ArchosVideo/lib/arm/libfilecoreutils.so
system/app/ArchosVideo/lib/arm/libiomx.14.so
system/app/ArchosVideo/lib/arm/libiomx.16.so
system/app/ArchosVideo/lib/arm/libiomx.18.so
system/app/ArchosVideo/lib/arm/libiomx.19.so
system/app/ArchosVideo/lib/arm/libsfdec.core.14.so
system/app/ArchosVideo/lib/arm/libsfdec.core.16.so
system/app/ArchosVideo/lib/arm/libsfdec.core.18.so
system/app/ArchosVideo/lib/arm/libsfdec.core.19.so
system/app/ArchosVideo/lib/arm/libsfdec.core.21.so
system/app/ArchosVideo/lib/arm/libsfdec.so
system/app/ArchosVideo/lib/arm/libtorrentd.so
system/app/BasicDreams/arm/BasicDreams.odex
system/app/BasicDreams/BasicDreams.apk
system/app/BatteryWarning/arm/BatteryWarning.odex
system/app/BatteryWarning/BatteryWarning.apk
system/app/Bluetooth/arm/Bluetooth.odex
system/app/Bluetooth/Bluetooth.apk
system/app/Books/arm/Books.odex
system/app/Books/Books.apk
system/app/BrowserProviderProxy/arm/BrowserProviderProxy.odex
system/app/BrowserProviderProxy/BrowserProviderProxy.apk
system/app/BSPTelephonyDevTool/arm/BSPTelephonyDevTool.odex
system/app/BSPTelephonyDevTool/BSPTelephonyDevTool.apk
system/app/Bugle/arm/Bugle.odex
system/app/Bugle/Bugle.apk
system/app/Bugle/lib/arm/libframesequence.so
system/app/Bugle/lib/arm/libgiftranscode.so
system/app/Calculator/arm/Calculator.odex
system/app/Calculator/Calculator.apk
system/app/CalendarGoogle/arm/CalendarGoogle.odex
system/app/CalendarGoogle/CalendarGoogle.apk
system/app/CalendarImporter/arm/CalendarImporter.odex
system/app/CalendarImporter/CalendarImporter.apk
system/app/CaptivePortalLogin/arm/CaptivePortalLogin.odex
system/app/CaptivePortalLogin/CaptivePortalLogin.apk
system/app/CertInstaller/arm/CertInstaller.odex
system/app/CertInstaller/CertInstaller.apk
system/app/Chrome/arm/Chrome.odex
system/app/Chrome/Chrome.apk
system/app/Chrome/lib/arm/libchrome.so
system/app/Chrome/lib/arm/libchromium_android_linker.so
system/app/CloudPrint/arm/CloudPrint.odex
system/app/CloudPrint/CloudPrint.apk
system/app/ConfigUpdater/arm/ConfigUpdater.odex
system/app/ConfigUpdater/ConfigUpdater.apk
system/app/DeskClockGoogle/arm/DeskClockGoogle.odex
system/app/DeskClockGoogle/DeskClockGoogle.apk
system/app/DMAgent/arm/DMAgent.odex
system/app/DMAgent/DMAgent.apk
system/app/DocumentsUI/arm/DocumentsUI.odex
system/app/DocumentsUI/DocumentsUI.apk
system/app/DownloadProviderUi/arm/DownloadProviderUi.odex
system/app/DownloadProviderUi/DownloadProviderUi.apk
system/app/Drive/arm/Drive.odex
system/app/Drive/Drive.apk
system/app/Drive/lib/arm/libbitmap_parcel.so
system/app/Drive/lib/arm/libdocscanner_image.so
system/app/Drive/lib/arm/libdocsimageutils.so
system/app/Drive/lib/arm/libfileutils.so
system/app/Drive/lib/arm/libfoxit.so
system/app/Drive/lib/arm/librectifier.so
system/app/Drive/lib/arm/libwebp_android.so
system/app/DrmProvider/arm/DrmProvider.odex
system/app/DrmProvider/DrmProvider.apk
system/app/EditorsDocs/arm/EditorsDocs.odex
system/app/EditorsDocs/EditorsDocs.apk
system/app/EditorsDocs/lib/arm/libdocsimageutils.so
system/app/EditorsDocs/lib/arm/libfileutils.so
system/app/EditorsDocs/lib/arm/libkix_ndk1.so
system/app/EditorsDocs/lib/arm/libwebp_android.so
system/app/EditorsSheets/arm/EditorsSheets.odex
system/app/EditorsSheets/EditorsSheets.apk
system/app/EditorsSheets/lib/arm/libdocsimageutils.so
system/app/EditorsSheets/lib/arm/libfileutils.so
system/app/EditorsSheets/lib/arm/libritz_ndk1.so
system/app/EditorsSheets/lib/arm/libwebp_android.so
system/app/EditorsSlides/arm/EditorsSlides.odex
system/app/EditorsSlides/EditorsSlides.apk
system/app/EditorsSlides/lib/arm/libdocsimageutils.so
system/app/EditorsSlides/lib/arm/libfileutils.so
system/app/EditorsSlides/lib/arm/libpunch_ndk1.so
system/app/EditorsSlides/lib/arm/libwebp_android.so
system/app/Email/arm/Email.odex
system/app/Email/Email.apk
system/app/EngineerMode/arm/EngineerMode.odex
system/app/EngineerMode/EngineerMode.apk
system/app/Exchange2/arm/Exchange2.odex
system/app/Exchange2/Exchange2.apk
system/app/FaceLock/arm/FaceLock.odex
system/app/FaceLock/FaceLock.apk
system/app/FaceLock/lib/arm/libfacelock_jni.so
system/app/FileManager/arm/FileManager.odex
system/app/FileManager/FileManager.apk
system/app/FTPreCheck/arm/FTPreCheck.odex
system/app/FTPreCheck/FTPreCheck.apk
system/app/Galaxy4/arm/Galaxy4.odex
system/app/Galaxy4/Galaxy4.apk
system/app/Gallery2/arm/Gallery2.odex
system/app/Gallery2/Gallery2.apk
system/app/Gmail2/arm/Gmail2.odex
system/app/Gmail2/Gmail2.apk
system/app/GoogleCalendarSyncAdapter/GoogleCalendarSyncAdapter.apk
system/app/GoogleContactsSyncAdapter/arm/GoogleContactsSyncAdapter.odex
system/app/GoogleContactsSyncAdapter/GoogleContactsSyncAdapter.apk
system/app/GoogleHome/GoogleHome.apk
system/app/GoogleTTS/arm/GoogleTTS.odex
system/app/GoogleTTS/GoogleTTS.apk
system/app/GoogleTTS/lib/arm/libpatts_engine_jni_api_ub.210304060.so
system/app/GoogleTTS/lib/arm/libspeexwrapper_ub.210304060.so
system/app/Hangouts/arm/Hangouts.odex
system/app/Hangouts/Hangouts.apk
system/app/Hangouts/lib/arm/libcrashreporterer.so
system/app/Hangouts/lib/arm/libcronet.so
system/app/Hangouts/lib/arm/libframesequence.so
system/app/Hangouts/lib/arm/libvideochat_jni.so
system/app/HoloSpiralWallpaper/arm/HoloSpiralWallpaper.odex
system/app/HoloSpiralWallpaper/HoloSpiralWallpaper.apk
system/app/HTMLViewer/arm/HTMLViewer.odex
system/app/HTMLViewer/HTMLViewer.apk
system/app/Keep/arm/Keep.odex
system/app/Keep/Keep.apk
system/app/KeyChain/arm/KeyChain.odex
system/app/KeyChain/KeyChain.apk
system/app/LatinImeGoogle/arm/LatinImeGoogle.odex
system/app/LatinImeGoogle/LatinImeGoogle.apk
system/app/LatinImeGoogle/lib/arm/libjni_unbundled_latinimegoogle.so
system/app/LiveWallpapers/arm/LiveWallpapers.odex
system/app/LiveWallpapers/LiveWallpapers.apk
system/app/LiveWallpapersPicker/arm/LiveWallpapersPicker.odex
system/app/LiveWallpapersPicker/LiveWallpapersPicker.apk
system/app/Maps/arm/Maps.odex
system/app/Maps/lib/arm/libcrashreporterer.so
system/app/Maps/lib/arm/libgmm-jni.so
system/app/Maps/Maps.apk
system/app/MtkBt/arm/MtkBt.odex
system/app/MtkBt/MtkBt.apk
system/app/Music2/arm/Music2.odex
system/app/Music2/Music2.apk
system/app/MusicFX/arm/MusicFX.odex
system/app/MusicFX/MusicFX.apk
system/app/Newsstand/arm/Newsstand.odex
system/app/Newsstand/Newsstand.apk
system/app/NewsWeather/arm/NewsWeather.odex
system/app/NewsWeather/NewsWeather.apk
system/app/NoiseField/arm/NoiseField.odex
system/app/NoiseField/NoiseField.apk
system/app/PackageInstaller/arm/PackageInstaller.odex
system/app/PackageInstaller/PackageInstaller.apk
system/app/PacProcessor/arm/PacProcessor.odex
system/app/PacProcessor/PacProcessor.apk
system/app/PartnerBookmarksProvider/arm/PartnerBookmarksProvider.odex
system/app/PartnerBookmarksProvider/PartnerBookmarksProvider.apk
system/app/PhaseBeam/arm/PhaseBeam.odex
system/app/PhaseBeam/PhaseBeam.apk
system/app/Photos/arm/Photos.odex
system/app/Photos/lib/arm/libconsumerphotoeditor_native.so
system/app/Photos/lib/arm/libcronet.so
system/app/Photos/lib/arm/libfilterframework_jni.so
system/app/Photos/lib/arm/libframesequence.so
system/app/Photos/lib/arm/libmoviemaker-jni.so
system/app/Photos/Photos.apk
system/app/PhotoTable/arm/PhotoTable.odex
system/app/PhotoTable/PhotoTable.apk
system/app/PlayGames/arm/PlayGames.odex
system/app/PlayGames/lib/arm/libgames_rtmp_jni.so
system/app/PlayGames/PlayGames.apk
system/app/PlusOne/arm/PlusOne.odex
system/app/PlusOne/lib/arm/libcrashreporterer.so
system/app/PlusOne/lib/arm/libcronet.so
system/app/PlusOne/lib/arm/libfilterframework_jni.so
system/app/PlusOne/lib/arm/libframesequence.so
system/app/PlusOne/lib/arm/libmoviemaker-jni.so
system/app/PlusOne/lib/arm/libphotoeditor_native.so
system/app/PlusOne/lib/arm/libwebp_android.so
system/app/PlusOne/PlusOne.apk
system/app/PrintSpooler/arm/PrintSpooler.odex
system/app/PrintSpooler/PrintSpooler.apk
system/app/SmartcardService/arm/SmartcardService.odex
system/app/SmartcardService/SmartcardService.apk
system/app/talkback/arm/talkback.odex
system/app/talkback/talkback.apk
system/app/UserDictionaryProvider/arm/UserDictionaryProvider.odex
system/app/UserDictionaryProvider/UserDictionaryProvider.apk
system/app/Videos/arm/Videos.odex
system/app/Videos/lib/arm/libWVphoneAPI.so
system/app/Videos/Videos.apk
system/app/VisualizationWallpapers/arm/VisualizationWallpapers.odex
system/app/VisualizationWallpapers/VisualizationWallpapers.apk
system/app/Wallet/arm/Wallet.odex
system/app/Wallet/lib/arm/libbarhopper.so
system/app/Wallet/lib/arm/libgoogle-ocrclient.so
system/app/Wallet/Wallet.apk
system/app/WebViewGoogle/arm/WebViewGoogle.odex
system/app/WebViewGoogle/lib/arm/libwebviewchromium.so
system/app/WebViewGoogle/WebViewGoogle.apk
system/app/YGPS/arm/YGPS.odex
system/app/YGPS/YGPS.apk
system/app/YouTube/arm/YouTube.odex
system/app/YouTube/lib/arm/libcronet.so
system/app/YouTube/lib/arm/libfilterframework_jni.so
system/app/YouTube/lib/arm/libm2ts_player.so
system/app/YouTube/YouTube.apk
system/bin/6620_launcher
system/bin/6620_wmt_concurrency
system/bin/6620_wmt_lpbk
system/bin/adb
system/bin/aee
system/bin/aee_archive
system/bin/aee_core_forwarder
system/bin/aee_dumpstate
system/bin/akmd09911
system/bin/akmd8963
system/bin/am
system/bin/applypatch
system/bin/applysig
system/bin/appops
system/bin/app_process32
system/bin/appwidget
system/bin/atrace
system/bin/audiocmdservice_atci
system/bin/autokd
system/bin/batterywarning
system/bin/bcc
system/bin/blkid
system/bin/bmgr
system/bin/bootanimation
system/bin/boot_logo_updater
system/bin/btconfig
system/bin/btlogmask
system/bin/bu
system/bin/bugreport
system/bin/ccci_fsd
system/bin/ccci_mdinit
system/bin/clatd
system/bin/content
system/bin/dalvikvm32
system/bin/debuggerd
system/bin/dex2oat
system/bin/dhcp6c
system/bin/dhcp6ctl
system/bin/dhcp6s
system/bin/dhcpcd
system/bin/dnsmasq
system/bin/downloader
system/bin/dpm
system/bin/drmserver
system/bin/dumpstate
system/bin/dumpsys
system/bin/e2fsck
system/bin/em_svr
system/bin/factory
system/bin/fsck_msdos
system/bin/gsm0710muxd
system/bin/gsm0710muxdmd2
system/bin/guiext-server
system/bin/gzip
system/bin/gzip_static
system/bin/hostapd
system/bin/hostapd_cli
system/bin/hotplug
system/bin/idmap
system/bin/ime
system/bin/input
system/bin/installd
system/bin/install-recovery.sh
system/bin/ip
system/bin/ip6tables
system/bin/ipod
system/bin/iptables
system/bin/keystore
system/bin/kisd
system/bin/kpoc_charger
system/bin/linker
system/bin/lmkd
system/bin/logcat
system/bin/logd
system/bin/logwrapper
system/bin/make_ext4fs
system/bin/mdnsd
system/bin/media
system/bin/mediaserver
system/bin/meta_tst
system/bin/mmp
system/bin/mobile_log_d
system/bin/monkey
system/bin/msensord
system/bin/mtkbt
system/bin/MtkCodecService
system/bin/mtkrild
system/bin/mtkrildmd2
system/bin/mtk_setprop
system/bin/mtpd
system/bin/muxreport
system/bin/ndc
system/bin/netcfg
system/bin/netd
system/bin/netdiag
system/bin/nvram_agent_binder
system/bin/nvram_daemon
system/bin/oatdump
system/bin/patchoat
system/bin/perf_native_test
system/bin/ping
system/bin/ping6
system/bin/pm
system/bin/ppl_agent
system/bin/pppd
system/bin/pppd_btdun
system/bin/pq
system/bin/racoon
system/bin/reboot
system/bin/recovery
system/bin/requestsync
system/bin/resize2fs
system/bin/resize_ext4
system/bin/rtt
system/bin/run-as
system/bin/sbchk
system/bin/schedtest
system/bin/screencap
system/bin/screenrecord
system/bin/sdcard
system/bin/sensorservice
system/bin/service
system/bin/servicemanager
system/bin/settings
system/bin/sh
system/bin/surfaceflinger
system/bin/svc
system/bin/tc
system/bin/terservice
system/bin/tertestclient
system/bin/thermal
system/bin/thermald
system/bin/thermal_manager
system/bin/tiny_mkswap
system/bin/tiny_swapoff
system/bin/tiny_swapon
system/bin/toolbox
system/bin/uiautomator
system/bin/uncrypt
system/bin/vdc
system/bin/vold
system/bin/wm
system/bin/wmt_loader
system/bin/wpa_cli
system/bin/wpa_supplicant
system/build.prop
system/data/misc/ProjectConfig.mk
system/data/recovery_rootcheck
system/etc/ACCDET.kl
system/etc/apns-conf.xml
system/etc/audio_effects.conf
system/etc/audio_policy.conf
system/etc/bluetooth/auto_pair_blacklist.conf
system/etc/bluetooth/auto_pair_devlist.conf
system/etc/bluetooth/btconfig.xml
system/etc/bluetooth/bt_did.conf
system/etc/bluetooth/bt_stack.conf
system/etc/clatd.conf
system/etc/custom.conf
system/etc/dhcpcd/dhcpcd-hooks/20-dns.conf
system/etc/dhcpcd/dhcpcd-hooks/95-configured
system/etc/dhcpcd/dhcpcd-run-hooks
system/etc/ecc_list.xml
system/etc/event-log-tags
system/etc/factory.ini
system/etc/fallback_fonts.xml
system/etc/firmware/ROMv2_patch_1_0_hdr.bin
system/etc/firmware/ROMv2_patch_1_1_hdr.bin
system/etc/firmware/S_ANDRO_SFL.ini
system/etc/firmware/WIFI_RAM_CODE_8127
system/etc/firmware/WMT_SOC.cfg
system/etc/fonts.xml
system/etc/geocoding.db
system/etc/hosts
system/etc/iAmCdRom.iso
system/etc/install-recovery.sh
system/etc/media_codecs.xml
system/etc/mkshrc
system/etc/mtklog-config.prop
system/etc/mtk_omx_core.cfg
system/etc/NOTICE.html.gz
system/etc/NumberHeadWithIDToByte
system/etc/permissions/android.hardware.bluetooth_le.xml
system/etc/permissions/android.hardware.bluetooth.xml
system/etc/permissions/android.hardware.camera.xml
system/etc/permissions/android.hardware.location.gps.xml
system/etc/permissions/android.hardware.sensor.accelerometer.xml
system/etc/permissions/android.hardware.telephony.gsm.xml
system/etc/permissions/android.hardware.touchscreen.multitouch.distinct.xml
system/etc/permissions/android.hardware.touchscreen.multitouch.jazzhand.xml
system/etc/permissions/android.hardware.touchscreen.multitouch.xml
system/etc/permissions/android.hardware.touchscreen.xml
system/etc/permissions/android.hardware.usb.accessory.xml
system/etc/permissions/android.hardware.usb.host.xml
system/etc/permissions/android.hardware.wifi.direct.xml
system/etc/permissions/android.hardware.wifi.xml
system/etc/permissions/android.software.live_wallpaper.xml
system/etc/permissions/android.software.sip.voip.xml
system/etc/permissions/android.software.sip.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/com.google.widevine.software.drm.xml
system/etc/permissions/handheld_core_hardware.xml
system/etc/permissions/org.simalliance.openmobileapi.xml
system/etc/permissions/platform.xml
system/etc/permissions/tablet_core_hardware.xml
system/etc/ppp/ip-up-vpn
system/etc/preferred-apps/google.xml
system/etc/recovery.fstab
system/etc/recovery-resource.dat
system/etc/recovery.sig
system/etc/recovery.xml
system/etc/security/cacerts/00673b5b.0
system/etc/security/cacerts/02b73561.0
system/etc/security/cacerts/03f2b8cf.0
system/etc/security/cacerts/052e396b.0
system/etc/security/cacerts/08aef7bb.0
system/etc/security/cacerts/0d188d89.0
system/etc/security/cacerts/10531352.0
system/etc/security/cacerts/111e6273.0
system/etc/security/cacerts/119afc2e.0
system/etc/security/cacerts/124bbd54.0
system/etc/security/cacerts/12d55845.0
system/etc/security/cacerts/1676090a.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/2afc57aa.0
system/etc/security/cacerts/2d9dafe4.0
system/etc/security/cacerts/2fa87019.0
system/etc/security/cacerts/2fb1850a.0
system/etc/security/cacerts/33815e15.0
system/etc/security/cacerts/33815e15.1
system/etc/security/cacerts/343eb6cb.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/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/450c6e38.0
system/etc/security/cacerts/455f1b52.0
system/etc/security/cacerts/48a195d8.0
system/etc/security/cacerts/4d654d1d.0
system/etc/security/cacerts/4e18c148.0
system/etc/security/cacerts/4fbd6bfa.0
system/etc/security/cacerts/5021a0a2.0
system/etc/security/cacerts/5046c355.0
system/etc/security/cacerts/524d9b43.0
system/etc/security/cacerts/52b525c7.0
system/etc/security/cacerts/56b8a0b6.0
system/etc/security/cacerts/57692373.0
system/etc/security/cacerts/58a44af1.0
system/etc/security/cacerts/594f1775.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/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/72f369af.0
system/etc/security/cacerts/72fa7371.0
system/etc/security/cacerts/74c26bd0.0
system/etc/security/cacerts/75680d2e.0
system/etc/security/cacerts/7651b327.0
system/etc/security/cacerts/76579174.0
system/etc/security/cacerts/7672ac4b.0
system/etc/security/cacerts/7999be0d.0
system/etc/security/cacerts/7a481e66.0
system/etc/security/cacerts/7a819ef2.0
system/etc/security/cacerts/7d3cd826.0
system/etc/security/cacerts/7d453d8f.0
system/etc/security/cacerts/81b9768f.0
system/etc/security/cacerts/82223c44.0
system/etc/security/cacerts/8470719d.0
system/etc/security/cacerts/84cba82f.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/895cad1a.0
system/etc/security/cacerts/89c02a45.0
system/etc/security/cacerts/8d6437c3.0
system/etc/security/cacerts/91739615.0
system/etc/security/cacerts/9339512a.0
system/etc/security/cacerts/9576d26b.0
system/etc/security/cacerts/95aff9e3.0
system/etc/security/cacerts/961f5451.0
system/etc/security/cacerts/9685a493.0
system/etc/security/cacerts/9772ca32.0
system/etc/security/cacerts/9ab62355.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/a2df7ad7.0
system/etc/security/cacerts/a3896b44.0
system/etc/security/cacerts/a7605362.0
system/etc/security/cacerts/a7d2cf64.0
system/etc/security/cacerts/ab5346f4.0
system/etc/security/cacerts/add67345.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/bc3f2570.0
system/etc/security/cacerts/bda4cc84.0
system/etc/security/cacerts/bdacca6f.0
system/etc/security/cacerts/bf64f35b.0
system/etc/security/cacerts/c33a80d4.0
system/etc/security/cacerts/c3a6a9ad.0
system/etc/security/cacerts/c491639e.0
system/etc/security/cacerts/c51c224c.0
system/etc/security/cacerts/c527e4ab.0
system/etc/security/cacerts/c7e2a638.0
system/etc/security/cacerts/c90bc37d.0
system/etc/security/cacerts/cb156124.0
system/etc/security/cacerts/ccc52f49.0
system/etc/security/cacerts/cdaebb72.0
system/etc/security/cacerts/cf701eeb.0
system/etc/security/cacerts/d06393bb.0
system/etc/security/cacerts/d16a5865.0
system/etc/security/cacerts/d59297b8.0
system/etc/security/cacerts/d64f06f3.0
system/etc/security/cacerts/d66b55d9.0
system/etc/security/cacerts/d7746a63.0
system/etc/security/cacerts/dbc54cab.0
system/etc/security/cacerts/ddc328ff.0
system/etc/security/cacerts/e268a4c5.0
system/etc/security/cacerts/e442e424.0
system/etc/security/cacerts/e48193cf.0
system/etc/security/cacerts/e60bf0c0.0
system/etc/security/cacerts/e775ed2d.0
system/etc/security/cacerts/e7b8d656.0
system/etc/security/cacerts/e8651083.0
system/etc/security/cacerts/ea169617.0
system/etc/security/cacerts/eb375c3e.0
system/etc/security/cacerts/ed39abd0.0
system/etc/security/cacerts/ed524cf5.0
system/etc/security/cacerts/ee7cd6fb.0
system/etc/security/cacerts/ee90b008.0
system/etc/security/cacerts/f58a60fe.0
system/etc/security/cacerts/f61bff45.0
system/etc/security/cacerts/f80cc7f6.0
system/etc/security/cacerts/fac084d7.0
system/etc/security/cacerts/facacbc6.0
system/etc/security/cacerts/fb126c6d.0
system/etc/security/cacerts/fde84897.0
system/etc/security/cacerts/ff783690.0
system/etc/security/mac_permissions.xml
system/etc/security/otacerts.zip
system/etc/system_fonts.xml
system/etc/.tp/.ht120.mtc
system/etc/.tp/thermal.conf
system/etc/.tp/thermal.off.conf
system/etc/updatecmds/google_generic_update.txt
system/etc/virtual-spn-conf-by-efgid1.xml
system/etc/virtual-spn-conf-by-efpnn.xml
system/etc/virtual-spn-conf-by-efspn.xml
system/etc/virtual-spn-conf-by-imsi.xml
system/etc/wide-dhcpv6/dhcp6c.conf
system/etc/wide-dhcpv6/dhcp6cctlkey
system/etc/wide-dhcpv6/dhcp6cDNS.conf
system/etc/wide-dhcpv6/dhcp6c.script
system/etc/wide-dhcpv6/dhcp6s.conf
system/etc/wifi/p2p_supplicant_overlay.conf
system/etc/wifi/wpa_supplicant.conf
system/etc/wifi/wpa_supplicant_overlay.conf
system/etc/xlog-filter-default
system/etc/xlog-filter-tags
system/fonts/AndroidClock_Highlight.ttf
system/fonts/AndroidClock_Solid.ttf
system/fonts/AndroidClock.ttf
system/fonts/CarroisGothicSC-Regular.ttf
system/fonts/Clockopia.ttf
system/fonts/ComingSoon.ttf
system/fonts/CutiveMono.ttf
system/fonts/DancingScript-Bold.ttf
system/fonts/DancingScript-Regular.ttf
system/fonts/DroidSansFallback.ttf
system/fonts/DroidSansMono.ttf
system/fonts/MTLmr3m.ttf
system/fonts/NanumGothic.ttf
system/fonts/NotoColorEmoji.ttf
system/fonts/NotoNaskh-Bold.ttf
system/fonts/NotoNaskh-Regular.ttf
system/fonts/NotoNaskhUI-Bold.ttf
system/fonts/NotoNaskhUI-Regular.ttf
system/fonts/NotoSansArmenian-Bold.ttf
system/fonts/NotoSansArmenian-Regular.ttf
system/fonts/NotoSansBengali-Bold.ttf
system/fonts/NotoSansBengali-Regular.ttf
system/fonts/NotoSansBengaliUI-Bold.ttf
system/fonts/NotoSansBengaliUI-Regular.ttf
system/fonts/NotoSansDevanagari-Bold.ttf
system/fonts/NotoSansDevanagari-Regular.ttf
system/fonts/NotoSansDevanagariUI-Bold.ttf
system/fonts/NotoSansDevanagariUI-Regular.ttf
system/fonts/NotoSansEthiopic-Bold.ttf
system/fonts/NotoSansEthiopic-Regular.ttf
system/fonts/NotoSansGeorgian-Bold.ttf
system/fonts/NotoSansGeorgian-Regular.ttf
system/fonts/NotoSansHebrew-Bold.ttf
system/fonts/NotoSansHebrew-Regular.ttf
system/fonts/NotoSansKannada-Bold.ttf
system/fonts/NotoSansKannada-Regular.ttf
system/fonts/NotoSansKannadaUI-Bold.ttf
system/fonts/NotoSansKannadaUI-Regular.ttf
system/fonts/NotoSansKhmer-Bold.ttf
system/fonts/NotoSansKhmer-Regular.ttf
system/fonts/NotoSansKhmerUI-Bold.ttf
system/fonts/NotoSansKhmerUI-Regular.ttf
system/fonts/NotoSansLao-Bold.ttf
system/fonts/NotoSansLao-Regular.ttf
system/fonts/NotoSansLaoUI-Bold.ttf
system/fonts/NotoSansLaoUI-Regular.ttf
system/fonts/NotoSansMalayalam-Bold.ttf
system/fonts/NotoSansMalayalam-Regular.ttf
system/fonts/NotoSansMalayalamUI-Bold.ttf
system/fonts/NotoSansMalayalamUI-Regular.ttf
system/fonts/NotoSansMyanmar-Bold.ttf
system/fonts/NotoSansMyanmar-Regular.ttf
system/fonts/NotoSansMyanmarUI-Bold.ttf
system/fonts/NotoSansMyanmarUI-Regular.ttf
system/fonts/NotoSansSymbols-Regular-Subsetted.ttf
system/fonts/NotoSansTamil-Bold.ttf
system/fonts/NotoSansTamil-Regular.ttf
system/fonts/NotoSansTamilUI-Bold.ttf
system/fonts/NotoSansTamilUI-Regular.ttf
system/fonts/NotoSansTelugu-Bold.ttf
system/fonts/NotoSansTelugu-Regular.ttf
system/fonts/NotoSansTeluguUI-Bold.ttf
system/fonts/NotoSansTeluguUI-Regular.ttf
system/fonts/NotoSansThai-Bold.ttf
system/fonts/NotoSansThai-Regular.ttf
system/fonts/NotoSansThaiUI-Bold.ttf
system/fonts/NotoSansThaiUI-Regular.ttf
system/fonts/NotoSerif-BoldItalic.ttf
system/fonts/NotoSerif-Bold.ttf
system/fonts/NotoSerif-Italic.ttf
system/fonts/NotoSerif-Regular.ttf
system/fonts/Padauk.ttf
system/fonts/Roboto-BlackItalic.ttf
system/fonts/Roboto-Black.ttf
system/fonts/Roboto-BoldItalic.ttf
system/fonts/Roboto-Bold.ttf
system/fonts/RobotoCondensed-BoldItalic.ttf
system/fonts/RobotoCondensed-Bold.ttf
system/fonts/RobotoCondensed-Italic.ttf
system/fonts/RobotoCondensed-LightItalic.ttf
system/fonts/RobotoCondensed-Light.ttf
system/fonts/RobotoCondensed-Regular.ttf
system/fonts/Roboto-Italic.ttf
system/fonts/Roboto-LightItalic.ttf
system/fonts/Roboto-Light.ttf
system/fonts/Roboto-MediumItalic.ttf
system/fonts/Roboto-Medium.ttf
system/fonts/Roboto-Regular.ttf
system/fonts/Roboto-ThinItalic.ttf
system/fonts/Roboto-Thin.ttf
system/framework/am.jar
system/framework/android.policy.jar
system/framework/android.test.runner.jar
system/framework/apache-xml.jar
system/framework/appops.jar
system/framework/appwidget.jar
system/framework/arm/am.odex
system/framework/arm/android.test.runner.odex
system/framework/arm/appops.odex
system/framework/arm/appwidget.odex
system/framework/arm/bmgr.odex
system/framework/arm/boot.art
system/framework/arm/boot.oat
system/framework/arm/bu.odex
system/framework/arm/com.android.future.usb.accessory.odex
system/framework/arm/com.android.location.provider.odex
system/framework/arm/com.android.mediadrm.signer.odex
system/framework/arm/com.android.media.remotedisplay.odex
system/framework/arm/content.odex
system/framework/arm/CustomPropInterface.odex
system/framework/arm/dpm.odex
system/framework/arm/ethernet-service.odex
system/framework/arm/ime.odex
system/framework/arm/input.odex
system/framework/arm/javax.obex.odex
system/framework/arm/media_cmd.odex
system/framework/arm/monkey.odex
system/framework/arm/MultiWindowProxy.odex
system/framework/arm/pm.odex
system/framework/arm/recovery.odex
system/framework/arm/requestsync.odex
system/framework/arm/services.odex
system/framework/arm/settings.odex
system/framework/arm/svc.odex
system/framework/arm/uiautomator.odex
system/framework/arm/wifi-service.odex
system/framework/arm/wm.odex
system/framework/bmgr.jar
system/framework/bouncycastle.jar
system/framework/bu.jar
system/framework/com.android.future.usb.accessory.jar
system/framework/com.android.location.provider.jar
system/framework/com.android.mediadrm.signer.jar
system/framework/com.android.media.remotedisplay.jar
system/framework/com.archos.arumfmk.jar
system/framework/com.archos.frameworks.jar
system/framework/com.google.android.maps.jar
system/framework/com.google.android.media.effects.jar
system/framework/com.google.widevine.software.drm.jar
system/framework/conscrypt.jar
system/framework/content.jar
system/framework/core-junit.jar
system/framework/core-libart.jar
system/framework/CustomPropInterface.jar
system/framework/dpm.jar
system/framework/ethernet-service.jar
system/framework/ext.jar
system/framework/framework.jar
system/framework/framework-res.apk
system/framework/ime.jar
system/framework/ims-common.jar
system/framework/input.jar
system/framework/javax.obex.jar
system/framework/media_cmd.jar
system/framework/mediatek-common.jar
system/framework/mediatek-framework.jar
system/framework/mediatek-res/mediatek-res.apk
system/framework/mediatek-telephony-common.jar
system/framework/mms-common.jar
system/framework/monkey.jar
system/framework/MultiWindowProxy.jar
system/framework/okhttp.jar
system/framework/org.simalliance.openmobileapi.jar
system/framework/pm.jar
system/framework/recovery.jar
system/framework/requestsync.jar
system/framework/services.jar
system/framework/settings.jar
system/framework/svc.jar
system/framework/telephony-common.jar
system/framework/uiautomator.jar
system/framework/voip-common.jar
system/framework/wifi-service.jar
system/framework/wm.jar
system/lib/crtbegin_so.o
system/lib/crtend_so.o
system/lib/egl/egl.cfg
system/lib/egl/libEGL_mali.so
system/lib/egl/libGLESv1_CM_mali.so
system/lib/egl/libGLESv2_mali.so
system/lib/hw/audio_policy.default.so
system/lib/hw/audio_policy.stub.so
system/lib/hw/audio.primary.default.so
system/lib/hw/audio.primary.mt8127.so
system/lib/hw/audio.r_submix.default.so
system/lib/hw/audio.usb.default.so
system/lib/hw/bluetooth.default.so
system/lib/hw/camera.mt8127.so
system/lib/hw/gps.default.so
system/lib/hw/gralloc.default.so
system/lib/hw/gralloc.mt8127.so
system/lib/hw/hwcomposer.mt8127.so
system/lib/hw/keystore.default.so
system/lib/hw/lights.default.so
system/lib/hw/local_time.default.so
system/lib/hw/power.default.so
system/lib/hw/sensors.mt8127.so
system/lib/hw/vibrator.default.so
system/lib/lib3a.so
system/lib/liba3m.so
system/lib/libaal_cust.so
system/lib/libaal.so
system/lib/libacdk.so
system/lib/libadpcm.so
system/lib/libaed.so
system/lib/libAGifEncoder.so
system/lib/libandroidfw.so
system/lib/libandroid_runtime.so
system/lib/libandroid_servers.so
system/lib/libandroid.so
system/lib/libart-compiler.so
system/lib/libart-disassembler.so
system/lib/libart.so
system/lib/libaudiocompensationfilter.so
system/lib/libaudiocomponentengine.so
system/lib/libaudiocustparam.so
system/lib/libaudiodcrflt.so
system/lib/libaudioeffect_jni.so
system/lib/libaudioflinger.so
system/lib/libaudiomtkdcremoval.so
system/lib/libaudiopolicymanagerdefault.so
system/lib/libaudiopolicymanager.so
system/lib/libaudiopolicyservice.so
system/lib/libaudio-resampler.so
system/lib/libaudioresampler.so
system/lib/libaudiosetting.so
system/lib/libaudioutils.so
system/lib/libbacktrace_libc++.so
system/lib/libbacktrace.so
system/lib/libbcc.so
system/lib/libbcinfo.so
system/lib/libbessound_hd_mtk.so
system/lib/libbinder.so
system/lib/libblisrc32.so
system/lib/libblisrc.so
system/lib/libbluetoothdrv.so
system/lib/libbluetoothem_mtk.so
system/lib/libbluetooth_jni.so
system/lib/libbluetooth_mtk.so
system/lib/libbluetooth_relayer.so
system/lib/libBnMtkCodec.so
system/lib/libbtcust.so
system/lib/libbtcusttable.so
system/lib/libbtem.so
system/lib/libbtpcm.so
system/lib/libbtsession.so
system/lib/libbtsniff.so
system/lib/libbtstd.so
system/lib/libbwc.so
system/lib/libcamalgo.so
system/lib/libcam.camadapter.so
system/lib/libcam.campipe.so
system/lib/libcam.camshot.so
system/lib/libcam.client.so
system/lib/libcam.device1.so
system/lib/libcamdrv.so
system/lib/libcameraanalyzer.so
system/lib/libcamera_client_mtk.so
system/lib/libcamera_client.so
system/lib/libcameracustom.so
system/lib/libcamera_metadata.so
system/lib/libcameraservice.so
system/lib/libcam.exif.so
system/lib/libcam_hwutils.so
system/lib/libcam_mmp.so
system/lib/libcam.paramsmgr.so
system/lib/libcam_platform.so
system/lib/libcam.utils.sensorlistener.so
system/lib/libcam_utils.so
system/lib/libcam.utils.so
system/lib/libccci_util.so
system/lib/libclcore.bc
system/lib/libclcore_debug.bc
system/lib/libclcore_neon.bc
system/lib/libcommon_time_client.so
system/lib/libcompiler_rt.so
system/lib/libcrypto.so
system/lib/libc.so
system/lib/libc++.so
system/lib/libcurl.so
system/lib/libcustom_jni.so
system/lib/libcustom_nvram.so
system/lib/libcustom_prop.so
system/lib/libcutils.so
system/lib/libcvsd_mtk.so
system/lib/libdefcontainer_jni.so
system/lib/libdirect-coredump.so
system/lib/libdiskconfig.so
system/lib/libdl.so
system/lib/libdpframework.so
system/lib/libdrmframework_jni.so
system/lib/libdrmframework.so
system/lib/libdrmmtkutil.so
system/lib/libdrmmtkwhitelist.so
system/lib/libeffects.so
system/lib/libEGL.so
system/lib/libem_bt_jni.so
system/lib/libem_gpio_jni.so
system/lib/libem_lte_jni.so
system/lib/libem_modem_jni.so
system/lib/libem_sensor_jni.so
system/lib/libem_support_jni.so
system/lib/libem_usb_jni.so
system/lib/libem_wifi_jni.so
system/lib/libETC1.so
system/lib/libexif.so
system/lib/libexpat.so
system/lib/libext2_blkid.so
system/lib/libext2_com_err.so
system/lib/libext2_e2p.so
system/lib/libext2fs.so
system/lib/libext2_profile.so
system/lib/libext2_quota.so
system/lib/libext2_uuid.so
system/lib/libext4_utils.so
system/lib/libextadvanced_jni.so
system/lib/libextbip_jni.so
system/lib/libextbip.so
system/lib/libextbpp_jni.so
system/lib/libextbpp.so
system/lib/libextdun_jni.so
system/lib/libextem.so
system/lib/libextftp_jni.so
system/lib/libextftp.so
system/lib/libextmap_jni.so
system/lib/libextmap.so
system/lib/libextsimap_jni.so
system/lib/libextsimap.so
system/lib/libextsys_jni.so
system/lib/libextsys.so
system/lib/libexttestmode.so
system/lib/libf2fs_sparseblock.so
system/lib/libfeatureio.so