-
Notifications
You must be signed in to change notification settings - Fork 22
/
skip-files-vendor.txt
1431 lines (1404 loc) · 42.1 KB
/
skip-files-vendor.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
# Standard build output with vendor image build enabled
apex/com.android.hardware.cas.apex
bin/[
bin/acpi
bin/awk
bin/base64
bin/basename
bin/blockdev
bin/boringssl_self_test32
bin/boringssl_self_test64
bin/brctl
bin/cal
bin/cat
bin/chattr
bin/chcon
bin/checkpoint_gc
bin/chgrp
bin/chmod
bin/chown
bin/chroot
bin/chrt
bin/cksum
bin/clear
bin/cmp
bin/comm
bin/cp
bin/cpio
bin/cut
bin/date
bin/dd
bin/devmem
bin/df
bin/diff
bin/dirname
bin/dmesg
bin/dos2unix
bin/du
bin/dump/dump_aoc
bin/dump/dump_devfreq
bin/dump/dump_display
bin/dump/dump_gti0.sh
bin/dump/dump_modem.sh
bin/dump/dump_modemlog
bin/dump/dump_perf
bin/dump/dump_pixel_metrics
bin/dump/dump_power_gs201.sh
bin/dump/dump_sensors
bin/dump/dump_soc
bin/dump/dump_storage
bin/dump/dump_thermal.sh
bin/dump/dump_trusty.sh
bin/dump/dump_umfw_stat
bin/dumpsys
bin/echo
bin/egrep
bin/env
bin/expand
bin/expr
bin/fallocate
bin/false
bin/fgrep
bin/file
bin/find
bin/flock
bin/fmt
bin/free
bin/fsync
bin/getconf
bin/getenforce
bin/getevent
bin/getfattr
bin/getprop
bin/gpiodetect
bin/gpiofind
bin/gpioget
bin/gpioinfo
bin/gpioset
bin/gpu_probe
bin/grep
bin/groups
bin/gunzip
bin/gzip
bin/head
bin/hostname
bin/hw/android.hardware.audio.service
bin/hw/android.hardware.boot-service.default-pixel
bin/hw/[email protected]
bin/hw/android.hardware.composer.hwc3-service.pixel
bin/hw/android.hardware.drm-service.clearkey
bin/hw/android.hardware.dumpstate-service
bin/hw/android.hardware.gatekeeper-service.trusty
bin/hw/android.hardware.graphics.allocator-V1-service
bin/hw/android.hardware.health-service.gs201
bin/hw/android.hardware.health.storage-service.default
bin/hw/android.hardware.memtrack-service.pixel
bin/hw/android.hardware.nfc-service.st
bin/hw/android.hardware.power-service.pixel-libperfmgr
bin/hw/android.hardware.power.stats-service.pixel
bin/hw/[email protected]
bin/hw/[email protected]
bin/hw/android.hardware.security.keymint-service.trusty
bin/hw/android.hardware.sensors-service.multihal
bin/hw/android.hardware.thermal-service.pixel
bin/hw/android.hardware.usb-service
bin/hw/android.hardware.usb.gadget-service
bin/hw/android.hardware.vibrator-service.cs40l26
bin/hw/android.hardware.wifi-service
bin/hw/disable_contaminant_detection.sh
bin/hw/hostapd
bin/hw/wpa_supplicant
bin/hwclock
bin/i2cdetect
bin/i2cdump
bin/i2cget
bin/i2cset
bin/i2ctransfer
bin/iconv
bin/id
bin/ifconfig
bin/init.display.sh
bin/inotifyd
bin/insmod
bin/insmod.sh
bin/install
bin/ionice
bin/iorenice
bin/kill
bin/killall
bin/ln
bin/load_policy
bin/log
bin/logger
bin/logname
bin/logwrapper
bin/losetup
bin/ls
bin/lsattr
bin/lsmod
bin/lsof
bin/lspci
bin/lsusb
bin/md5sum
bin/memeater
bin/microcom
bin/misc_writer
bin/mkdir
bin/mkfifo
bin/mknod
bin/mkswap
bin/mktemp
bin/modinfo
bin/modprobe
bin/more
bin/mount
bin/mountpoint
bin/mv
bin/nc
bin/netcat
bin/netstat
bin/nice
bin/nl
bin/nohup
bin/nproc
bin/nsenter
bin/od
bin/paste
bin/patch
bin/pgrep
bin/pidof
bin/pixelstats-vendor
bin/pkill
bin/pmap
bin/printenv
bin/printf
bin/ps
bin/pwd
bin/readelf
bin/readlink
bin/realpath
bin/rebalance_interrupts-vendor
bin/renice
bin/restorecon
bin/rm
bin/rmdir
bin/rmmod
bin/rtcwake
bin/runcon
bin/sed
bin/sendevent
bin/sendhint
bin/seq
bin/setenforce
bin/setfattr
bin/setprop
bin/setsid
bin/sh
bin/sha1sum
bin/sha224sum
bin/sha256sum
bin/sha384sum
bin/sha512sum
bin/sleep
bin/sort
bin/split
bin/start
bin/stat
bin/stop
bin/storageproxyd
bin/strings
bin/stty
bin/swapoff
bin/swapon
bin/sync
bin/sysctl
bin/tac
bin/tail
bin/tar
bin/taskset
bin/tee
bin/test
bin/thermal_symlinks
bin/time
bin/timeout
bin/toolbox
bin/top
bin/touch
bin/toybox_vendor
bin/tr
bin/true
bin/truncate
bin/trusty_apploader
bin/tty
bin/uclampset
bin/ufs_firmware_update.sh
bin/ulimit
bin/umount
bin/uname
bin/uniq
bin/unix2dos
bin/unlink
bin/unshare
bin/uptime
bin/usleep
bin/uudecode
bin/uuencode
bin/uuidgen
bin/vi
bin/vmstat
bin/vndservice
bin/vndservicemanager
bin/watch
bin/wc
bin/which
bin/whoami
bin/xargs
bin/xxd
bin/yes
bin/zcat
build.prop
etc/NOTICE.xml.gz
etc/a2dp_audio_policy_configuration_7_0.xml
etc/a2dp_in_audio_policy_configuration_7_0.xml
etc/aconfig_flags.pb
etc/aidl/le_audio/aidl_audio_set_configurations.bfbs
etc/aidl/le_audio/aidl_audio_set_configurations.json
etc/aidl/le_audio/aidl_audio_set_scenarios.bfbs
etc/aidl/le_audio/aidl_audio_set_scenarios.json
etc/aoc/BLUETOOTH.dat
etc/aoc/HANDSET.dat
etc/aoc/HANDSFREE.dat
etc/aoc/HEADSET.dat
etc/aoc/mcps.dat
etc/aoc/recording.gatf
etc/aoc/smartfeature.gstf
etc/atrace/atrace_categories.txt
etc/audio_effects.xml
etc/audio_platform_configuration.xml
etc/audio_policy_configuration.xml
etc/audio_policy_configuration_a2dp_offload_disabled.xml
etc/audio_policy_configuration_bluetooth_legacy_hal.xml
etc/audio_policy_configuration_le_offload_disabled.xml
etc/audio_policy_volumes.xml
etc/bluetooth_audio_policy_configuration_7_0.xml
etc/bluetooth_power_limits.csv
etc/bluetooth_power_limits_G0DZQ_CA.csv
etc/bluetooth_power_limits_G0DZQ_EU.csv
etc/bluetooth_power_limits_G0DZQ_JP.csv
etc/bluetooth_power_limits_G0DZQ_US.csv
etc/bluetooth_power_limits_G82U8_JP.csv
etc/bluetooth_power_limits_GHL1X_EU.csv
etc/bluetooth_power_limits_GWKK3_US.csv
etc/bluetooth_power_limits_GWKK3_cA.csv
etc/boringssl_self_test.no_zygote.rc
etc/boringssl_self_test.zygote32.rc
etc/boringssl_self_test.zygote64.rc
etc/boringssl_self_test.zygote64_32.rc
etc/build_flags.json
etc/default_volume_tables.xml
etc/display_colordata_cal0.pb
etc/display_colordata_dev_cal0.pb
etc/display_golden_cal0.pb
etc/fs_config_dirs
etc/fs_config_files
etc/fstab.gs201
etc/fstab.gs201-fips
etc/fstab.modem
etc/fstab.persist
etc/fstab.zram.2g
etc/fstab.zram.3g
etc/fstab.zram.40p
etc/fstab.zram.4g
etc/fstab.zram.50p
etc/fstab.zram.50p-1g
etc/fstab.zram.50p-2g
etc/fstab.zram.5g
etc/fstab.zram.60p
etc/fstab.zram.6g
etc/gnss/gps.cer
etc/gnss/gps.xml
etc/gnss/lhd.conf
etc/gnss/scd.conf
etc/group
etc/hearing_aid_audio_policy_configuration_7_0.xml
etc/init.common.cfg
etc/init.insmod.lynx.cfg
etc/init/android.hardware.audio.service.rc
etc/init/android.hardware.boot-service.default-pixel.rc
etc/init/[email protected]
etc/init/android.hardware.drm-service.clearkey.rc
etc/init/android.hardware.dumpstate-service.rc
etc/init/android.hardware.gatekeeper-service.trusty.rc
etc/init/android.hardware.graphics.allocator-aidl-service.rc
etc/init/android.hardware.health-service.gs201.rc
etc/init/android.hardware.power-service.pixel-libperfmgr.rc
etc/init/android.hardware.power.stats-service.pixel.rc
etc/init/[email protected]
etc/init/[email protected]
etc/init/android.hardware.security.keymint-service.trusty.rc
etc/init/android.hardware.sensors-service-multihal.rc
etc/init/android.hardware.thermal-service.pixel.rc
etc/init/android.hardware.usb-service.rc
etc/init/android.hardware.usb.gadget-service.rc
etc/init/android.hardware.vibrator-service.cs40l26.rc
etc/init/android.hardware.wifi-service.rc
etc/init/android.hardware.wifi.supplicant-service.rc
etc/init/atrace_categories.rc
etc/init/boringssl_self_test.rc
etc/init/gpu_probe.rc
etc/init/health-storage-default.rc
etc/init/hostapd.android.rc
etc/init/hw/init.gs201.rc
etc/init/hw/init.gs201.usb.rc
etc/init/hw/init.lynx.rc
etc/init/hwc3-pixel.rc
etc/init/init.aoc.rc
etc/init/init.modem.rc
etc/init/init.module.rc
etc/init/init.pixel.rc
etc/init/init.storage.rc
etc/init/init.touch.gti0.rc
etc/init/memtrack.rc
etc/init/nfc-service-default.rc
etc/init/pixel-mm-gki.rc
etc/init/pixel-thermal-symlinks.rc
etc/init/pixelstats-vendor.gs201.rc
etc/init/rebalance_interrupts-vendor.gs101.rc
etc/init/storage.gs201.rc
etc/init/vndservicemanager.rc
etc/le_audio_codec_capabilities.xml
etc/libnfc-hal-st.conf
etc/libse-gto-hal.conf
etc/libse-gto-hal2.conf
etc/linker.config.pb
etc/media_codecs.xml
etc/media_codecs_c2.xml
etc/media_codecs_performance.xml
etc/media_codecs_performance_c2.xml
etc/media_profiles_V1_0.xml
etc/mixer_paths.xml
etc/mkshrc
etc/modem/Pixel_Default_metrics.xml
etc/modem/Pixel_stability.cfg
etc/modem/Pixel_stability.nprf
etc/modem/default.cfg
etc/modem/default.nprf
etc/modem/default_metrics.xml
etc/modem/display_primary_mipi_coex_table.csv
etc/modem/logging.conf
etc/passwd
etc/permissions/android.hardware.audio.low_latency.xml
etc/permissions/android.hardware.audio.pro.xml
etc/permissions/android.hardware.bluetooth.prebuilt.xml
etc/permissions/android.hardware.bluetooth_le.prebuilt.xml
etc/permissions/android.hardware.camera.concurrent.xml
etc/permissions/android.hardware.camera.flash-autofocus.xml
etc/permissions/android.hardware.camera.front.xml
etc/permissions/android.hardware.camera.full.xml
etc/permissions/android.hardware.camera.raw.xml
etc/permissions/android.hardware.context_hub.xml
etc/permissions/android.hardware.device_unique_attestation.xml
etc/permissions/android.hardware.hardware_keystore.xml
etc/permissions/android.hardware.keystore.app_attest_key.xml
etc/permissions/android.hardware.location.gps.prebuilt.xml
etc/permissions/android.hardware.nfc.ese.xml
etc/permissions/android.hardware.nfc.hce.xml
etc/permissions/android.hardware.nfc.hcef.xml
etc/permissions/android.hardware.nfc.xml
etc/permissions/android.hardware.opengles.aep.xml
etc/permissions/android.hardware.se.omapi.ese.xml
etc/permissions/android.hardware.se.omapi.uicc.xml
etc/permissions/android.hardware.sensor.accelerometer.xml
etc/permissions/android.hardware.sensor.barometer.xml
etc/permissions/android.hardware.sensor.compass.xml
etc/permissions/android.hardware.sensor.dynamic.head_tracker.xml
etc/permissions/android.hardware.sensor.gyroscope.xml
etc/permissions/android.hardware.sensor.hifi_sensors.xml
etc/permissions/android.hardware.sensor.light.xml
etc/permissions/android.hardware.sensor.proximity.xml
etc/permissions/android.hardware.sensor.stepcounter.xml
etc/permissions/android.hardware.sensor.stepdetector.xml
etc/permissions/android.hardware.telephony.carrierlock.xml
etc/permissions/android.hardware.touchscreen.multitouch.jazzhand.xml
etc/permissions/android.hardware.usb.accessory.xml
etc/permissions/android.hardware.usb.host.xml
etc/permissions/android.hardware.vulkan.compute.xml
etc/permissions/android.hardware.vulkan.level.xml
etc/permissions/android.hardware.vulkan.version.xml
etc/permissions/android.hardware.wifi.aware.xml
etc/permissions/android.hardware.wifi.direct.xml
etc/permissions/android.hardware.wifi.passpoint.xml
etc/permissions/android.hardware.wifi.rtt.xml
etc/permissions/android.hardware.wifi.xml
etc/permissions/android.software.contextualsearch.xml
etc/permissions/android.software.device_id_attestation.xml
etc/permissions/android.software.ipsec_tunnel_migration.xml
etc/permissions/android.software.ipsec_tunnels.xml
etc/permissions/android.software.midi.xml
etc/permissions/android.software.opengles.deqp.level.xml
etc/permissions/android.software.verified_boot.xml
etc/permissions/android.software.vulkan.deqp.level.xml
etc/permissions/aosp_excluded_hardware.xml
etc/permissions/com.nxp.mifare.xml
etc/permissions/handheld_core_hardware.xml
etc/permissions/vendor.android.hardware.camera.preview-dis.xml
etc/powerhint.json
etc/r_submix_audio_policy_configuration.xml
etc/selinux/plat_pub_versioned.cil
etc/selinux/plat_sepolicy_vers.txt
etc/selinux/precompiled_sepolicy
etc/selinux/precompiled_sepolicy.plat_sepolicy_and_mapping.sha256
etc/selinux/precompiled_sepolicy.product_sepolicy_and_mapping.sha256
etc/selinux/precompiled_sepolicy.system_ext_sepolicy_and_mapping.sha256
etc/selinux/selinux_denial_metadata
etc/selinux/vendor_file_contexts
etc/selinux/vendor_hwservice_contexts
etc/selinux/vendor_mac_permissions.xml
etc/selinux/vendor_property_contexts
etc/selinux/vendor_seapp_contexts
etc/selinux/vendor_sepolicy.cil
etc/selinux/vendor_service_contexts
etc/selinux/vndservice_contexts
etc/sound_trigger_configuration.xml
etc/sysconfig/component-overrides.xml
etc/task_profiles.json
etc/thermal_info_config.json
etc/thermal_info_config_charge.json
etc/ueventd.rc
etc/usb_audio_policy_configuration.xml
etc/vintf/compatibility_matrix.xml
etc/vintf/manifest.xml
etc/vintf/manifest/[email protected]
etc/vintf/manifest/android.hardware.drm-service.clearkey.xml
etc/vintf/manifest/android.hardware.dumpstate-service.xml
etc/vintf/manifest/android.hardware.gatekeeper-service.trusty.xml
etc/vintf/manifest/android.hardware.health-service.gs201.xml
etc/vintf/manifest/android.hardware.power-service.pixel.xml
etc/vintf/manifest/android.hardware.power.stats-service.pixel.xml
etc/vintf/manifest/android.hardware.security.keymint-service.trusty.xml
etc/vintf/manifest/android.hardware.sensors-multihal.xml
etc/vintf/manifest/android.hardware.thermal-service.pixel.xml
etc/vintf/manifest/android.hardware.usb-service.xml
etc/vintf/manifest/android.hardware.usb.gadget-service.xml
etc/vintf/manifest/android.hardware.vibrator-service.cs40l26.xml
etc/vintf/manifest/android.hardware.wifi-service.xml
etc/vintf/manifest/android.hardware.wifi.hostapd.xml
etc/vintf/manifest/android.hardware.wifi.supplicant.xml
etc/vintf/manifest/bluetooth_audio.xml
etc/vintf/manifest/health-storage-default.xml
etc/vintf/manifest/hwc3-default.xml
etc/vintf/manifest/manifest_gralloc_aidl.xml
etc/vintf/manifest/memtrack.xml
etc/vintf/manifest/nfc-service-default.xml
etc/vintf/manifest/pixel-display-default.xml
etc/waves_config.ini
etc/waves_preset.mps
etc/wifi/coex_table.xml
etc/wifi/p2p_supplicant_overlay.conf
etc/wifi/wpa_supplicant.conf
etc/wifi/wpa_supplicant_overlay.conf
firmware/R-cs35l41-dsp1-spk-cali.bin
firmware/R-cs35l41-dsp1-spk-diag.bin
firmware/R-cs35l41-dsp1-spk-prot.bin
firmware/cs35l41-dsp1-spk-cali.bin
firmware/cs35l41-dsp1-spk-cali.wmfw
firmware/cs35l41-dsp1-spk-diag.bin
firmware/cs35l41-dsp1-spk-diag.wmfw
firmware/cs35l41-dsp1-spk-prot.bin
firmware/cs35l41-dsp1-spk-prot.wmfw
firmware/fast_switch1.txt
firmware/fast_switch2.txt
firmware/fast_switch3.txt
firmware/fast_switch4.txt
lib/android.hardware.audio.common-V3-ndk.so
lib/android.hardware.audio.common-util.so
lib/android.hardware.bluetooth.audio-V4-ndk.so
lib/android.hardware.bluetooth.audio-impl.so
lib/android.hardware.common-V2-ndk.so
lib/android.hardware.common.fmq-V1-ndk.so
lib/android.hardware.graphics.common-V5-ndk.so
lib/android.media.audio.common.types-V3-ndk.so
lib/android.system.suspend-V1-ndk.so
lib/arm.graphics-V1-ndk.so
lib/hw/[email protected]
lib/hw/[email protected]
lib/hw/[email protected]
lib/hw/[email protected]
lib/hw/[email protected]
lib/hw/audio.bluetooth.default.so
lib/hw/audio.primary.default.so
lib/hw/audio.r_submix.default.so
lib/hw/audio.usb.default.so
lib/hw/audio.usbv2.default.so
lib/hw/gralloc.default.so
lib/hw/local_time.default.so
lib/hw/power.default.so
lib/hw/vibrator.default.so
lib/libalsautils.so
lib/libalsautilsv2.so
lib/libaudioutils.so
lib/libbase.so
lib/libbluetooth_audio_session.so
lib/libbluetooth_audio_session_aidl.so
lib/libc++.so
lib/libclang_rt.ubsan_standalone-arm-android.so
lib/libcrypto.so
lib/libcutils.so
lib/libdmabufheap.so
lib/libeffects.so
lib/libeffectsconfig.so
lib/libflatbuffers-cpp.so
lib/libfmq.so
lib/libgralloctypes.so
lib/libhardware.so
lib/libhardware_legacy.so
lib/libhidlbase.so
lib/libhidlmemory.so
lib/libhwjpeg.so
lib/libion_google.so
lib/libmedia_helper.so
lib/libmediautils_vendor.so
lib/libmemunreachable.so
lib/libnbaio_mono.so
lib/libprotobuf-cpp-full-21.12.so
lib/libprotobuf-cpp-lite-21.12.so
lib/libreference-ril.so
lib/libril.so
lib/librilutils.so
lib/libspeexresampler.so
lib/libstagefright_foundation.so
lib/libtinyalsa.so
lib/libtinyalsav2.so
lib/libtinyxml2.so
lib/libutils.so
lib/libvibratorutils.so
lib/libwpa_client.so
lib/libxml2.so
lib/libz.so
lib/mediacas/libclearkeycasplugin.so
lib/mediadrm/libdrmclearkeyplugin.so
lib/modules/acpm_flexpmu_dbg.ko
lib/modules/acpm_mbox_test.ko
lib/modules/aoc_alsa_dev.ko
lib/modules/aoc_alsa_dev_util.ko
lib/modules/aoc_channel_dev.ko
lib/modules/aoc_char_dev.ko
lib/modules/aoc_control_dev.ko
lib/modules/aoc_core.ko
lib/modules/aoc_usb_driver.ko
lib/modules/aoc_uwb_platform_drv.ko
lib/modules/aoc_uwb_service_dev.ko
lib/modules/arm-memlat-mon.ko
lib/modules/arm_dsu_pmu.ko
lib/modules/at24.ko
lib/modules/audiometrics.ko
lib/modules/bc_max77759.ko
lib/modules/bcm47765.ko
lib/modules/bcm_dbg.ko
lib/modules/bigocean.ko
lib/modules/boot_device_spi.ko
lib/modules/btpower.ko
lib/modules/bts.ko
lib/modules/cl_dsp-core.ko
lib/modules/clk_exynos.ko
lib/modules/cmupmucal.ko
lib/modules/cnss2.ko
lib/modules/cnss_nl.ko
lib/modules/cnss_plat_ipc_qmi_svc.ko
lib/modules/cnss_prealloc.ko
lib/modules/cnss_utils.ko
lib/modules/coresight-etm4x.ko
lib/modules/coresight-funnel.ko
lib/modules/coresight-replicator.ko
lib/modules/coresight-tmc.ko
lib/modules/coresight.ko
lib/modules/cp_thermal_zone.ko
lib/modules/cpif.ko
lib/modules/cpif_page.ko
lib/modules/crc-t10dif.ko
lib/modules/crct10dif_common.ko
lib/modules/crct10dif_generic.ko
lib/modules/cs40l26-core.ko
lib/modules/cs40l26-i2c.ko
lib/modules/dbgcore-dump.ko
lib/modules/debug-reboot.ko
lib/modules/debug-snapshot-debug-kinfo.ko
lib/modules/drv2624.ko
lib/modules/dss.ko
lib/modules/dw3000.ko
lib/modules/dwc3-exynos-usb.ko
lib/modules/ect_parser.ko
lib/modules/eh.ko
lib/modules/ehld.ko
lib/modules/etm2dram.ko
lib/modules/exynos-acme.ko
lib/modules/exynos-adv-tracer-s2d.ko
lib/modules/exynos-adv-tracer.ko
lib/modules/exynos-bcm_dbg-dump.ko
lib/modules/exynos-coresight-etm.ko
lib/modules/exynos-coresight.ko
lib/modules/exynos-cpuhp.ko
lib/modules/exynos-cpupm.ko
lib/modules/exynos-debug-test.ko
lib/modules/exynos-dm.ko
lib/modules/exynos-drm.ko
lib/modules/exynos-ecc-handler.ko
lib/modules/exynos-pcie-iommu.ko
lib/modules/exynos-pd-dbg.ko
lib/modules/exynos-pd.ko
lib/modules/exynos-pd_el3.ko
lib/modules/exynos-pd_hsi0.ko
lib/modules/exynos-pm.ko
lib/modules/exynos-pmu-if.ko
lib/modules/exynos-reboot.ko
lib/modules/exynos-seclog.ko
lib/modules/exynos_devfreq.ko
lib/modules/exynos_mct.ko
lib/modules/exynos_mfc.ko
lib/modules/exynos_pm_qos.ko
lib/modules/exynos_tty.ko
lib/modules/focal_touch.ko
lib/modules/g2d.ko
lib/modules/goodix_brl_touch.ko
lib/modules/goodixfp.ko
lib/modules/goog_touch_interface.ko
lib/modules/google-battery.ko
lib/modules/google-bms.ko
lib/modules/google-charger.ko
lib/modules/google-cpm.ko
lib/modules/google_bcl.ko
lib/modules/google_dock.ko
lib/modules/google_dual_batt_gauge.ko
lib/modules/google_wlan_mac.ko
lib/modules/governor_memlat.ko
lib/modules/gpu_cooling.ko
lib/modules/gs-chipid.ko
lib/modules/gs_acpm.ko
lib/modules/gs_thermal.ko
lib/modules/gsa.ko
lib/modules/gsa_gsc.ko
lib/modules/gvotable.ko
lib/modules/gxp.ko
lib/modules/hardlockup-debug.ko
lib/modules/hardlockup-watchdog.ko
lib/modules/heatmap.ko
lib/modules/i2c-acpm.ko
lib/modules/i2c-dev.ko
lib/modules/i2c-exynos5.ko
lib/modules/itmon.ko
lib/modules/janeiro.ko
lib/modules/kernel-top.ko
lib/modules/keycombo.ko
lib/modules/keydebug.ko
lib/modules/logbuffer.ko
lib/modules/lwis.ko
lib/modules/lzo-rle.ko
lib/modules/lzo.ko
lib/modules/mailbox-wc.ko
lib/modules/mali_kbase.ko
lib/modules/mali_kutf.ko
lib/modules/mali_kutf_clk_rate_trace_test_portal.ko
lib/modules/mali_pixel.ko
lib/modules/max1720x-battery.ko
lib/modules/max20339.ko
lib/modules/max77729-pmic.ko
lib/modules/max77729_charger.ko
lib/modules/max77729_uic.ko
lib/modules/max77759_charger.ko
lib/modules/max77759_contaminant.ko
lib/modules/max77759_helper.ko
lib/modules/mcps802154.ko
lib/modules/mcps802154_region_fira.ko
lib/modules/mcps802154_region_nfcc_coex.ko
lib/modules/mcps802154_region_pctt.ko
lib/modules/memlat-devfreq.ko
lib/modules/mhi.ko
lib/modules/modules.alias
lib/modules/modules.blocklist
lib/modules/modules.dep
lib/modules/modules.load
lib/modules/modules.softdep
lib/modules/null_blk.ko
lib/modules/odpm.ko
lib/modules/overheat_mitigation.ko
lib/modules/p9221.ko
lib/modules/panel-boe-nt37290.ko
lib/modules/panel-samsung-drv.ko
lib/modules/panel-samsung-emul.ko
lib/modules/panel-samsung-s6e3fc3-l10.ko
lib/modules/panel-samsung-s6e3fc3-p10.ko
lib/modules/panel-samsung-s6e3fc3.ko
lib/modules/panel-samsung-s6e3fc5.ko
lib/modules/panel-samsung-s6e3hc2.ko
lib/modules/panel-samsung-s6e3hc3-c10.ko
lib/modules/panel-samsung-s6e3hc3.ko
lib/modules/panel-samsung-s6e3hc4.ko
lib/modules/panel-samsung-sofef01.ko
lib/modules/pca9468.ko
lib/modules/pcie-exynos-core.ko
lib/modules/pcie-exynos-gs201-rc-cal.ko
lib/modules/phy-exynos-mipi-dsim.ko
lib/modules/phy-exynos-mipi.ko
lib/modules/phy-exynos-usbdrd-super.ko
lib/modules/pinctrl-samsung-core.ko
lib/modules/pinctrl-slg51000.ko
lib/modules/pinctrl-slg51002.ko
lib/modules/pixel-boot-metrics.ko
lib/modules/pixel-debug-test.ko
lib/modules/pixel-suspend-diag.ko
lib/modules/pixel_em.ko
lib/modules/pixel_metrics.ko
lib/modules/pixel_stat_mm.ko
lib/modules/pixel_stat_sysfs.ko
lib/modules/pkvm-s2mpu.ko
lib/modules/pl330.ko
lib/modules/pmic_class.ko
lib/modules/power_stats.ko
lib/modules/pps-gpio.ko
lib/modules/pps_core.ko
lib/modules/qmi_helpers.ko
lib/modules/qrtr-mhi.ko
lib/modules/qrtr.ko
lib/modules/rtc-s2mpg12.ko
lib/modules/s2mpg12-key.ko
lib/modules/s2mpg12-mfd.ko
lib/modules/s2mpg12-powermeter.ko
lib/modules/s2mpg12-regulator.ko
lib/modules/s2mpg13-mfd.ko
lib/modules/s2mpg13-powermeter.ko
lib/modules/s2mpg13-regulator.ko
lib/modules/s2mpg13_spmic_thermal.ko
lib/modules/s2mpg1x-gpio-gs201.ko
lib/modules/s3c2410_wdt.ko
lib/modules/samsung-dma.ko
lib/modules/samsung-iommu-group.ko
lib/modules/samsung-secure-iova.ko
lib/modules/samsung_dma_heap.ko
lib/modules/samsung_iommu.ko
lib/modules/sbb-mux.ko
lib/modules/sched_tp.ko
lib/modules/scsi_debug.ko
lib/modules/sg.ko
lib/modules/shm_ipc.ko
lib/modules/sjtag-driver.ko
lib/modules/slc_acpm.ko
lib/modules/slc_dummy.ko
lib/modules/slc_pmon.ko
lib/modules/slc_pt.ko
lib/modules/slg51000-core.ko
lib/modules/slg51000-regulator.ko
lib/modules/slg51002-core.ko
lib/modules/slg51002-regulator.ko
lib/modules/smfc.ko
lib/modules/snd-soc-cs35l41-i2c.ko
lib/modules/snd-soc-cs35l41-spi.ko
lib/modules/snd-soc-cs35l41.ko
lib/modules/snd-soc-cs35l45-i2c.ko
lib/modules/snd-soc-cs35l45-spi.ko
lib/modules/snd-soc-cs35l45.ko
lib/modules/snd-soc-cs40l26.ko
lib/modules/snd-soc-wm-adsp.ko
lib/modules/softdog.ko
lib/modules/spi-s3c64xx.ko
lib/modules/spidev.ko
lib/modules/sscoredump.ko
lib/modules/st21nfc.ko
lib/modules/st33spi.ko
lib/modules/st54spi.ko
lib/modules/stmvl53l1.ko
lib/modules/sysrq-hook.ko
lib/modules/systrace.ko
lib/modules/tcpci_max77759.ko
lib/modules/touch_bus_negotiator.ko
lib/modules/touch_offload.ko
lib/modules/trusty-core.ko
lib/modules/trusty-ipc.ko
lib/modules/trusty-log.ko
lib/modules/trusty-test.ko
lib/modules/trusty-virtio.ko
lib/modules/ufs-exynos-core.ko
lib/modules/ufs-pixel-fips140.ko
lib/modules/usb_f_dm.ko
lib/modules/usb_f_dm1.ko
lib/modules/usb_f_etr_miu.ko
lib/modules/usb_f_rndis.ko
lib/modules/usb_psy.ko
lib/modules/usbc_cooling_dev.ko
lib/modules/vh_cgroup.ko
lib/modules/vh_fs.ko
lib/modules/vh_mm.ko
lib/modules/vh_preemptirq_long.ko
lib/modules/vh_sched.ko
lib/modules/vh_thermal.ko
lib/modules/wlan.ko
lib/modules/wlan_firmware_service.ko
lib/modules/xhci-exynos.ko
lib/modules/zcomp_cpu.ko
lib/modules/zcomp_eh.ko
lib/modules/zram.ko
lib/modules/zsmalloc.ko
lib/server_configurable_flags.so
lib/soundfx/libaudiopreprocessing.so
lib/soundfx/libbundlewrapper.so
lib/soundfx/libdownmix.so
lib/soundfx/libdynproc.so
lib/soundfx/libeffectproxy.so
lib/soundfx/libhapticgenerator.so
lib/soundfx/libldnhncr.so
lib/soundfx/libreverbwrapper.so
lib/soundfx/libvisualizer.so
lib64/PixelVibratorFlagsL26.so
lib64/PixelVibratorStats.so
lib64/android.frameworks.sensorservice-V1-ndk.so
lib64/android.frameworks.stats-V1-ndk.so
lib64/android.frameworks.stats-V2-ndk.so
lib64/android.hardware.audio.common-V3-ndk.so
lib64/android.hardware.audio.common-util.so
lib64/[email protected]
lib64/[email protected]
lib64/[email protected]
lib64/[email protected]
lib64/[email protected]
lib64/[email protected]
lib64/[email protected]
lib64/[email protected]
lib64/[email protected]
lib64/[email protected]
lib64/[email protected]
lib64/[email protected]
lib64/android.hardware.bluetooth.audio-V4-ndk.so
lib64/android.hardware.bluetooth.audio-impl.so
lib64/[email protected]
lib64/[email protected]
lib64/android.hardware.boot-V1-ndk.so
lib64/[email protected]
lib64/[email protected]
lib64/[email protected]
lib64/[email protected]
lib64/[email protected]
lib64/[email protected]
lib64/android.hardware.common-V2-ndk.so
lib64/android.hardware.common.fmq-V1-ndk.so
lib64/android.hardware.drm-V1-ndk.so
lib64/android.hardware.dumpstate-V1-ndk.so
lib64/android.hardware.gatekeeper-V1-ndk.so
lib64/android.hardware.graphics.allocator-V1-ndk.so
lib64/android.hardware.graphics.allocator-V2-ndk.so
lib64/[email protected]
lib64/[email protected]
lib64/[email protected]
lib64/android.hardware.graphics.common-V3-ndk.so
lib64/android.hardware.graphics.common-V5-ndk.so
lib64/[email protected]
lib64/[email protected]
lib64/[email protected]
lib64/android.hardware.graphics.composer3-V3-ndk.so
lib64/[email protected]
lib64/[email protected]
lib64/[email protected]
lib64/[email protected]
lib64/[email protected]
lib64/[email protected]
lib64/[email protected]
lib64/[email protected]
lib64/[email protected]
lib64/[email protected]
lib64/android.hardware.health-V3-ndk.so
lib64/android.hardware.health.storage-V1-ndk.so
lib64/android.hardware.memtrack-V1-ndk.so
lib64/android.hardware.nfc-V1-ndk.so
lib64/android.hardware.power-V1-ndk.so
lib64/android.hardware.power-V2-ndk.so
lib64/android.hardware.power-V5-ndk.so
lib64/android.hardware.power.stats-V2-ndk.so
lib64/android.hardware.power.stats-impl.gs-common.so
lib64/android.hardware.power.stats-impl.gs201.so
lib64/android.hardware.power.stats-impl.pixel.so
lib64/[email protected]
lib64/[email protected]
lib64/android.hardware.secure_element.thales.libse.so
lib64/[email protected]
lib64/[email protected]
lib64/[email protected]
lib64/android.hardware.security.keymint-V1-ndk.so
lib64/android.hardware.security.keymint-V3-ndk.so
lib64/android.hardware.security.rkp-V3-ndk.so
lib64/android.hardware.security.secureclock-V1-ndk.so
lib64/android.hardware.security.sharedsecret-V1-ndk.so
lib64/android.hardware.sensors-V2-ndk.so
lib64/[email protected]
lib64/[email protected]
lib64/[email protected]
lib64/[email protected]
lib64/[email protected]
lib64/[email protected]
lib64/[email protected]
lib64/[email protected]
lib64/[email protected]
lib64/android.hardware.thermal-V1-ndk.so
lib64/android.hardware.thermal-V2-ndk.so
lib64/[email protected]
lib64/[email protected]
lib64/android.hardware.usb-V3-ndk.so
lib64/android.hardware.usb.gadget-V1-ndk.so
lib64/[email protected]
lib64/android.hardware.vibrator-V2-ndk.so
lib64/android.hardware.wifi-V2-ndk.so
lib64/android.hardware.wifi.common-V1-ndk.so
lib64/android.hardware.wifi.hostapd-V2-ndk.so
lib64/android.hardware.wifi.supplicant-V3-ndk.so
lib64/[email protected]
lib64/[email protected]
lib64/[email protected]
lib64/[email protected]
lib64/android.media.audio.common.types-V3-ndk.so
lib64/android.system.keystore2-V1-ndk.so
lib64/android.system.suspend-V1-ndk.so
lib64/arm.graphics-V1-ndk.so
lib64/com.google.hardware.pixel.display-V10-ndk.so
lib64/hw/[email protected]
lib64/hw/[email protected]
lib64/hw/android.hardware.graphics.allocator-aidl-impl.so
lib64/hw/[email protected]
lib64/hw/[email protected]
lib64/hw/android.hardware.vibrator-impl.cs40l26.so
lib64/hw/[email protected]
lib64/hw/audio.bluetooth.default.so
lib64/hw/audio.primary.default.so
lib64/hw/audio.r_submix.default.so
lib64/hw/audio.usb.default.so
lib64/hw/audio.usbv2.default.so
lib64/hw/gralloc.default.so