-
Notifications
You must be signed in to change notification settings - Fork 1
/
cancunf-vendor.mk
2245 lines (2241 loc) · 145 KB
/
cancunf-vendor.mk
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
# Automatically generated file. DO NOT MODIFY
#
# This file is generated by device/motorola/cancunf/setup-makefiles.sh
PRODUCT_SOONG_NAMESPACES += \
vendor/motorola/cancunf
PRODUCT_COPY_FILES += \
vendor/motorola/cancunf/proprietary/etc/permissions/moto-telephony.xml:$(TARGET_COPY_OUT_SYSTEM)/etc/permissions/moto-telephony.xml \
vendor/motorola/cancunf/proprietary/product/etc/permissions/privapp-permissions-com.google.android.euicc.xml:$(TARGET_COPY_OUT_PRODUCT)/etc/permissions/privapp-permissions-com.google.android.euicc.xml \
vendor/motorola/cancunf/proprietary/system_ext/etc/init/init.vtservice.rc:$(TARGET_COPY_OUT_SYSTEM_EXT)/etc/init/init.vtservice.rc \
vendor/motorola/cancunf/proprietary/system_ext/etc/permissions/com.android.hotwordenrollment.common.util.xml:$(TARGET_COPY_OUT_SYSTEM_EXT)/etc/permissions/com.android.hotwordenrollment.common.util.xml \
vendor/motorola/cancunf/proprietary/vendor/app/mcRegistry/020f0000000000000000000000000000.drbin:$(TARGET_COPY_OUT_VENDOR)/app/mcRegistry/020f0000000000000000000000000000.drbin \
vendor/motorola/cancunf/proprietary/vendor/app/mcRegistry/020f0000000000000000000000000000.tlbin:$(TARGET_COPY_OUT_VENDOR)/app/mcRegistry/020f0000000000000000000000000000.tlbin \
vendor/motorola/cancunf/proprietary/vendor/app/mcRegistry/031c0000000000000000000000000000.drbin:$(TARGET_COPY_OUT_VENDOR)/app/mcRegistry/031c0000000000000000000000000000.drbin \
vendor/motorola/cancunf/proprietary/vendor/app/mcRegistry/031c0000000000000000000000000000.tlbin:$(TARGET_COPY_OUT_VENDOR)/app/mcRegistry/031c0000000000000000000000000000.tlbin \
vendor/motorola/cancunf/proprietary/vendor/app/mcRegistry/04010000000000000000000000000000.tlbin:$(TARGET_COPY_OUT_VENDOR)/app/mcRegistry/04010000000000000000000000000000.tlbin \
vendor/motorola/cancunf/proprietary/vendor/app/mcRegistry/05060000000000000000000000000000.tabin:$(TARGET_COPY_OUT_VENDOR)/app/mcRegistry/05060000000000000000000000000000.tabin \
vendor/motorola/cancunf/proprietary/vendor/app/mcRegistry/05070000000000000000000000000000.drbin:$(TARGET_COPY_OUT_VENDOR)/app/mcRegistry/05070000000000000000000000000000.drbin \
vendor/motorola/cancunf/proprietary/vendor/app/mcRegistry/05070000000000000000000000000000.tlbin:$(TARGET_COPY_OUT_VENDOR)/app/mcRegistry/05070000000000000000000000000000.tlbin \
vendor/motorola/cancunf/proprietary/vendor/app/mcRegistry/05120000000000000000000000000001.drbin:$(TARGET_COPY_OUT_VENDOR)/app/mcRegistry/05120000000000000000000000000001.drbin \
vendor/motorola/cancunf/proprietary/vendor/app/mcRegistry/05120000000000000000000000000001.tlbin:$(TARGET_COPY_OUT_VENDOR)/app/mcRegistry/05120000000000000000000000000001.tlbin \
vendor/motorola/cancunf/proprietary/vendor/app/mcRegistry/06090000000000000000000000000000.drbin:$(TARGET_COPY_OUT_VENDOR)/app/mcRegistry/06090000000000000000000000000000.drbin \
vendor/motorola/cancunf/proprietary/vendor/app/mcRegistry/06090000000000000000000000000000.tlbin:$(TARGET_COPY_OUT_VENDOR)/app/mcRegistry/06090000000000000000000000000000.tlbin \
vendor/motorola/cancunf/proprietary/vendor/app/mcRegistry/07010000000000000000000000000000.tlbin:$(TARGET_COPY_OUT_VENDOR)/app/mcRegistry/07010000000000000000000000000000.tlbin \
vendor/motorola/cancunf/proprietary/vendor/app/mcRegistry/0706000000000000000000000000004d.tlbin:$(TARGET_COPY_OUT_VENDOR)/app/mcRegistry/0706000000000000000000000000004d.tlbin \
vendor/motorola/cancunf/proprietary/vendor/app/mcRegistry/07061000000000000000000000000000.tlbin:$(TARGET_COPY_OUT_VENDOR)/app/mcRegistry/07061000000000000000000000000000.tlbin \
vendor/motorola/cancunf/proprietary/vendor/app/mcRegistry/07150000000000000000000000000000.drbin:$(TARGET_COPY_OUT_VENDOR)/app/mcRegistry/07150000000000000000000000000000.drbin \
vendor/motorola/cancunf/proprietary/vendor/app/mcRegistry/07150000000000000000000000000000.tlbin:$(TARGET_COPY_OUT_VENDOR)/app/mcRegistry/07150000000000000000000000000000.tlbin \
vendor/motorola/cancunf/proprietary/vendor/app/mcRegistry/07170000000000000000000000000000.drbin:$(TARGET_COPY_OUT_VENDOR)/app/mcRegistry/07170000000000000000000000000000.drbin \
vendor/motorola/cancunf/proprietary/vendor/app/mcRegistry/07170000000000000000000000000000.tlbin:$(TARGET_COPY_OUT_VENDOR)/app/mcRegistry/07170000000000000000000000000000.tlbin \
vendor/motorola/cancunf/proprietary/vendor/app/mcRegistry/08030000000000000000000000000000.tabin:$(TARGET_COPY_OUT_VENDOR)/app/mcRegistry/08030000000000000000000000000000.tabin \
vendor/motorola/cancunf/proprietary/vendor/app/mcRegistry/08040000000000000000000000003419.tabin:$(TARGET_COPY_OUT_VENDOR)/app/mcRegistry/08040000000000000000000000003419.tabin \
vendor/motorola/cancunf/proprietary/vendor/app/mcRegistry/08050000000000000000000000003419.drbin:$(TARGET_COPY_OUT_VENDOR)/app/mcRegistry/08050000000000000000000000003419.drbin \
vendor/motorola/cancunf/proprietary/vendor/app/mcRegistry/08050000000000000000000000003419.tlbin:$(TARGET_COPY_OUT_VENDOR)/app/mcRegistry/08050000000000000000000000003419.tlbin \
vendor/motorola/cancunf/proprietary/vendor/app/mcRegistry/08110000000000000000000000000000.tabin:$(TARGET_COPY_OUT_VENDOR)/app/mcRegistry/08110000000000000000000000000000.tabin \
vendor/motorola/cancunf/proprietary/vendor/app/mcRegistry/40188311faf343488db888ad39496f9a.drbin:$(TARGET_COPY_OUT_VENDOR)/app/mcRegistry/40188311faf343488db888ad39496f9a.drbin \
vendor/motorola/cancunf/proprietary/vendor/app/mcRegistry/40188311faf343488db888ad39496f9a.tlbin:$(TARGET_COPY_OUT_VENDOR)/app/mcRegistry/40188311faf343488db888ad39496f9a.tlbin \
vendor/motorola/cancunf/proprietary/vendor/app/mcRegistry/5020170115e016302017012521300000.drbin:$(TARGET_COPY_OUT_VENDOR)/app/mcRegistry/5020170115e016302017012521300000.drbin \
vendor/motorola/cancunf/proprietary/vendor/app/mcRegistry/5020170115e016302017012521300000.tlbin:$(TARGET_COPY_OUT_VENDOR)/app/mcRegistry/5020170115e016302017012521300000.tlbin \
vendor/motorola/cancunf/proprietary/vendor/app/mcRegistry/85fbf4ccc2fd4a32922a4e90c56179de.tabin:$(TARGET_COPY_OUT_VENDOR)/app/mcRegistry/85fbf4ccc2fd4a32922a4e90c56179de.tabin \
vendor/motorola/cancunf/proprietary/vendor/app/mcRegistry/abcd270ea5c44c58bcd3384a2fa2539e.tabin:$(TARGET_COPY_OUT_VENDOR)/app/mcRegistry/abcd270ea5c44c58bcd3384a2fa2539e.tabin \
vendor/motorola/cancunf/proprietary/vendor/app/mcRegistry/attpre_6716af0c135559728ae9e9754da47ccd.tabin:$(TARGET_COPY_OUT_VENDOR)/app/mcRegistry/attpre_6716af0c135559728ae9e9754da47ccd.tabin \
vendor/motorola/cancunf/proprietary/vendor/app/mcRegistry/e97c270ea5c44c58bcd3384a2fa2539e.tabin:$(TARGET_COPY_OUT_VENDOR)/app/mcRegistry/e97c270ea5c44c58bcd3384a2fa2539e.tabin \
vendor/motorola/cancunf/proprietary/vendor/etc/AW_DSP.bin:$(TARGET_COPY_OUT_VENDOR)/etc/AW_DSP.bin \
vendor/motorola/cancunf/proprietary/vendor/etc/AW_SINWAVE_DSP.bin:$(TARGET_COPY_OUT_VENDOR)/etc/AW_SINWAVE_DSP.bin \
vendor/motorola/cancunf/proprietary/vendor/etc/AbnormalDisplayLog_dynamic.xml:$(TARGET_COPY_OUT_VENDOR)/etc/AbnormalDisplayLog_dynamic.xml \
vendor/motorola/cancunf/proprietary/vendor/etc/AudioLog_dynamic.xml:$(TARGET_COPY_OUT_VENDOR)/etc/AudioLog_dynamic.xml \
vendor/motorola/cancunf/proprietary/vendor/etc/MNL_Config.xml:$(TARGET_COPY_OUT_VENDOR)/etc/MNL_Config.xml \
vendor/motorola/cancunf/proprietary/vendor/etc/SwadCalib.bin:$(TARGET_COPY_OUT_VENDOR)/etc/SwadCalib.bin \
vendor/motorola/cancunf/proprietary/vendor/etc/SwadParamList.txt:$(TARGET_COPY_OUT_VENDOR)/etc/SwadParamList.txt \
vendor/motorola/cancunf/proprietary/vendor/etc/VideoLog_dynamic.xml:$(TARGET_COPY_OUT_VENDOR)/etc/VideoLog_dynamic.xml \
vendor/motorola/cancunf/proprietary/vendor/etc/ap_gain.bin:$(TARGET_COPY_OUT_VENDOR)/etc/ap_gain.bin \
vendor/motorola/cancunf/proprietary/vendor/etc/ap_gain_mmul.bin:$(TARGET_COPY_OUT_VENDOR)/etc/ap_gain_mmul.bin \
vendor/motorola/cancunf/proprietary/vendor/etc/apdb/APDB_MT6855___W2401:$(TARGET_COPY_OUT_VENDOR)/etc/apdb/APDB_MT6855___W2401 \
vendor/motorola/cancunf/proprietary/vendor/etc/apdb/APDB_MT6855___W2401_ENUM:$(TARGET_COPY_OUT_VENDOR)/etc/apdb/APDB_MT6855___W2401_ENUM \
vendor/motorola/cancunf/proprietary/vendor/etc/aualgo/aualgo_comp_azpp.conf:$(TARGET_COPY_OUT_VENDOR)/etc/aualgo/aualgo_comp_azpp.conf \
vendor/motorola/cancunf/proprietary/vendor/etc/aualgo/aualgo_sst.conf:$(TARGET_COPY_OUT_VENDOR)/etc/aualgo/aualgo_sst.conf \
vendor/motorola/cancunf/proprietary/vendor/etc/audio_param/AudioParamOptions_mgvi.xml:$(TARGET_COPY_OUT_VENDOR)/etc/audio_param/AudioParamOptions_mgvi.xml \
vendor/motorola/cancunf/proprietary/vendor/etc/audio_param/AudioParamOptions_vext.xml:$(TARGET_COPY_OUT_VENDOR)/etc/audio_param/AudioParamOptions_vext.xml \
vendor/motorola/cancunf/proprietary/vendor/etc/audio_param/BtInfo_AudioParam.xml:$(TARGET_COPY_OUT_VENDOR)/etc/audio_param/BtInfo_AudioParam.xml \
vendor/motorola/cancunf/proprietary/vendor/etc/audio_param/BtInfo_ParamUnitDesc.xml:$(TARGET_COPY_OUT_VENDOR)/etc/audio_param/BtInfo_ParamUnitDesc.xml \
vendor/motorola/cancunf/proprietary/vendor/etc/audio_param/CRSVolUI_AudioParam.xml:$(TARGET_COPY_OUT_VENDOR)/etc/audio_param/CRSVolUI_AudioParam.xml \
vendor/motorola/cancunf/proprietary/vendor/etc/audio_param/CRSVolUI_ParamUnitDesc.xml:$(TARGET_COPY_OUT_VENDOR)/etc/audio_param/CRSVolUI_ParamUnitDesc.xml \
vendor/motorola/cancunf/proprietary/vendor/etc/audio_param/CRSVol_AudioParam.xml:$(TARGET_COPY_OUT_VENDOR)/etc/audio_param/CRSVol_AudioParam.xml \
vendor/motorola/cancunf/proprietary/vendor/etc/audio_param/CRSVol_ParamUnitDesc.xml:$(TARGET_COPY_OUT_VENDOR)/etc/audio_param/CRSVol_ParamUnitDesc.xml \
vendor/motorola/cancunf/proprietary/vendor/etc/audio_param/HpImpedance_AudioParam.xml:$(TARGET_COPY_OUT_VENDOR)/etc/audio_param/HpImpedance_AudioParam.xml \
vendor/motorola/cancunf/proprietary/vendor/etc/audio_param/HpImpedance_ParamUnitDesc.xml:$(TARGET_COPY_OUT_VENDOR)/etc/audio_param/HpImpedance_ParamUnitDesc.xml \
vendor/motorola/cancunf/proprietary/vendor/etc/audio_param/MicInfo_AudioParam.xml:$(TARGET_COPY_OUT_VENDOR)/etc/audio_param/MicInfo_AudioParam.xml \
vendor/motorola/cancunf/proprietary/vendor/etc/audio_param/MicInfo_ParamUnitDesc.xml:$(TARGET_COPY_OUT_VENDOR)/etc/audio_param/MicInfo_ParamUnitDesc.xml \
vendor/motorola/cancunf/proprietary/vendor/etc/audio_param/PlaybackACF_AudioParam.xml:$(TARGET_COPY_OUT_VENDOR)/etc/audio_param/PlaybackACF_AudioParam.xml \
vendor/motorola/cancunf/proprietary/vendor/etc/audio_param/PlaybackACF_ParamUnitDesc.xml:$(TARGET_COPY_OUT_VENDOR)/etc/audio_param/PlaybackACF_ParamUnitDesc.xml \
vendor/motorola/cancunf/proprietary/vendor/etc/audio_param/PlaybackDRC_AudioParam.xml:$(TARGET_COPY_OUT_VENDOR)/etc/audio_param/PlaybackDRC_AudioParam.xml \
vendor/motorola/cancunf/proprietary/vendor/etc/audio_param/PlaybackDRC_ParamUnitDesc.xml:$(TARGET_COPY_OUT_VENDOR)/etc/audio_param/PlaybackDRC_ParamUnitDesc.xml \
vendor/motorola/cancunf/proprietary/vendor/etc/audio_param/PlaybackHCF_AudioParam.xml:$(TARGET_COPY_OUT_VENDOR)/etc/audio_param/PlaybackHCF_AudioParam.xml \
vendor/motorola/cancunf/proprietary/vendor/etc/audio_param/PlaybackHCF_ParamUnitDesc.xml:$(TARGET_COPY_OUT_VENDOR)/etc/audio_param/PlaybackHCF_ParamUnitDesc.xml \
vendor/motorola/cancunf/proprietary/vendor/etc/audio_param/PlaybackVolAna_AudioParam.xml:$(TARGET_COPY_OUT_VENDOR)/etc/audio_param/PlaybackVolAna_AudioParam.xml \
vendor/motorola/cancunf/proprietary/vendor/etc/audio_param/PlaybackVolAna_ParamUnitDesc.xml:$(TARGET_COPY_OUT_VENDOR)/etc/audio_param/PlaybackVolAna_ParamUnitDesc.xml \
vendor/motorola/cancunf/proprietary/vendor/etc/audio_param/PlaybackVolDigi_AudioParam.xml:$(TARGET_COPY_OUT_VENDOR)/etc/audio_param/PlaybackVolDigi_AudioParam.xml \
vendor/motorola/cancunf/proprietary/vendor/etc/audio_param/PlaybackVolDigi_ParamUnitDesc.xml:$(TARGET_COPY_OUT_VENDOR)/etc/audio_param/PlaybackVolDigi_ParamUnitDesc.xml \
vendor/motorola/cancunf/proprietary/vendor/etc/audio_param/PlaybackVolUI_AudioParam.xml:$(TARGET_COPY_OUT_VENDOR)/etc/audio_param/PlaybackVolUI_AudioParam.xml \
vendor/motorola/cancunf/proprietary/vendor/etc/audio_param/PlaybackVolUI_ParamUnitDesc.xml:$(TARGET_COPY_OUT_VENDOR)/etc/audio_param/PlaybackVolUI_ParamUnitDesc.xml \
vendor/motorola/cancunf/proprietary/vendor/etc/audio_param/Playback_AudioParam.xml:$(TARGET_COPY_OUT_VENDOR)/etc/audio_param/Playback_AudioParam.xml \
vendor/motorola/cancunf/proprietary/vendor/etc/audio_param/Playback_ParamTreeView.xml:$(TARGET_COPY_OUT_VENDOR)/etc/audio_param/Playback_ParamTreeView.xml \
vendor/motorola/cancunf/proprietary/vendor/etc/audio_param/Playback_ParamUnitDesc.xml:$(TARGET_COPY_OUT_VENDOR)/etc/audio_param/Playback_ParamUnitDesc.xml \
vendor/motorola/cancunf/proprietary/vendor/etc/audio_param/RecordDMNR_AudioParam.xml:$(TARGET_COPY_OUT_VENDOR)/etc/audio_param/RecordDMNR_AudioParam.xml \
vendor/motorola/cancunf/proprietary/vendor/etc/audio_param/RecordDMNR_ParamUnitDesc.xml:$(TARGET_COPY_OUT_VENDOR)/etc/audio_param/RecordDMNR_ParamUnitDesc.xml \
vendor/motorola/cancunf/proprietary/vendor/etc/audio_param/RecordFIR_AudioParam.xml:$(TARGET_COPY_OUT_VENDOR)/etc/audio_param/RecordFIR_AudioParam.xml \
vendor/motorola/cancunf/proprietary/vendor/etc/audio_param/RecordFIR_ParamUnitDesc.xml:$(TARGET_COPY_OUT_VENDOR)/etc/audio_param/RecordFIR_ParamUnitDesc.xml \
vendor/motorola/cancunf/proprietary/vendor/etc/audio_param/RecordUI_AudioParam.xml:$(TARGET_COPY_OUT_VENDOR)/etc/audio_param/RecordUI_AudioParam.xml \
vendor/motorola/cancunf/proprietary/vendor/etc/audio_param/RecordUI_ParamUnitDesc.xml:$(TARGET_COPY_OUT_VENDOR)/etc/audio_param/RecordUI_ParamUnitDesc.xml \
vendor/motorola/cancunf/proprietary/vendor/etc/audio_param/RecordVolUI_AudioParam.xml:$(TARGET_COPY_OUT_VENDOR)/etc/audio_param/RecordVolUI_AudioParam.xml \
vendor/motorola/cancunf/proprietary/vendor/etc/audio_param/RecordVolUI_ParamUnitDesc.xml:$(TARGET_COPY_OUT_VENDOR)/etc/audio_param/RecordVolUI_ParamUnitDesc.xml \
vendor/motorola/cancunf/proprietary/vendor/etc/audio_param/RecordVol_AudioParam.xml:$(TARGET_COPY_OUT_VENDOR)/etc/audio_param/RecordVol_AudioParam.xml \
vendor/motorola/cancunf/proprietary/vendor/etc/audio_param/RecordVol_ParamUnitDesc.xml:$(TARGET_COPY_OUT_VENDOR)/etc/audio_param/RecordVol_ParamUnitDesc.xml \
vendor/motorola/cancunf/proprietary/vendor/etc/audio_param/Record_AudioParam.xml:$(TARGET_COPY_OUT_VENDOR)/etc/audio_param/Record_AudioParam.xml \
vendor/motorola/cancunf/proprietary/vendor/etc/audio_param/Record_ParamTreeView.xml:$(TARGET_COPY_OUT_VENDOR)/etc/audio_param/Record_ParamTreeView.xml \
vendor/motorola/cancunf/proprietary/vendor/etc/audio_param/Record_ParamUnitDesc.xml:$(TARGET_COPY_OUT_VENDOR)/etc/audio_param/Record_ParamUnitDesc.xml \
vendor/motorola/cancunf/proprietary/vendor/etc/audio_param/RingbackVolUI_AudioParam.xml:$(TARGET_COPY_OUT_VENDOR)/etc/audio_param/RingbackVolUI_AudioParam.xml \
vendor/motorola/cancunf/proprietary/vendor/etc/audio_param/RingbackVolUI_ParamUnitDesc.xml:$(TARGET_COPY_OUT_VENDOR)/etc/audio_param/RingbackVolUI_ParamUnitDesc.xml \
vendor/motorola/cancunf/proprietary/vendor/etc/audio_param/RingbackVol_AudioParam.xml:$(TARGET_COPY_OUT_VENDOR)/etc/audio_param/RingbackVol_AudioParam.xml \
vendor/motorola/cancunf/proprietary/vendor/etc/audio_param/RingbackVol_ParamUnitDesc.xml:$(TARGET_COPY_OUT_VENDOR)/etc/audio_param/RingbackVol_ParamUnitDesc.xml \
vendor/motorola/cancunf/proprietary/vendor/etc/audio_param/SoundEnhancement_AudioParam.xml:$(TARGET_COPY_OUT_VENDOR)/etc/audio_param/SoundEnhancement_AudioParam.xml \
vendor/motorola/cancunf/proprietary/vendor/etc/audio_param/SoundEnhancement_ParamUnitDesc.xml:$(TARGET_COPY_OUT_VENDOR)/etc/audio_param/SoundEnhancement_ParamUnitDesc.xml \
vendor/motorola/cancunf/proprietary/vendor/etc/audio_param/SpeechAcousticShock_AudioParam.xml:$(TARGET_COPY_OUT_VENDOR)/etc/audio_param/SpeechAcousticShock_AudioParam.xml \
vendor/motorola/cancunf/proprietary/vendor/etc/audio_param/SpeechAcousticShock_ParamUnitDesc.xml:$(TARGET_COPY_OUT_VENDOR)/etc/audio_param/SpeechAcousticShock_ParamUnitDesc.xml \
vendor/motorola/cancunf/proprietary/vendor/etc/audio_param/SpeechDMNR_AudioParam.xml:$(TARGET_COPY_OUT_VENDOR)/etc/audio_param/SpeechDMNR_AudioParam.xml \
vendor/motorola/cancunf/proprietary/vendor/etc/audio_param/SpeechDMNR_ParamUnitDesc.xml:$(TARGET_COPY_OUT_VENDOR)/etc/audio_param/SpeechDMNR_ParamUnitDesc.xml \
vendor/motorola/cancunf/proprietary/vendor/etc/audio_param/SpeechEchoRef_AudioParam.xml:$(TARGET_COPY_OUT_VENDOR)/etc/audio_param/SpeechEchoRef_AudioParam.xml \
vendor/motorola/cancunf/proprietary/vendor/etc/audio_param/SpeechEchoRef_ParamUnitDesc.xml:$(TARGET_COPY_OUT_VENDOR)/etc/audio_param/SpeechEchoRef_ParamUnitDesc.xml \
vendor/motorola/cancunf/proprietary/vendor/etc/audio_param/SpeechGeneral_AudioParam.xml:$(TARGET_COPY_OUT_VENDOR)/etc/audio_param/SpeechGeneral_AudioParam.xml \
vendor/motorola/cancunf/proprietary/vendor/etc/audio_param/SpeechGeneral_ParamUnitDesc.xml:$(TARGET_COPY_OUT_VENDOR)/etc/audio_param/SpeechGeneral_ParamUnitDesc.xml \
vendor/motorola/cancunf/proprietary/vendor/etc/audio_param/SpeechMagiClarity_AudioParam.xml:$(TARGET_COPY_OUT_VENDOR)/etc/audio_param/SpeechMagiClarity_AudioParam.xml \
vendor/motorola/cancunf/proprietary/vendor/etc/audio_param/SpeechMagiClarity_ParamUnitDesc.xml:$(TARGET_COPY_OUT_VENDOR)/etc/audio_param/SpeechMagiClarity_ParamUnitDesc.xml \
vendor/motorola/cancunf/proprietary/vendor/etc/audio_param/SpeechNetwork_AudioParam.xml:$(TARGET_COPY_OUT_VENDOR)/etc/audio_param/SpeechNetwork_AudioParam.xml \
vendor/motorola/cancunf/proprietary/vendor/etc/audio_param/SpeechNetwork_ParamUnitDesc.xml:$(TARGET_COPY_OUT_VENDOR)/etc/audio_param/SpeechNetwork_ParamUnitDesc.xml \
vendor/motorola/cancunf/proprietary/vendor/etc/audio_param/SpeechUI_AudioParam.xml:$(TARGET_COPY_OUT_VENDOR)/etc/audio_param/SpeechUI_AudioParam.xml \
vendor/motorola/cancunf/proprietary/vendor/etc/audio_param/SpeechUI_ParamUnitDesc.xml:$(TARGET_COPY_OUT_VENDOR)/etc/audio_param/SpeechUI_ParamUnitDesc.xml \
vendor/motorola/cancunf/proprietary/vendor/etc/audio_param/SpeechVolUI_AudioParam.xml:$(TARGET_COPY_OUT_VENDOR)/etc/audio_param/SpeechVolUI_AudioParam.xml \
vendor/motorola/cancunf/proprietary/vendor/etc/audio_param/SpeechVolUI_ParamUnitDesc.xml:$(TARGET_COPY_OUT_VENDOR)/etc/audio_param/SpeechVolUI_ParamUnitDesc.xml \
vendor/motorola/cancunf/proprietary/vendor/etc/audio_param/SpeechVol_AudioParam.xml:$(TARGET_COPY_OUT_VENDOR)/etc/audio_param/SpeechVol_AudioParam.xml \
vendor/motorola/cancunf/proprietary/vendor/etc/audio_param/SpeechVol_ParamUnitDesc.xml:$(TARGET_COPY_OUT_VENDOR)/etc/audio_param/SpeechVol_ParamUnitDesc.xml \
vendor/motorola/cancunf/proprietary/vendor/etc/audio_param/Speech_AudioParam.xml:$(TARGET_COPY_OUT_VENDOR)/etc/audio_param/Speech_AudioParam.xml \
vendor/motorola/cancunf/proprietary/vendor/etc/audio_param/Speech_ParamTreeView.xml:$(TARGET_COPY_OUT_VENDOR)/etc/audio_param/Speech_ParamTreeView.xml \
vendor/motorola/cancunf/proprietary/vendor/etc/audio_param/Speech_ParamUnitDesc.xml:$(TARGET_COPY_OUT_VENDOR)/etc/audio_param/Speech_ParamUnitDesc.xml \
vendor/motorola/cancunf/proprietary/vendor/etc/audio_param/USBCall_AudioParam.xml:$(TARGET_COPY_OUT_VENDOR)/etc/audio_param/USBCall_AudioParam.xml \
vendor/motorola/cancunf/proprietary/vendor/etc/audio_param/USBCall_ParamUnitDesc.xml:$(TARGET_COPY_OUT_VENDOR)/etc/audio_param/USBCall_ParamUnitDesc.xml \
vendor/motorola/cancunf/proprietary/vendor/etc/audio_param/USBDevice_AudioParam.xml:$(TARGET_COPY_OUT_VENDOR)/etc/audio_param/USBDevice_AudioParam.xml \
vendor/motorola/cancunf/proprietary/vendor/etc/audio_param/USBDevice_ParamUnitDesc.xml:$(TARGET_COPY_OUT_VENDOR)/etc/audio_param/USBDevice_ParamUnitDesc.xml \
vendor/motorola/cancunf/proprietary/vendor/etc/audio_param/Ultrasound_AudioParam.xml:$(TARGET_COPY_OUT_VENDOR)/etc/audio_param/Ultrasound_AudioParam.xml \
vendor/motorola/cancunf/proprietary/vendor/etc/audio_param/Ultrasound_ParamUnitDesc.xml:$(TARGET_COPY_OUT_VENDOR)/etc/audio_param/Ultrasound_ParamUnitDesc.xml \
vendor/motorola/cancunf/proprietary/vendor/etc/audio_param/UplinkConfiguration_AudioParam.xml:$(TARGET_COPY_OUT_VENDOR)/etc/audio_param/UplinkConfiguration_AudioParam.xml \
vendor/motorola/cancunf/proprietary/vendor/etc/audio_param/UplinkConfiguration_ParamUnitDesc.xml:$(TARGET_COPY_OUT_VENDOR)/etc/audio_param/UplinkConfiguration_ParamUnitDesc.xml \
vendor/motorola/cancunf/proprietary/vendor/etc/audio_param/VoIPDMNR_AudioParam.xml:$(TARGET_COPY_OUT_VENDOR)/etc/audio_param/VoIPDMNR_AudioParam.xml \
vendor/motorola/cancunf/proprietary/vendor/etc/audio_param/VoIPDMNR_ParamUnitDesc.xml:$(TARGET_COPY_OUT_VENDOR)/etc/audio_param/VoIPDMNR_ParamUnitDesc.xml \
vendor/motorola/cancunf/proprietary/vendor/etc/audio_param/VoIPGeneral_AudioParam.xml:$(TARGET_COPY_OUT_VENDOR)/etc/audio_param/VoIPGeneral_AudioParam.xml \
vendor/motorola/cancunf/proprietary/vendor/etc/audio_param/VoIPGeneral_ParamUnitDesc.xml:$(TARGET_COPY_OUT_VENDOR)/etc/audio_param/VoIPGeneral_ParamUnitDesc.xml \
vendor/motorola/cancunf/proprietary/vendor/etc/audio_param/VoIPUI_AudioParam.xml:$(TARGET_COPY_OUT_VENDOR)/etc/audio_param/VoIPUI_AudioParam.xml \
vendor/motorola/cancunf/proprietary/vendor/etc/audio_param/VoIPUI_ParamUnitDesc.xml:$(TARGET_COPY_OUT_VENDOR)/etc/audio_param/VoIPUI_ParamUnitDesc.xml \
vendor/motorola/cancunf/proprietary/vendor/etc/audio_param/VoIPVolUI_AudioParam.xml:$(TARGET_COPY_OUT_VENDOR)/etc/audio_param/VoIPVolUI_AudioParam.xml \
vendor/motorola/cancunf/proprietary/vendor/etc/audio_param/VoIPVolUI_ParamUnitDesc.xml:$(TARGET_COPY_OUT_VENDOR)/etc/audio_param/VoIPVolUI_ParamUnitDesc.xml \
vendor/motorola/cancunf/proprietary/vendor/etc/audio_param/VoIPVol_AudioParam.xml:$(TARGET_COPY_OUT_VENDOR)/etc/audio_param/VoIPVol_AudioParam.xml \
vendor/motorola/cancunf/proprietary/vendor/etc/audio_param/VoIPVol_ParamUnitDesc.xml:$(TARGET_COPY_OUT_VENDOR)/etc/audio_param/VoIPVol_ParamUnitDesc.xml \
vendor/motorola/cancunf/proprietary/vendor/etc/audio_param/VoIP_AudioParam.xml:$(TARGET_COPY_OUT_VENDOR)/etc/audio_param/VoIP_AudioParam.xml \
vendor/motorola/cancunf/proprietary/vendor/etc/audio_param/VoIP_ParamTreeView.xml:$(TARGET_COPY_OUT_VENDOR)/etc/audio_param/VoIP_ParamTreeView.xml \
vendor/motorola/cancunf/proprietary/vendor/etc/audio_param/VoIP_ParamUnitDesc.xml:$(TARGET_COPY_OUT_VENDOR)/etc/audio_param/VoIP_ParamUnitDesc.xml \
vendor/motorola/cancunf/proprietary/vendor/etc/audio_param/VoIPv2DMNR_AudioParam.xml:$(TARGET_COPY_OUT_VENDOR)/etc/audio_param/VoIPv2DMNR_AudioParam.xml \
vendor/motorola/cancunf/proprietary/vendor/etc/audio_param/VoIPv2DMNR_ParamUnitDesc.xml:$(TARGET_COPY_OUT_VENDOR)/etc/audio_param/VoIPv2DMNR_ParamUnitDesc.xml \
vendor/motorola/cancunf/proprietary/vendor/etc/audio_param/VoIPv2General_AudioParam.xml:$(TARGET_COPY_OUT_VENDOR)/etc/audio_param/VoIPv2General_AudioParam.xml \
vendor/motorola/cancunf/proprietary/vendor/etc/audio_param/VoIPv2General_ParamUnitDesc.xml:$(TARGET_COPY_OUT_VENDOR)/etc/audio_param/VoIPv2General_ParamUnitDesc.xml \
vendor/motorola/cancunf/proprietary/vendor/etc/audio_param/VoIPv2UI_AudioParam.xml:$(TARGET_COPY_OUT_VENDOR)/etc/audio_param/VoIPv2UI_AudioParam.xml \
vendor/motorola/cancunf/proprietary/vendor/etc/audio_param/VoIPv2UI_ParamUnitDesc.xml:$(TARGET_COPY_OUT_VENDOR)/etc/audio_param/VoIPv2UI_ParamUnitDesc.xml \
vendor/motorola/cancunf/proprietary/vendor/etc/audio_param/VoIPv2_AudioParam.xml:$(TARGET_COPY_OUT_VENDOR)/etc/audio_param/VoIPv2_AudioParam.xml \
vendor/motorola/cancunf/proprietary/vendor/etc/audio_param/VoIPv2_ParamTreeView.xml:$(TARGET_COPY_OUT_VENDOR)/etc/audio_param/VoIPv2_ParamTreeView.xml \
vendor/motorola/cancunf/proprietary/vendor/etc/audio_param/VoIPv2_ParamUnitDesc.xml:$(TARGET_COPY_OUT_VENDOR)/etc/audio_param/VoIPv2_ParamUnitDesc.xml \
vendor/motorola/cancunf/proprietary/vendor/etc/audio_param/VoWCommonSetting_AudioParam.xml:$(TARGET_COPY_OUT_VENDOR)/etc/audio_param/VoWCommonSetting_AudioParam.xml \
vendor/motorola/cancunf/proprietary/vendor/etc/audio_param/VoWCommonSetting_ParamUnitDesc.xml:$(TARGET_COPY_OUT_VENDOR)/etc/audio_param/VoWCommonSetting_ParamUnitDesc.xml \
vendor/motorola/cancunf/proprietary/vendor/etc/audio_param/VoWCompatibilityCode_AudioParam.xml:$(TARGET_COPY_OUT_VENDOR)/etc/audio_param/VoWCompatibilityCode_AudioParam.xml \
vendor/motorola/cancunf/proprietary/vendor/etc/audio_param/VoWCompatibilityCode_ParamUnitDesc.xml:$(TARGET_COPY_OUT_VENDOR)/etc/audio_param/VoWCompatibilityCode_ParamUnitDesc.xml \
vendor/motorola/cancunf/proprietary/vendor/etc/audio_param/VoWDspAec_AudioParam.xml:$(TARGET_COPY_OUT_VENDOR)/etc/audio_param/VoWDspAec_AudioParam.xml \
vendor/motorola/cancunf/proprietary/vendor/etc/audio_param/VoWDspAec_ParamUnitDesc.xml:$(TARGET_COPY_OUT_VENDOR)/etc/audio_param/VoWDspAec_ParamUnitDesc.xml \
vendor/motorola/cancunf/proprietary/vendor/etc/audio_param/VoWEngineFeature_AudioParam.xml:$(TARGET_COPY_OUT_VENDOR)/etc/audio_param/VoWEngineFeature_AudioParam.xml \
vendor/motorola/cancunf/proprietary/vendor/etc/audio_param/VoWEngineFeature_ParamUnitDesc.xml:$(TARGET_COPY_OUT_VENDOR)/etc/audio_param/VoWEngineFeature_ParamUnitDesc.xml \
vendor/motorola/cancunf/proprietary/vendor/etc/audio_param/VoWHwVad_AudioParam.xml:$(TARGET_COPY_OUT_VENDOR)/etc/audio_param/VoWHwVad_AudioParam.xml \
vendor/motorola/cancunf/proprietary/vendor/etc/audio_param/VoWHwVad_ParamUnitDesc.xml:$(TARGET_COPY_OUT_VENDOR)/etc/audio_param/VoWHwVad_ParamUnitDesc.xml \
vendor/motorola/cancunf/proprietary/vendor/etc/audio_param/VoWMicSetting_AudioParam.xml:$(TARGET_COPY_OUT_VENDOR)/etc/audio_param/VoWMicSetting_AudioParam.xml \
vendor/motorola/cancunf/proprietary/vendor/etc/audio_param/VoWMicSetting_ParamUnitDesc.xml:$(TARGET_COPY_OUT_VENDOR)/etc/audio_param/VoWMicSetting_ParamUnitDesc.xml \
vendor/motorola/cancunf/proprietary/vendor/etc/audio_param/VoWVoiceCommand_AudioParam.xml:$(TARGET_COPY_OUT_VENDOR)/etc/audio_param/VoWVoiceCommand_AudioParam.xml \
vendor/motorola/cancunf/proprietary/vendor/etc/audio_param/VoWVoiceCommand_ParamUnitDesc.xml:$(TARGET_COPY_OUT_VENDOR)/etc/audio_param/VoWVoiceCommand_ParamUnitDesc.xml \
vendor/motorola/cancunf/proprietary/vendor/etc/audio_param/VolumeGainMapUL_AudioParam.xml:$(TARGET_COPY_OUT_VENDOR)/etc/audio_param/VolumeGainMapUL_AudioParam.xml \
vendor/motorola/cancunf/proprietary/vendor/etc/audio_param/VolumeGainMapUL_ParamUnitDesc.xml:$(TARGET_COPY_OUT_VENDOR)/etc/audio_param/VolumeGainMapUL_ParamUnitDesc.xml \
vendor/motorola/cancunf/proprietary/vendor/etc/audio_param/VolumeGainMap_AudioParam.xml:$(TARGET_COPY_OUT_VENDOR)/etc/audio_param/VolumeGainMap_AudioParam.xml \
vendor/motorola/cancunf/proprietary/vendor/etc/audio_param/VolumeGainMap_ParamUnitDesc.xml:$(TARGET_COPY_OUT_VENDOR)/etc/audio_param/VolumeGainMap_ParamUnitDesc.xml \
vendor/motorola/cancunf/proprietary/vendor/etc/audio_param/Volume_AudioParam.xml:$(TARGET_COPY_OUT_VENDOR)/etc/audio_param/Volume_AudioParam.xml \
vendor/motorola/cancunf/proprietary/vendor/etc/audio_param/Volume_ParamUnitDesc.xml:$(TARGET_COPY_OUT_VENDOR)/etc/audio_param/Volume_ParamUnitDesc.xml \
vendor/motorola/cancunf/proprietary/vendor/etc/aurisys_config.xml:$(TARGET_COPY_OUT_VENDOR)/etc/aurisys_config.xml \
vendor/motorola/cancunf/proprietary/vendor/etc/aurisys_config_rv.xml:$(TARGET_COPY_OUT_VENDOR)/etc/aurisys_config_rv.xml \
vendor/motorola/cancunf/proprietary/vendor/etc/bt_stack_debug.conf:$(TARGET_COPY_OUT_VENDOR)/etc/bt_stack_debug.conf \
vendor/motorola/cancunf/proprietary/vendor/etc/bt_stack_level6.conf:$(TARGET_COPY_OUT_VENDOR)/etc/bt_stack_level6.conf \
vendor/motorola/cancunf/proprietary/vendor/etc/cust_color_0.xml:$(TARGET_COPY_OUT_VENDOR)/etc/cust_color_0.xml \
vendor/motorola/cancunf/proprietary/vendor/etc/cust_color_1.xml:$(TARGET_COPY_OUT_VENDOR)/etc/cust_color_1.xml \
vendor/motorola/cancunf/proprietary/vendor/etc/cust_color_2.xml:$(TARGET_COPY_OUT_VENDOR)/etc/cust_color_2.xml \
vendor/motorola/cancunf/proprietary/vendor/etc/default_pd_calibration.bin:$(TARGET_COPY_OUT_VENDOR)/etc/default_pd_calibration.bin \
vendor/motorola/cancunf/proprietary/vendor/etc/dolby/dax-default.xml:$(TARGET_COPY_OUT_VENDOR)/etc/dolby/dax-default.xml \
vendor/motorola/cancunf/proprietary/vendor/etc/dual_golden_wide.bin:$(TARGET_COPY_OUT_VENDOR)/etc/dual_golden_wide.bin \
vendor/motorola/cancunf/proprietary/vendor/etc/ecc_list.xml:$(TARGET_COPY_OUT_VENDOR)/etc/ecc_list.xml \
vendor/motorola/cancunf/proprietary/vendor/etc/ecc_list_OP01.xml:$(TARGET_COPY_OUT_VENDOR)/etc/ecc_list_OP01.xml \
vendor/motorola/cancunf/proprietary/vendor/etc/ecc_list_OP02.xml:$(TARGET_COPY_OUT_VENDOR)/etc/ecc_list_OP02.xml \
vendor/motorola/cancunf/proprietary/vendor/etc/ecc_list_OP09.xml:$(TARGET_COPY_OUT_VENDOR)/etc/ecc_list_OP09.xml \
vendor/motorola/cancunf/proprietary/vendor/etc/ecc_list_OP12.xml:$(TARGET_COPY_OUT_VENDOR)/etc/ecc_list_OP12.xml \
vendor/motorola/cancunf/proprietary/vendor/etc/ecc_list_OP17.xml:$(TARGET_COPY_OUT_VENDOR)/etc/ecc_list_OP17.xml \
vendor/motorola/cancunf/proprietary/vendor/etc/ecc_list_OP18.xml:$(TARGET_COPY_OUT_VENDOR)/etc/ecc_list_OP18.xml \
vendor/motorola/cancunf/proprietary/vendor/etc/ecc_list_OP20.xml:$(TARGET_COPY_OUT_VENDOR)/etc/ecc_list_OP20.xml \
vendor/motorola/cancunf/proprietary/vendor/etc/ecc_list_OP236.xml:$(TARGET_COPY_OUT_VENDOR)/etc/ecc_list_OP236.xml \
vendor/motorola/cancunf/proprietary/vendor/etc/ecc_list_preference.xml:$(TARGET_COPY_OUT_VENDOR)/etc/ecc_list_preference.xml \
vendor/motorola/cancunf/proprietary/vendor/etc/gnss/agps_profiles_conf2.xml:$(TARGET_COPY_OUT_VENDOR)/etc/gnss/agps_profiles_conf2.xml \
vendor/motorola/cancunf/proprietary/vendor/etc/gnss/carrier/agps_profiles_conf2_carrier_ATnT_Mexico.xml:$(TARGET_COPY_OUT_VENDOR)/etc/gnss/carrier/agps_profiles_conf2_carrier_ATnT_Mexico.xml \
vendor/motorola/cancunf/proprietary/vendor/etc/gnss/carrier/agps_profiles_conf2_carrier_ATnT_US.xml:$(TARGET_COPY_OUT_VENDOR)/etc/gnss/carrier/agps_profiles_conf2_carrier_ATnT_US.xml \
vendor/motorola/cancunf/proprietary/vendor/etc/gnss/carrier/agps_profiles_conf2_carrier_Bell_Mobility.xml:$(TARGET_COPY_OUT_VENDOR)/etc/gnss/carrier/agps_profiles_conf2_carrier_Bell_Mobility.xml \
vendor/motorola/cancunf/proprietary/vendor/etc/gnss/carrier/agps_profiles_conf2_carrier_Blue_Wireless.xml:$(TARGET_COPY_OUT_VENDOR)/etc/gnss/carrier/agps_profiles_conf2_carrier_Blue_Wireless.xml \
vendor/motorola/cancunf/proprietary/vendor/etc/gnss/carrier/agps_profiles_conf2_carrier_Boost_Mobile.xml:$(TARGET_COPY_OUT_VENDOR)/etc/gnss/carrier/agps_profiles_conf2_carrier_Boost_Mobile.xml \
vendor/motorola/cancunf/proprietary/vendor/etc/gnss/carrier/agps_profiles_conf2_carrier_C_Spire_NL.xml:$(TARGET_COPY_OUT_VENDOR)/etc/gnss/carrier/agps_profiles_conf2_carrier_C_Spire_NL.xml \
vendor/motorola/cancunf/proprietary/vendor/etc/gnss/carrier/agps_profiles_conf2_carrier_C_Spire_US.xml:$(TARGET_COPY_OUT_VENDOR)/etc/gnss/carrier/agps_profiles_conf2_carrier_C_Spire_US.xml \
vendor/motorola/cancunf/proprietary/vendor/etc/gnss/carrier/agps_profiles_conf2_carrier_Carolina_West_Wireless.xml:$(TARGET_COPY_OUT_VENDOR)/etc/gnss/carrier/agps_profiles_conf2_carrier_Carolina_West_Wireless.xml \
vendor/motorola/cancunf/proprietary/vendor/etc/gnss/carrier/agps_profiles_conf2_carrier_Claro_Peru.xml:$(TARGET_COPY_OUT_VENDOR)/etc/gnss/carrier/agps_profiles_conf2_carrier_Claro_Peru.xml \
vendor/motorola/cancunf/proprietary/vendor/etc/gnss/carrier/agps_profiles_conf2_carrier_Dish.xml:$(TARGET_COPY_OUT_VENDOR)/etc/gnss/carrier/agps_profiles_conf2_carrier_Dish.xml \
vendor/motorola/cancunf/proprietary/vendor/etc/gnss/carrier/agps_profiles_conf2_carrier_Entel_Peru.xml:$(TARGET_COPY_OUT_VENDOR)/etc/gnss/carrier/agps_profiles_conf2_carrier_Entel_Peru.xml \
vendor/motorola/cancunf/proprietary/vendor/etc/gnss/carrier/agps_profiles_conf2_carrier_FirstNet.xml:$(TARGET_COPY_OUT_VENDOR)/etc/gnss/carrier/agps_profiles_conf2_carrier_FirstNet.xml \
vendor/motorola/cancunf/proprietary/vendor/etc/gnss/carrier/agps_profiles_conf2_carrier_Inland_Cellular.xml:$(TARGET_COPY_OUT_VENDOR)/etc/gnss/carrier/agps_profiles_conf2_carrier_Inland_Cellular.xml \
vendor/motorola/cancunf/proprietary/vendor/etc/gnss/carrier/agps_profiles_conf2_carrier_KDDI.xml:$(TARGET_COPY_OUT_VENDOR)/etc/gnss/carrier/agps_profiles_conf2_carrier_KDDI.xml \
vendor/motorola/cancunf/proprietary/vendor/etc/gnss/carrier/agps_profiles_conf2_carrier_MobileNation.xml:$(TARGET_COPY_OUT_VENDOR)/etc/gnss/carrier/agps_profiles_conf2_carrier_MobileNation.xml \
vendor/motorola/cancunf/proprietary/vendor/etc/gnss/carrier/agps_profiles_conf2_carrier_Movistar_Argentina.xml:$(TARGET_COPY_OUT_VENDOR)/etc/gnss/carrier/agps_profiles_conf2_carrier_Movistar_Argentina.xml \
vendor/motorola/cancunf/proprietary/vendor/etc/gnss/carrier/agps_profiles_conf2_carrier_Movistar_Peru.xml:$(TARGET_COPY_OUT_VENDOR)/etc/gnss/carrier/agps_profiles_conf2_carrier_Movistar_Peru.xml \
vendor/motorola/cancunf/proprietary/vendor/etc/gnss/carrier/agps_profiles_conf2_carrier_NexTech_Ota.xml:$(TARGET_COPY_OUT_VENDOR)/etc/gnss/carrier/agps_profiles_conf2_carrier_NexTech_Ota.xml \
vendor/motorola/cancunf/proprietary/vendor/etc/gnss/carrier/agps_profiles_conf2_carrier_Nextel_Communications.xml:$(TARGET_COPY_OUT_VENDOR)/etc/gnss/carrier/agps_profiles_conf2_carrier_Nextel_Communications.xml \
vendor/motorola/cancunf/proprietary/vendor/etc/gnss/carrier/agps_profiles_conf2_carrier_No_Carrier_ID_LPP_Profile_11.xml:$(TARGET_COPY_OUT_VENDOR)/etc/gnss/carrier/agps_profiles_conf2_carrier_No_Carrier_ID_LPP_Profile_11.xml \
vendor/motorola/cancunf/proprietary/vendor/etc/gnss/carrier/agps_profiles_conf2_carrier_No_Carrier_ID_LPP_Profile_7.xml:$(TARGET_COPY_OUT_VENDOR)/etc/gnss/carrier/agps_profiles_conf2_carrier_No_Carrier_ID_LPP_Profile_7.xml \
vendor/motorola/cancunf/proprietary/vendor/etc/gnss/carrier/agps_profiles_conf2_carrier_PTCI.xml:$(TARGET_COPY_OUT_VENDOR)/etc/gnss/carrier/agps_profiles_conf2_carrier_PTCI.xml \
vendor/motorola/cancunf/proprietary/vendor/etc/gnss/carrier/agps_profiles_conf2_carrier_Pine_Belt.xml:$(TARGET_COPY_OUT_VENDOR)/etc/gnss/carrier/agps_profiles_conf2_carrier_Pine_Belt.xml \
vendor/motorola/cancunf/proprietary/vendor/etc/gnss/carrier/agps_profiles_conf2_carrier_SK_Telecom.xml:$(TARGET_COPY_OUT_VENDOR)/etc/gnss/carrier/agps_profiles_conf2_carrier_SK_Telecom.xml \
vendor/motorola/cancunf/proprietary/vendor/etc/gnss/carrier/agps_profiles_conf2_carrier_SoftBank.xml:$(TARGET_COPY_OUT_VENDOR)/etc/gnss/carrier/agps_profiles_conf2_carrier_SoftBank.xml \
vendor/motorola/cancunf/proprietary/vendor/etc/gnss/carrier/agps_profiles_conf2_carrier_Sprint.xml:$(TARGET_COPY_OUT_VENDOR)/etc/gnss/carrier/agps_profiles_conf2_carrier_Sprint.xml \
vendor/motorola/cancunf/proprietary/vendor/etc/gnss/carrier/agps_profiles_conf2_carrier_T-Mobile_US.xml:$(TARGET_COPY_OUT_VENDOR)/etc/gnss/carrier/agps_profiles_conf2_carrier_T-Mobile_US.xml \
vendor/motorola/cancunf/proprietary/vendor/etc/gnss/carrier/agps_profiles_conf2_carrier_TELUS_Mobility.xml:$(TARGET_COPY_OUT_VENDOR)/etc/gnss/carrier/agps_profiles_conf2_carrier_TELUS_Mobility.xml \
vendor/motorola/cancunf/proprietary/vendor/etc/gnss/carrier/agps_profiles_conf2_carrier_Test_SIM1.xml:$(TARGET_COPY_OUT_VENDOR)/etc/gnss/carrier/agps_profiles_conf2_carrier_Test_SIM1.xml \
vendor/motorola/cancunf/proprietary/vendor/etc/gnss/carrier/agps_profiles_conf2_carrier_Test_SIM2.xml:$(TARGET_COPY_OUT_VENDOR)/etc/gnss/carrier/agps_profiles_conf2_carrier_Test_SIM2.xml \
vendor/motorola/cancunf/proprietary/vendor/etc/gnss/carrier/agps_profiles_conf2_carrier_USC.xml:$(TARGET_COPY_OUT_VENDOR)/etc/gnss/carrier/agps_profiles_conf2_carrier_USC.xml \
vendor/motorola/cancunf/proprietary/vendor/etc/gnss/carrier/agps_profiles_conf2_carrier_Verizon_Wireless.xml:$(TARGET_COPY_OUT_VENDOR)/etc/gnss/carrier/agps_profiles_conf2_carrier_Verizon_Wireless.xml \
vendor/motorola/cancunf/proprietary/vendor/etc/gnss/carrier/agps_profiles_conf2_carrier_Virgin_Mobile.xml:$(TARGET_COPY_OUT_VENDOR)/etc/gnss/carrier/agps_profiles_conf2_carrier_Virgin_Mobile.xml \
vendor/motorola/cancunf/proprietary/vendor/etc/gnss/carrier/agps_profiles_conf2_carrier_nTelos.xml:$(TARGET_COPY_OUT_VENDOR)/etc/gnss/carrier/agps_profiles_conf2_carrier_nTelos.xml \
vendor/motorola/cancunf/proprietary/vendor/etc/init.insmod.mt6855.cfg:$(TARGET_COPY_OUT_VENDOR)/etc/init.insmod.mt6855.cfg \
vendor/motorola/cancunf/proprietary/vendor/etc/init/android.hardware.biometrics.fingerprint@2.1-goodixservice.rc:$(TARGET_COPY_OUT_VENDOR)/etc/init/android.hardware.biometrics.fingerprint@2.1-goodixservice.rc \
vendor/motorola/cancunf/proprietary/vendor/etc/init/android.hardware.biometrics.fingerprint@2.1-service-chipone2.rc:$(TARGET_COPY_OUT_VENDOR)/etc/init/android.hardware.biometrics.fingerprint@2.1-service-chipone2.rc \
vendor/motorola/cancunf/proprietary/vendor/etc/init/android.hardware.biometrics.fingerprint@2.1-service-fpc2.rc:$(TARGET_COPY_OUT_VENDOR)/etc/init/android.hardware.biometrics.fingerprint@2.1-service-fpc2.rc \
vendor/motorola/cancunf/proprietary/vendor/etc/init/android.hardware.bluetooth@1.1-service-mediatek.rc:$(TARGET_COPY_OUT_VENDOR)/etc/init/android.hardware.bluetooth@1.1-service-mediatek.rc \
vendor/motorola/cancunf/proprietary/vendor/etc/init/android.hardware.drm@1.4-service.widevine.rc:$(TARGET_COPY_OUT_VENDOR)/etc/init/android.hardware.drm@1.4-service.widevine.rc \
vendor/motorola/cancunf/proprietary/vendor/etc/init/android.hardware.gnss-service.mediatek.rc:$(TARGET_COPY_OUT_VENDOR)/etc/init/android.hardware.gnss-service.mediatek.rc \
vendor/motorola/cancunf/proprietary/vendor/etc/init/android.hardware.graphics.allocator@4.0-service-mediatek.rc:$(TARGET_COPY_OUT_VENDOR)/etc/init/android.hardware.graphics.allocator@4.0-service-mediatek.rc \
vendor/motorola/cancunf/proprietary/vendor/etc/init/android.hardware.media.c2@1.2-mediatek-64b.rc:$(TARGET_COPY_OUT_VENDOR)/etc/init/android.hardware.media.c2@1.2-mediatek-64b.rc \
vendor/motorola/cancunf/proprietary/vendor/etc/init/android.hardware.neuralnetworks-shim-service-mtk.rc:$(TARGET_COPY_OUT_VENDOR)/etc/init/android.hardware.neuralnetworks-shim-service-mtk.rc \
vendor/motorola/cancunf/proprietary/vendor/etc/init/android.hardware.nfc@1.2-service.sec.rc:$(TARGET_COPY_OUT_VENDOR)/etc/init/android.hardware.nfc@1.2-service.sec.rc \
vendor/motorola/cancunf/proprietary/vendor/etc/init/android.hardware.secure_element@1.2-service-mediatek.rc:$(TARGET_COPY_OUT_VENDOR)/etc/init/android.hardware.secure_element@1.2-service-mediatek.rc \
vendor/motorola/cancunf/proprietary/vendor/etc/init/android.hardware.security.keymint-service.trustonic.rc:$(TARGET_COPY_OUT_VENDOR)/etc/init/android.hardware.security.keymint-service.trustonic.rc \
vendor/motorola/cancunf/proprietary/vendor/etc/init/atcid.rc:$(TARGET_COPY_OUT_VENDOR)/etc/init/atcid.rc \
vendor/motorola/cancunf/proprietary/vendor/etc/init/audiocmdservice_atci.rc:$(TARGET_COPY_OUT_VENDOR)/etc/init/audiocmdservice_atci.rc \
vendor/motorola/cancunf/proprietary/vendor/etc/init/bootperf.rc:$(TARGET_COPY_OUT_VENDOR)/etc/init/bootperf.rc \
vendor/motorola/cancunf/proprietary/vendor/etc/init/camerahalserver.rc:$(TARGET_COPY_OUT_VENDOR)/etc/init/camerahalserver.rc \
vendor/motorola/cancunf/proprietary/vendor/etc/init/chipinfo_init.rc:$(TARGET_COPY_OUT_VENDOR)/etc/init/chipinfo_init.rc \
vendor/motorola/cancunf/proprietary/vendor/etc/init/fuelgauged_init.rc:$(TARGET_COPY_OUT_VENDOR)/etc/init/fuelgauged_init.rc \
vendor/motorola/cancunf/proprietary/vendor/etc/init/fuelgauged_nvram_init.rc:$(TARGET_COPY_OUT_VENDOR)/etc/init/fuelgauged_nvram_init.rc \
vendor/motorola/cancunf/proprietary/vendor/etc/init/gsm0710muxd.rc:$(TARGET_COPY_OUT_VENDOR)/etc/init/gsm0710muxd.rc \
vendor/motorola/cancunf/proprietary/vendor/etc/init/hw/init.mmi.backup.trustlet.rc:$(TARGET_COPY_OUT_VENDOR)/etc/init/hw/init.mmi.backup.trustlet.rc \
vendor/motorola/cancunf/proprietary/vendor/etc/init/init.bip_ap.rc:$(TARGET_COPY_OUT_VENDOR)/etc/init/init.bip_ap.rc \
vendor/motorola/cancunf/proprietary/vendor/etc/init/init.cccifsd.rc:$(TARGET_COPY_OUT_VENDOR)/etc/init/init.cccifsd.rc \
vendor/motorola/cancunf/proprietary/vendor/etc/init/init.cccimdinit.rc:$(TARGET_COPY_OUT_VENDOR)/etc/init/init.cccimdinit.rc \
vendor/motorola/cancunf/proprietary/vendor/etc/init/init.cccirpcd.rc:$(TARGET_COPY_OUT_VENDOR)/etc/init/init.cccirpcd.rc \
vendor/motorola/cancunf/proprietary/vendor/etc/init/init.chipone_ident.rc:$(TARGET_COPY_OUT_VENDOR)/etc/init/init.chipone_ident.rc \
vendor/motorola/cancunf/proprietary/vendor/etc/init/init.gf_ident.rc:$(TARGET_COPY_OUT_VENDOR)/etc/init/init.gf_ident.rc \
vendor/motorola/cancunf/proprietary/vendor/etc/init/init.nfc.sec.rc:$(TARGET_COPY_OUT_VENDOR)/etc/init/init.nfc.sec.rc \
vendor/motorola/cancunf/proprietary/vendor/etc/init/init.thermal_core.rc:$(TARGET_COPY_OUT_VENDOR)/etc/init/init.thermal_core.rc \
vendor/motorola/cancunf/proprietary/vendor/etc/init/init.vtservice_hidl.rc:$(TARGET_COPY_OUT_VENDOR)/etc/init/init.vtservice_hidl.rc \
vendor/motorola/cancunf/proprietary/vendor/etc/init/ipsec_mon.rc:$(TARGET_COPY_OUT_VENDOR)/etc/init/ipsec_mon.rc \
vendor/motorola/cancunf/proprietary/vendor/etc/init/lbs_hidl_service.rc:$(TARGET_COPY_OUT_VENDOR)/etc/init/lbs_hidl_service.rc \
vendor/motorola/cancunf/proprietary/vendor/etc/init/memtrack-mediatek.rc:$(TARGET_COPY_OUT_VENDOR)/etc/init/memtrack-mediatek.rc \
vendor/motorola/cancunf/proprietary/vendor/etc/init/motorola.hardware.camera.imgtuner@2.0-service.rc:$(TARGET_COPY_OUT_VENDOR)/etc/init/motorola.hardware.camera.imgtuner@2.0-service.rc \
vendor/motorola/cancunf/proprietary/vendor/etc/init/mtk_agpsd_p.rc:$(TARGET_COPY_OUT_VENDOR)/etc/init/mtk_agpsd_p.rc \
vendor/motorola/cancunf/proprietary/vendor/etc/init/mtkrild.rc:$(TARGET_COPY_OUT_VENDOR)/etc/init/mtkrild.rc \
vendor/motorola/cancunf/proprietary/vendor/etc/init/muxreport.rc:$(TARGET_COPY_OUT_VENDOR)/etc/init/muxreport.rc \
vendor/motorola/cancunf/proprietary/vendor/etc/init/netdagent.rc:$(TARGET_COPY_OUT_VENDOR)/etc/init/netdagent.rc \
vendor/motorola/cancunf/proprietary/vendor/etc/init/networksetting.rc:$(TARGET_COPY_OUT_VENDOR)/etc/init/networksetting.rc \
vendor/motorola/cancunf/proprietary/vendor/etc/init/nvram_daemon.rc:$(TARGET_COPY_OUT_VENDOR)/etc/init/nvram_daemon.rc \
vendor/motorola/cancunf/proprietary/vendor/etc/init/tee.rc:$(TARGET_COPY_OUT_VENDOR)/etc/init/tee.rc \
vendor/motorola/cancunf/proprietary/vendor/etc/init/tetheroffloadservice.rc:$(TARGET_COPY_OUT_VENDOR)/etc/init/tetheroffloadservice.rc \
vendor/motorola/cancunf/proprietary/vendor/etc/init/trustonic.rc:$(TARGET_COPY_OUT_VENDOR)/etc/init/trustonic.rc \
vendor/motorola/cancunf/proprietary/vendor/etc/init/v3avpud.rc:$(TARGET_COPY_OUT_VENDOR)/etc/init/v3avpud.rc \
vendor/motorola/cancunf/proprietary/vendor/etc/init/vendor.dolby.hardware.dms@2.0-service.rc:$(TARGET_COPY_OUT_VENDOR)/etc/init/vendor.dolby.hardware.dms@2.0-service.rc \
vendor/motorola/cancunf/proprietary/vendor/etc/init/vendor.dolby.media.c2@1.0-service.rc:$(TARGET_COPY_OUT_VENDOR)/etc/init/vendor.dolby.media.c2@1.0-service.rc \
vendor/motorola/cancunf/proprietary/vendor/etc/init/vendor.mediatek.hardware.keymaster_attestation@1.1-service.rc:$(TARGET_COPY_OUT_VENDOR)/etc/init/vendor.mediatek.hardware.keymaster_attestation@1.1-service.rc \
vendor/motorola/cancunf/proprietary/vendor/etc/init/vendor.mediatek.hardware.mmagent@1.1-service.rc:$(TARGET_COPY_OUT_VENDOR)/etc/init/vendor.mediatek.hardware.mmagent@1.1-service.rc \
vendor/motorola/cancunf/proprietary/vendor/etc/init/vendor.mediatek.hardware.mms@1.6-service.rc:$(TARGET_COPY_OUT_VENDOR)/etc/init/vendor.mediatek.hardware.mms@1.6-service.rc \
vendor/motorola/cancunf/proprietary/vendor/etc/init/vendor.mediatek.hardware.nvram@1.1-sevice.rc:$(TARGET_COPY_OUT_VENDOR)/etc/init/vendor.mediatek.hardware.nvram@1.1-sevice.rc \
vendor/motorola/cancunf/proprietary/vendor/etc/init/vendor.mediatek.hardware.pq@2.2-service.rc:$(TARGET_COPY_OUT_VENDOR)/etc/init/vendor.mediatek.hardware.pq@2.2-service.rc \
vendor/motorola/cancunf/proprietary/vendor/etc/init/vendor.mmi.carrier.rc:$(TARGET_COPY_OUT_VENDOR)/etc/init/vendor.mmi.carrier.rc \
vendor/motorola/cancunf/proprietary/vendor/etc/init/vendor.mmi.cxp.rc:$(TARGET_COPY_OUT_VENDOR)/etc/init/vendor.mmi.cxp.rc \
vendor/motorola/cancunf/proprietary/vendor/etc/init/vendor.trustonic.tee@1.1-service.rc:$(TARGET_COPY_OUT_VENDOR)/etc/init/vendor.trustonic.tee@1.1-service.rc \
vendor/motorola/cancunf/proprietary/vendor/etc/init/volte_clientapi_ua.rc:$(TARGET_COPY_OUT_VENDOR)/etc/init/volte_clientapi_ua.rc \
vendor/motorola/cancunf/proprietary/vendor/etc/init/wlan_assistant.rc:$(TARGET_COPY_OUT_VENDOR)/etc/init/wlan_assistant.rc \
vendor/motorola/cancunf/proprietary/vendor/etc/libese-nxp.conf:$(TARGET_COPY_OUT_VENDOR)/etc/libese-nxp.conf \
vendor/motorola/cancunf/proprietary/vendor/etc/libnfc-nci.conf:$(TARGET_COPY_OUT_VENDOR)/etc/libnfc-nci.conf \
vendor/motorola/cancunf/proprietary/vendor/etc/libnfc-nci_100.conf:$(TARGET_COPY_OUT_VENDOR)/etc/libnfc-nci_100.conf \
vendor/motorola/cancunf/proprietary/vendor/etc/libnfc-nci_220.conf:$(TARGET_COPY_OUT_VENDOR)/etc/libnfc-nci_220.conf \
vendor/motorola/cancunf/proprietary/vendor/etc/libnfc-nci_220e.conf:$(TARGET_COPY_OUT_VENDOR)/etc/libnfc-nci_220e.conf \
vendor/motorola/cancunf/proprietary/vendor/etc/libnfc-nci_557.conf:$(TARGET_COPY_OUT_VENDOR)/etc/libnfc-nci_557.conf \
vendor/motorola/cancunf/proprietary/vendor/etc/libnfc-nci_560.conf:$(TARGET_COPY_OUT_VENDOR)/etc/libnfc-nci_560.conf \
vendor/motorola/cancunf/proprietary/vendor/etc/libnfc-nxp-pnscr.conf:$(TARGET_COPY_OUT_VENDOR)/etc/libnfc-nxp-pnscr.conf \
vendor/motorola/cancunf/proprietary/vendor/etc/libnfc-nxp_220.conf:$(TARGET_COPY_OUT_VENDOR)/etc/libnfc-nxp_220.conf \
vendor/motorola/cancunf/proprietary/vendor/etc/libnfc-sec-nci.conf:$(TARGET_COPY_OUT_VENDOR)/etc/libnfc-sec-nci.conf \
vendor/motorola/cancunf/proprietary/vendor/etc/libnfc-sec-vendor.conf:$(TARGET_COPY_OUT_VENDOR)/etc/libnfc-sec-vendor.conf \
vendor/motorola/cancunf/proprietary/vendor/etc/media_codecs_dolby_audio.xml:$(TARGET_COPY_OUT_VENDOR)/etc/media_codecs_dolby_audio.xml \
vendor/motorola/cancunf/proprietary/vendor/etc/meow.cfg:$(TARGET_COPY_OUT_VENDOR)/etc/meow.cfg \
vendor/motorola/cancunf/proprietary/vendor/etc/mot_spn_table:$(TARGET_COPY_OUT_VENDOR)/etc/mot_spn_table \
vendor/motorola/cancunf/proprietary/vendor/etc/motorola/sensors/mot_sensor_settings.json:$(TARGET_COPY_OUT_VENDOR)/etc/motorola/sensors/mot_sensor_settings.json \
vendor/motorola/cancunf/proprietary/vendor/etc/mpe.conf:$(TARGET_COPY_OUT_VENDOR)/etc/mpe.conf \
vendor/motorola/cancunf/proprietary/vendor/etc/mtk_omx_core.cfg:$(TARGET_COPY_OUT_VENDOR)/etc/mtk_omx_core.cfg \
vendor/motorola/cancunf/proprietary/vendor/etc/mtk_platform_codecs_config.xml:$(TARGET_COPY_OUT_VENDOR)/etc/mtk_platform_codecs_config.xml \
vendor/motorola/cancunf/proprietary/vendor/etc/nfc_calibration.txt:$(TARGET_COPY_OUT_VENDOR)/etc/nfc_calibration.txt \
vendor/motorola/cancunf/proprietary/vendor/etc/nnapi_powerhal.json:$(TARGET_COPY_OUT_VENDOR)/etc/nnapi_powerhal.json \
vendor/motorola/cancunf/proprietary/vendor/etc/permissions/com.mediatek.hardware.vow_dsp.xml:$(TARGET_COPY_OUT_VENDOR)/etc/permissions/com.mediatek.hardware.vow_dsp.xml \
vendor/motorola/cancunf/proprietary/vendor/etc/permissions/unavail.android.hardware.sensor.barometer.xml:$(TARGET_COPY_OUT_VENDOR)/etc/permissions/unavail.android.hardware.sensor.barometer.xml \
vendor/motorola/cancunf/proprietary/vendor/etc/public.libraries.txt:$(TARGET_COPY_OUT_VENDOR)/etc/public.libraries.txt \
vendor/motorola/cancunf/proprietary/vendor/etc/sec_s3nrn4v_hwreg.bin:$(TARGET_COPY_OUT_VENDOR)/etc/sec_s3nrn4v_hwreg.bin \
vendor/motorola/cancunf/proprietary/vendor/etc/sec_s3nrn4v_swreg.bin:$(TARGET_COPY_OUT_VENDOR)/etc/sec_s3nrn4v_swreg.bin \
vendor/motorola/cancunf/proprietary/vendor/etc/seccomp_policy/android.hardware.media.c2@1.2-extended-seccomp-policy:$(TARGET_COPY_OUT_VENDOR)/etc/seccomp_policy/android.hardware.media.c2@1.2-extended-seccomp-policy \
vendor/motorola/cancunf/proprietary/vendor/etc/seccomp_policy/android.hardware.media.c2@1.2-mediatek-seccomp-policy:$(TARGET_COPY_OUT_VENDOR)/etc/seccomp_policy/android.hardware.media.c2@1.2-mediatek-seccomp-policy \
vendor/motorola/cancunf/proprietary/vendor/etc/seccomp_policy/mediacodec.policy:$(TARGET_COPY_OUT_VENDOR)/etc/seccomp_policy/mediacodec.policy \
vendor/motorola/cancunf/proprietary/vendor/etc/seccomp_policy/mediaextractor.policy:$(TARGET_COPY_OUT_VENDOR)/etc/seccomp_policy/mediaextractor.policy \
vendor/motorola/cancunf/proprietary/vendor/etc/seccomp_policy/mediaswcodec.policy:$(TARGET_COPY_OUT_VENDOR)/etc/seccomp_policy/mediaswcodec.policy \
vendor/motorola/cancunf/proprietary/vendor/etc/slp_conf:$(TARGET_COPY_OUT_VENDOR)/etc/slp_conf \
vendor/motorola/cancunf/proprietary/vendor/etc/smsdbvisitor.xml:$(TARGET_COPY_OUT_VENDOR)/etc/smsdbvisitor.xml \
vendor/motorola/cancunf/proprietary/vendor/etc/sn100u_nfcon.pnscr:$(TARGET_COPY_OUT_VENDOR)/etc/sn100u_nfcon.pnscr \
vendor/motorola/cancunf/proprietary/vendor/etc/sn100u_pnx_ese_cplc.pnscr:$(TARGET_COPY_OUT_VENDOR)/etc/sn100u_pnx_ese_cplc.pnscr \
vendor/motorola/cancunf/proprietary/vendor/etc/special_pws_channel.xml:$(TARGET_COPY_OUT_VENDOR)/etc/special_pws_channel.xml \
vendor/motorola/cancunf/proprietary/vendor/etc/tetras/portrait_repair_composite.model:$(TARGET_COPY_OUT_VENDOR)/etc/tetras/portrait_repair_composite.model \
vendor/motorola/cancunf/proprietary/vendor/etc/thermal/disable_skin_control.conf:$(TARGET_COPY_OUT_VENDOR)/etc/thermal/disable_skin_control.conf \
vendor/motorola/cancunf/proprietary/vendor/etc/thermal/disable_thermal.conf:$(TARGET_COPY_OUT_VENDOR)/etc/thermal/disable_thermal.conf \
vendor/motorola/cancunf/proprietary/vendor/etc/thermal/disable_thermal_temp.conf:$(TARGET_COPY_OUT_VENDOR)/etc/thermal/disable_thermal_temp.conf \
vendor/motorola/cancunf/proprietary/vendor/etc/thermal/disable_throttling.conf:$(TARGET_COPY_OUT_VENDOR)/etc/thermal/disable_throttling.conf \
vendor/motorola/cancunf/proprietary/vendor/etc/thermal/thermal.conf:$(TARGET_COPY_OUT_VENDOR)/etc/thermal/thermal.conf \
vendor/motorola/cancunf/proprietary/vendor/etc/thermal/thermal_kpoc.conf:$(TARGET_COPY_OUT_VENDOR)/etc/thermal/thermal_kpoc.conf \
vendor/motorola/cancunf/proprietary/vendor/etc/thermal/thermal_policy_02.conf:$(TARGET_COPY_OUT_VENDOR)/etc/thermal/thermal_policy_02.conf \
vendor/motorola/cancunf/proprietary/vendor/etc/thermal/thermal_policy_03.conf:$(TARGET_COPY_OUT_VENDOR)/etc/thermal/thermal_policy_03.conf \
vendor/motorola/cancunf/proprietary/vendor/etc/thermal/thermal_policy_04.conf:$(TARGET_COPY_OUT_VENDOR)/etc/thermal/thermal_policy_04.conf \
vendor/motorola/cancunf/proprietary/vendor/etc/thermal/thermal_policy_05.conf:$(TARGET_COPY_OUT_VENDOR)/etc/thermal/thermal_policy_05.conf \
vendor/motorola/cancunf/proprietary/vendor/etc/thermal/thermal_policy_07.conf:$(TARGET_COPY_OUT_VENDOR)/etc/thermal/thermal_policy_07.conf \
vendor/motorola/cancunf/proprietary/vendor/etc/thermal/thermal_policy_08.conf:$(TARGET_COPY_OUT_VENDOR)/etc/thermal/thermal_policy_08.conf \
vendor/motorola/cancunf/proprietary/vendor/etc/thermal/thermal_policy_09.conf:$(TARGET_COPY_OUT_VENDOR)/etc/thermal/thermal_policy_09.conf \
vendor/motorola/cancunf/proprietary/vendor/etc/thermal/thermal_policy_10.conf:$(TARGET_COPY_OUT_VENDOR)/etc/thermal/thermal_policy_10.conf \
vendor/motorola/cancunf/proprietary/vendor/etc/thermal/thermal_policy_12.conf:$(TARGET_COPY_OUT_VENDOR)/etc/thermal/thermal_policy_12.conf \
vendor/motorola/cancunf/proprietary/vendor/etc/thermal/thermal_policy_13.conf:$(TARGET_COPY_OUT_VENDOR)/etc/thermal/thermal_policy_13.conf \
vendor/motorola/cancunf/proprietary/vendor/etc/thermal/thermal_policy_14.conf:$(TARGET_COPY_OUT_VENDOR)/etc/thermal/thermal_policy_14.conf \
vendor/motorola/cancunf/proprietary/vendor/etc/thermal/thermal_policy_15.conf:$(TARGET_COPY_OUT_VENDOR)/etc/thermal/thermal_policy_15.conf \
vendor/motorola/cancunf/proprietary/vendor/etc/thermal/thermal_policy_16.conf:$(TARGET_COPY_OUT_VENDOR)/etc/thermal/thermal_policy_16.conf \
vendor/motorola/cancunf/proprietary/vendor/etc/thermal/thermal_policy_17.conf:$(TARGET_COPY_OUT_VENDOR)/etc/thermal/thermal_policy_17.conf \
vendor/motorola/cancunf/proprietary/vendor/etc/thermal/thermal_policy_18.conf:$(TARGET_COPY_OUT_VENDOR)/etc/thermal/thermal_policy_18.conf \
vendor/motorola/cancunf/proprietary/vendor/etc/thermal/thermal_policy_19.conf:$(TARGET_COPY_OUT_VENDOR)/etc/thermal/thermal_policy_19.conf \
vendor/motorola/cancunf/proprietary/vendor/etc/vendor-apns-conf.xml:$(TARGET_COPY_OUT_VENDOR)/etc/vendor-apns-conf.xml \
vendor/motorola/cancunf/proprietary/vendor/etc/vhw.xml:$(TARGET_COPY_OUT_VENDOR)/etc/vhw.xml \
vendor/motorola/cancunf/proprietary/vendor/etc/virtual-spn-conf-by-efgid1.xml:$(TARGET_COPY_OUT_VENDOR)/etc/virtual-spn-conf-by-efgid1.xml \
vendor/motorola/cancunf/proprietary/vendor/etc/virtual-spn-conf-by-efpnn.xml:$(TARGET_COPY_OUT_VENDOR)/etc/virtual-spn-conf-by-efpnn.xml \
vendor/motorola/cancunf/proprietary/vendor/etc/virtual-spn-conf-by-efspn.xml:$(TARGET_COPY_OUT_VENDOR)/etc/virtual-spn-conf-by-efspn.xml \
vendor/motorola/cancunf/proprietary/vendor/etc/virtual-spn-conf-by-imsi.xml:$(TARGET_COPY_OUT_VENDOR)/etc/virtual-spn-conf-by-imsi.xml \
vendor/motorola/cancunf/proprietary/vendor/firmware/BT_FW.cfg:$(TARGET_COPY_OUT_VENDOR)/firmware/BT_FW.cfg \
vendor/motorola/cancunf/proprietary/vendor/firmware/ILITEK_FW:$(TARGET_COPY_OUT_VENDOR)/firmware/ILITEK_FW \
vendor/motorola/cancunf/proprietary/recovery/root/vendor/firmware/ILITEK_FW:$(TARGET_COPY_OUT_RECOVERY)/root/vendor/firmware/ILITEK_FW \
vendor/motorola/cancunf/proprietary/vendor/firmware/NT36xxx_MP_Setting_Criteria_606B.csv:$(TARGET_COPY_OUT_VENDOR)/firmware/NT36xxx_MP_Setting_Criteria_606B.csv \
vendor/motorola/cancunf/proprietary/recovery/root/vendor/firmware/NT36xxx_MP_Setting_Criteria_606B.csv:$(TARGET_COPY_OUT_RECOVERY)/root/vendor/firmware/NT36xxx_MP_Setting_Criteria_606B.csv \
vendor/motorola/cancunf/proprietary/vendor/firmware/WIFI_RAM_CODE_soc2_2_1b_1.bin:$(TARGET_COPY_OUT_VENDOR)/firmware/WIFI_RAM_CODE_soc2_2_1b_1.bin \
vendor/motorola/cancunf/proprietary/vendor/firmware/WIFI_RAM_CODE_soc2_2_1c_1.bin:$(TARGET_COPY_OUT_VENDOR)/firmware/WIFI_RAM_CODE_soc2_2_1c_1.bin \
vendor/motorola/cancunf/proprietary/vendor/firmware/WMT_SOC.cfg:$(TARGET_COPY_OUT_VENDOR)/firmware/WMT_SOC.cfg \
vendor/motorola/cancunf/proprietary/vendor/firmware/WMT_SOC_CANCUNF.cfg:$(TARGET_COPY_OUT_VENDOR)/firmware/WMT_SOC_CANCUNF.cfg \
vendor/motorola/cancunf/proprietary/vendor/firmware/WMT_SOC_CANCUNN_FEM.cfg:$(TARGET_COPY_OUT_VENDOR)/firmware/WMT_SOC_CANCUNN_FEM.cfg \
vendor/motorola/cancunf/proprietary/vendor/firmware/WMT_SOC_devonn_epa.cfg:$(TARGET_COPY_OUT_VENDOR)/firmware/WMT_SOC_devonn_epa.cfg \
vendor/motorola/cancunf/proprietary/vendor/firmware/aw86006.prog:$(TARGET_COPY_OUT_VENDOR)/firmware/aw86006.prog \
vendor/motorola/cancunf/proprietary/vendor/firmware/aw86006vcmyova.prog:$(TARGET_COPY_OUT_VENDOR)/firmware/aw86006vcmyova.prog \
vendor/motorola/cancunf/proprietary/vendor/firmware/aw87xxx_acf.bin:$(TARGET_COPY_OUT_VENDOR)/firmware/aw87xxx_acf.bin \
vendor/motorola/cancunf/proprietary/vendor/firmware/cps4035.bin:$(TARGET_COPY_OUT_VENDOR)/firmware/cps4035.bin \
vendor/motorola/cancunf/proprietary/vendor/firmware/fm_cust.cfg:$(TARGET_COPY_OUT_VENDOR)/firmware/fm_cust.cfg \
vendor/motorola/cancunf/proprietary/vendor/firmware/focaltech_ts_fw_csot.bin:$(TARGET_COPY_OUT_VENDOR)/firmware/focaltech_ts_fw_csot.bin \
vendor/motorola/cancunf/proprietary/recovery/root/vendor/firmware/focaltech_ts_fw_csot.bin:$(TARGET_COPY_OUT_RECOVERY)/root/vendor/firmware/focaltech_ts_fw_csot.bin \
vendor/motorola/cancunf/proprietary/vendor/firmware/focaltech_ts_fw_csot_ft8725.bin:$(TARGET_COPY_OUT_VENDOR)/firmware/focaltech_ts_fw_csot_ft8725.bin \
vendor/motorola/cancunf/proprietary/recovery/root/vendor/firmware/focaltech_ts_fw_csot_ft8725.bin:$(TARGET_COPY_OUT_RECOVERY)/root/vendor/firmware/focaltech_ts_fw_csot_ft8725.bin \
vendor/motorola/cancunf/proprietary/vendor/firmware/mt6627_fm_v1_coeff.bin:$(TARGET_COPY_OUT_VENDOR)/firmware/mt6627_fm_v1_coeff.bin \
vendor/motorola/cancunf/proprietary/vendor/firmware/mt6627_fm_v1_patch.bin:$(TARGET_COPY_OUT_VENDOR)/firmware/mt6627_fm_v1_patch.bin \
vendor/motorola/cancunf/proprietary/vendor/firmware/mt6630_fm_v1_coeff.bin:$(TARGET_COPY_OUT_VENDOR)/firmware/mt6630_fm_v1_coeff.bin \
vendor/motorola/cancunf/proprietary/vendor/firmware/mt6630_fm_v1_patch.bin:$(TARGET_COPY_OUT_VENDOR)/firmware/mt6630_fm_v1_patch.bin \
vendor/motorola/cancunf/proprietary/vendor/firmware/mt6630_fm_v2_coeff.bin:$(TARGET_COPY_OUT_VENDOR)/firmware/mt6630_fm_v2_coeff.bin \
vendor/motorola/cancunf/proprietary/vendor/firmware/mt6630_fm_v2_coeff_tx.bin:$(TARGET_COPY_OUT_VENDOR)/firmware/mt6630_fm_v2_coeff_tx.bin \
vendor/motorola/cancunf/proprietary/vendor/firmware/mt6630_fm_v2_patch.bin:$(TARGET_COPY_OUT_VENDOR)/firmware/mt6630_fm_v2_patch.bin \
vendor/motorola/cancunf/proprietary/vendor/firmware/mt6630_fm_v2_patch_tx.bin:$(TARGET_COPY_OUT_VENDOR)/firmware/mt6630_fm_v2_patch_tx.bin \
vendor/motorola/cancunf/proprietary/vendor/firmware/mt6631_fm_v1_coeff.bin:$(TARGET_COPY_OUT_VENDOR)/firmware/mt6631_fm_v1_coeff.bin \
vendor/motorola/cancunf/proprietary/vendor/firmware/mt6631_fm_v1_patch.bin:$(TARGET_COPY_OUT_VENDOR)/firmware/mt6631_fm_v1_patch.bin \
vendor/motorola/cancunf/proprietary/vendor/firmware/mt6632_fm_v1_coeff.bin:$(TARGET_COPY_OUT_VENDOR)/firmware/mt6632_fm_v1_coeff.bin \
vendor/motorola/cancunf/proprietary/vendor/firmware/mt6632_fm_v1_patch.bin:$(TARGET_COPY_OUT_VENDOR)/firmware/mt6632_fm_v1_patch.bin \
vendor/motorola/cancunf/proprietary/vendor/firmware/mt6635_fm_v1_coeff.bin:$(TARGET_COPY_OUT_VENDOR)/firmware/mt6635_fm_v1_coeff.bin \
vendor/motorola/cancunf/proprietary/vendor/firmware/mt6635_fm_v1_patch.bin:$(TARGET_COPY_OUT_VENDOR)/firmware/mt6635_fm_v1_patch.bin \
vendor/motorola/cancunf/proprietary/vendor/firmware/novatek_ts_fw.bin:$(TARGET_COPY_OUT_VENDOR)/firmware/novatek_ts_fw.bin \
vendor/motorola/cancunf/proprietary/recovery/root/vendor/firmware/novatek_ts_fw.bin:$(TARGET_COPY_OUT_RECOVERY)/root/vendor/firmware/novatek_ts_fw.bin \
vendor/motorola/cancunf/proprietary/vendor/firmware/novatek_ts_mp.bin:$(TARGET_COPY_OUT_VENDOR)/firmware/novatek_ts_mp.bin \
vendor/motorola/cancunf/proprietary/recovery/root/vendor/firmware/novatek_ts_mp.bin:$(TARGET_COPY_OUT_RECOVERY)/root/vendor/firmware/novatek_ts_mp.bin \
vendor/motorola/cancunf/proprietary/vendor/firmware/remoteproc_scp:$(TARGET_COPY_OUT_VENDOR)/firmware/remoteproc_scp \
vendor/motorola/cancunf/proprietary/vendor/firmware/rgx.fw:$(TARGET_COPY_OUT_VENDOR)/firmware/rgx.fw \
vendor/motorola/cancunf/proprietary/vendor/firmware/rgx.sh:$(TARGET_COPY_OUT_VENDOR)/firmware/rgx.sh \
vendor/motorola/cancunf/proprietary/vendor/firmware/sec_s3nrn4v_firmware.bin:$(TARGET_COPY_OUT_VENDOR)/firmware/sec_s3nrn4v_firmware.bin \
vendor/motorola/cancunf/proprietary/vendor/firmware/soc2_2_ram_bt_1b_1_hdr.bin:$(TARGET_COPY_OUT_VENDOR)/firmware/soc2_2_ram_bt_1b_1_hdr.bin \
vendor/motorola/cancunf/proprietary/vendor/firmware/soc2_2_ram_bt_1c_1_hdr.bin:$(TARGET_COPY_OUT_VENDOR)/firmware/soc2_2_ram_bt_1c_1_hdr.bin \
vendor/motorola/cancunf/proprietary/vendor/firmware/soc2_2_ram_mcu_1b_1_hdr.bin:$(TARGET_COPY_OUT_VENDOR)/firmware/soc2_2_ram_mcu_1b_1_hdr.bin \
vendor/motorola/cancunf/proprietary/vendor/firmware/soc2_2_ram_mcu_1c_1_hdr.bin:$(TARGET_COPY_OUT_VENDOR)/firmware/soc2_2_ram_mcu_1c_1_hdr.bin \
vendor/motorola/cancunf/proprietary/vendor/firmware/soc2_2_ram_wifi_1b_1_hdr.bin:$(TARGET_COPY_OUT_VENDOR)/firmware/soc2_2_ram_wifi_1b_1_hdr.bin \
vendor/motorola/cancunf/proprietary/vendor/firmware/soc2_2_ram_wifi_1c_1_hdr.bin:$(TARGET_COPY_OUT_VENDOR)/firmware/soc2_2_ram_wifi_1c_1_hdr.bin \
vendor/motorola/cancunf/proprietary/vendor/firmware/soc_fm_v1_coeff.bin:$(TARGET_COPY_OUT_VENDOR)/firmware/soc_fm_v1_coeff.bin \
vendor/motorola/cancunf/proprietary/vendor/firmware/soc_fm_v1_patch.bin:$(TARGET_COPY_OUT_VENDOR)/firmware/soc_fm_v1_patch.bin \
vendor/motorola/cancunf/proprietary/vendor/firmware/txpowerctrl.cfg:$(TARGET_COPY_OUT_VENDOR)/firmware/txpowerctrl.cfg \
vendor/motorola/cancunf/proprietary/vendor/firmware/valhall-1691526.wa:$(TARGET_COPY_OUT_VENDOR)/firmware/valhall-1691526.wa \
vendor/motorola/cancunf/proprietary/vendor/firmware/wifi.cfg:$(TARGET_COPY_OUT_VENDOR)/firmware/wifi.cfg \
vendor/motorola/cancunf/proprietary/vendor/lib/egl/egl.cfg:$(TARGET_COPY_OUT_VENDOR)/lib/egl/egl.cfg \
vendor/motorola/cancunf/proprietary/vendor/lib64/arcsoft_portrait_super_night_se_raw.bin:$(TARGET_COPY_OUT_VENDOR)/lib64/arcsoft_portrait_super_night_se_raw.bin \
vendor/motorola/cancunf/proprietary/vendor/lib64/super_night_raw.bin:$(TARGET_COPY_OUT_VENDOR)/lib64/super_night_raw.bin
PRODUCT_PACKAGES += \
AVCSecureVdecCA \
HEVCSecureVdecCA \
VP9SecureVdecCA \
libGLES_meow \
libMEOW_data \
libMEOW_gift \
libMEOW_qt \
libMEOW_trace \
libEGL_mtk \
libGLESv1_CM_mtk \
libGLESv2_mtk \
motorola.hardware.camera.imgtuner@2.0-impl \
android.hardware.graphics.mapper@4.0-impl-mediatek \
gralloc.rogue \
vendor.mediatek.hardware.camera.atms@1.0-impl \
vendor.mediatek.hardware.camera.bgservice@1.1-impl \
vendor.mediatek.hardware.pq@2.15-impl \
vulkan.mtk \
sound_trigger.primary.default \
vendor.mediatek.hardware.mms@1.6-impl \
vendor.mediatek.hardware.nvram@1.1-impl \
libAVCSecureVencCA \
libCamera_motcancunfhi1634qmipiraw_ArcSoft_Raw_NV_Capture \
libCamera_motcancunfhi1634qmipiraw_ArcSoft_Raw_NV_Capture_flash \
libCamera_motcancunfhi1634qmipiraw_ArcSoft_Raw_NV_Preview \
libCamera_motcancunfhi1634qmipiraw_ArcSoft_Raw_NV_Preview_flash \
libCamera_motcancunfhi1634qmipiraw_Display_Flash_Capture \
libCamera_motcancunfhi1634qmipiraw_E2EHDR_Preview \
libCamera_motcancunfhi1634qmipiraw_E2EHDR_Video \
libCamera_motcancunfhi1634qmipiraw_EIS_Slow_Motion \
libCamera_motcancunfhi1634qmipiraw_EIS_Slow_Motion_2X \
libCamera_motcancunfhi1634qmipiraw_EIS_Video_1080 \
libCamera_motcancunfhi1634qmipiraw_EIS_Video_1080_2X \
libCamera_motcancunfhi1634qmipiraw_EIS_Video_1080_4X \
libCamera_motcancunfhi1634qmipiraw_EIS_Video_1080_8X \
libCamera_motcancunfhi1634qmipiraw_Face_Capture \
libCamera_motcancunfhi1634qmipiraw_Face_Capture_4cell \
libCamera_motcancunfhi1634qmipiraw_Face_Preview_ZSD \
libCamera_motcancunfhi1634qmipiraw_ITS_Capture \
libCamera_motcancunfhi1634qmipiraw_LLHDR_Capture \
libCamera_motcancunfhi1634qmipiraw_LLHDR_Face_Capture \
libCamera_motcancunfhi1634qmipiraw_P1_YUV \
libCamera_motcancunfhi1634qmipiraw_Panorama \
libCamera_motcancunfhi1634qmipiraw_Scene_3rd_party_Capture \
libCamera_motcancunfhi1634qmipiraw_Scene_3rd_party_Capture_HDR \
libCamera_motcancunfhi1634qmipiraw_Scene_3rd_party_Preview \
libCamera_motcancunfhi1634qmipiraw_Scene_3rd_party_Videocall \
libCamera_motcancunfhi1634qmipiraw_Scene_Capture \
libCamera_motcancunfhi1634qmipiraw_Scene_Capture_4cell \
libCamera_motcancunfhi1634qmipiraw_Scene_Preview \
libCamera_motcancunfhi1634qmipiraw_Scene_Preview_ZSD \
libCamera_motcancunfhi1634qmipiraw_Scene_YUV_Reprocess \
libCamera_motcancunfhi1634qmipiraw_Slow_Motion \
libCamera_motcancunfhi1634qmipiraw_Slow_Motion_2X \
libCamera_motcancunfhi1634qmipiraw_Video_1080 \
libCamera_motcancunfhi1634qmipiraw_Video_1080_2X \
libCamera_motcancunfhi1634qmipiraw_Video_1080_4X \
libCamera_motcancunfhi1634qmipiraw_Video_1080_8X \
libCamera_motcancunfhi1634qmipiraw_Video_Capture \
libCamera_motcancunfhi1634qmipiraw_Video_Capture_2X \
libCamera_motcancunfhi1634qmipiraw_Video_Capture_4X \
libCamera_motcancunfhi1634qmipiraw_Video_Capture_8X \
libCamera_motcancunfhi1634qmipiraw_Zoom_Capture_2X \
libCamera_motcancunfhi1634qmipiraw_Zoom_Capture_4X \
libCamera_motcancunfhi1634qmipiraw_Zoom_Capture_8X \
libCamera_motcancunfhi1634qmipiraw_Zoom_Preview_2X \
libCamera_motcancunfhi1634qmipiraw_Zoom_Preview_4X \
libCamera_motcancunfhi1634qmipiraw_Zoom_Preview_8X \
libCamera_motcancunfhi1634qmipirawrow_ArcSoft_Raw_NV_Capture \
libCamera_motcancunfhi1634qmipirawrow_ArcSoft_Raw_NV_Capture_flash \
libCamera_motcancunfhi1634qmipirawrow_ArcSoft_Raw_NV_Preview \
libCamera_motcancunfhi1634qmipirawrow_ArcSoft_Raw_NV_Preview_flash \
libCamera_motcancunfhi1634qmipirawrow_Display_Flash_Capture \
libCamera_motcancunfhi1634qmipirawrow_E2EHDR_Preview \
libCamera_motcancunfhi1634qmipirawrow_E2EHDR_Video \
libCamera_motcancunfhi1634qmipirawrow_EIS_Slow_Motion \
libCamera_motcancunfhi1634qmipirawrow_EIS_Slow_Motion_2X \
libCamera_motcancunfhi1634qmipirawrow_EIS_Video_1080 \
libCamera_motcancunfhi1634qmipirawrow_EIS_Video_1080_2X \
libCamera_motcancunfhi1634qmipirawrow_EIS_Video_1080_4X \
libCamera_motcancunfhi1634qmipirawrow_EIS_Video_1080_8X \
libCamera_motcancunfhi1634qmipirawrow_Face_Capture \
libCamera_motcancunfhi1634qmipirawrow_Face_Capture_4cell \
libCamera_motcancunfhi1634qmipirawrow_Face_Preview_ZSD \
libCamera_motcancunfhi1634qmipirawrow_ITS_Capture \
libCamera_motcancunfhi1634qmipirawrow_LLHDR_Capture \
libCamera_motcancunfhi1634qmipirawrow_LLHDR_Face_Capture \
libCamera_motcancunfhi1634qmipirawrow_P1_YUV \
libCamera_motcancunfhi1634qmipirawrow_Panorama \
libCamera_motcancunfhi1634qmipirawrow_Scene_3rd_party_Capture \
libCamera_motcancunfhi1634qmipirawrow_Scene_3rd_party_Capture_HDR \
libCamera_motcancunfhi1634qmipirawrow_Scene_3rd_party_Preview \
libCamera_motcancunfhi1634qmipirawrow_Scene_3rd_party_Videocall \
libCamera_motcancunfhi1634qmipirawrow_Scene_Capture \
libCamera_motcancunfhi1634qmipirawrow_Scene_Capture_4cell \
libCamera_motcancunfhi1634qmipirawrow_Scene_Preview \
libCamera_motcancunfhi1634qmipirawrow_Scene_Preview_ZSD \
libCamera_motcancunfhi1634qmipirawrow_Scene_YUV_Reprocess \
libCamera_motcancunfhi1634qmipirawrow_Slow_Motion \
libCamera_motcancunfhi1634qmipirawrow_Slow_Motion_2X \
libCamera_motcancunfhi1634qmipirawrow_Video_1080 \
libCamera_motcancunfhi1634qmipirawrow_Video_1080_2X \
libCamera_motcancunfhi1634qmipirawrow_Video_1080_4X \
libCamera_motcancunfhi1634qmipirawrow_Video_1080_8X \
libCamera_motcancunfhi1634qmipirawrow_Video_Capture \
libCamera_motcancunfhi1634qmipirawrow_Video_Capture_2X \
libCamera_motcancunfhi1634qmipirawrow_Video_Capture_4X \
libCamera_motcancunfhi1634qmipirawrow_Video_Capture_8X \
libCamera_motcancunfhi1634qmipirawrow_Zoom_Capture_2X \
libCamera_motcancunfhi1634qmipirawrow_Zoom_Capture_4X \
libCamera_motcancunfhi1634qmipirawrow_Zoom_Capture_8X \
libCamera_motcancunfhi1634qmipirawrow_Zoom_Preview_2X \
libCamera_motcancunfhi1634qmipirawrow_Zoom_Preview_4X \
libCamera_motcancunfhi1634qmipirawrow_Zoom_Preview_8X \
libCamera_motcancunfjnsyovamipiraw_ArcSoft_Raw_NV_Capture \
libCamera_motcancunfjnsyovamipiraw_ArcSoft_Raw_NV_FaceCapture \
libCamera_motcancunfjnsyovamipiraw_ArcSoft_Raw_NV_Preview \
libCamera_motcancunfjnsyovamipiraw_Bokeh_Capture_Face_HDR \
libCamera_motcancunfjnsyovamipiraw_Bokeh_Capture_HDR \
libCamera_motcancunfjnsyovamipiraw_E2EHDR_Preview \
libCamera_motcancunfjnsyovamipiraw_E2EHDR_Video \
libCamera_motcancunfjnsyovamipiraw_EIS_Slow_Motion \
libCamera_motcancunfjnsyovamipiraw_EIS_Slow_Motion_2X \
libCamera_motcancunfjnsyovamipiraw_EIS_Video_1080 \
libCamera_motcancunfjnsyovamipiraw_EIS_Video_1080_2X \
libCamera_motcancunfjnsyovamipiraw_EIS_Video_1080_4X \
libCamera_motcancunfjnsyovamipiraw_EIS_Video_1080_8X \
libCamera_motcancunfjnsyovamipiraw_Face_Capture \
libCamera_motcancunfjnsyovamipiraw_Face_Capture_4cell \
libCamera_motcancunfjnsyovamipiraw_Face_Preview_ZSD \
libCamera_motcancunfjnsyovamipiraw_Flash_Capture \
libCamera_motcancunfjnsyovamipiraw_ITS_Capture \
libCamera_motcancunfjnsyovamipiraw_LLHDR_Capture \
libCamera_motcancunfjnsyovamipiraw_LLHDR_Face_Capture \
libCamera_motcancunfjnsyovamipiraw_Night_Vision_Capture \
libCamera_motcancunfjnsyovamipiraw_Night_Vision_FaceCapture \
libCamera_motcancunfjnsyovamipiraw_Night_Vision_FacePreview \
libCamera_motcancunfjnsyovamipiraw_Night_Vision_Preview \
libCamera_motcancunfjnsyovamipiraw_P1_YUV \
libCamera_motcancunfjnsyovamipiraw_Panorama \
libCamera_motcancunfjnsyovamipiraw_SR_Zoom_Capture \
libCamera_motcancunfjnsyovamipiraw_Scene_3rd_party_Capture \
libCamera_motcancunfjnsyovamipiraw_Scene_3rd_party_Capture_HDR \
libCamera_motcancunfjnsyovamipiraw_Scene_3rd_party_Preview \
libCamera_motcancunfjnsyovamipiraw_Scene_3rd_party_ZOOM \
libCamera_motcancunfjnsyovamipiraw_Scene_3rd_party_videocall \
libCamera_motcancunfjnsyovamipiraw_Scene_Capture \
libCamera_motcancunfjnsyovamipiraw_Scene_Capture_4cell \
libCamera_motcancunfjnsyovamipiraw_Scene_Preview \
libCamera_motcancunfjnsyovamipiraw_Scene_Preview_ZSD \
libCamera_motcancunfjnsyovamipiraw_Scene_YUV_Reprocess \
libCamera_motcancunfjnsyovamipiraw_Slow_Motion \
libCamera_motcancunfjnsyovamipiraw_Slow_Motion_2X \
libCamera_motcancunfjnsyovamipiraw_Video_1080 \
libCamera_motcancunfjnsyovamipiraw_Video_1080_2X \
libCamera_motcancunfjnsyovamipiraw_Video_1080_4X \
libCamera_motcancunfjnsyovamipiraw_Video_1080_8X \
libCamera_motcancunfjnsyovamipiraw_Video_Capture \
libCamera_motcancunfjnsyovamipiraw_Video_Capture_2X \
libCamera_motcancunfjnsyovamipiraw_Video_Capture_4X \
libCamera_motcancunfjnsyovamipiraw_Video_Capture_8X \
libCamera_motcancunfjnsyovamipiraw_Zoom_Capture_2X \
libCamera_motcancunfjnsyovamipiraw_Zoom_Capture_4X \
libCamera_motcancunfjnsyovamipiraw_Zoom_Capture_8X \
libCamera_motcancunfjnsyovamipiraw_Zoom_Preview_2X \
libCamera_motcancunfjnsyovamipiraw_Zoom_Preview_4X \
libCamera_motcancunfjnsyovamipiraw_Zoom_Preview_8X \
libCamera_motcancunfjnsyovamipirawrow_ArcSoft_Raw_NV_Capture \
libCamera_motcancunfjnsyovamipirawrow_ArcSoft_Raw_NV_FaceCapture \
libCamera_motcancunfjnsyovamipirawrow_ArcSoft_Raw_NV_Preview \
libCamera_motcancunfjnsyovamipirawrow_Bokeh_Capture_Face_HDR \
libCamera_motcancunfjnsyovamipirawrow_Bokeh_Capture_HDR \
libCamera_motcancunfjnsyovamipirawrow_E2EHDR_Preview \
libCamera_motcancunfjnsyovamipirawrow_E2EHDR_Video \
libCamera_motcancunfjnsyovamipirawrow_EIS_Slow_Motion \
libCamera_motcancunfjnsyovamipirawrow_EIS_Slow_Motion_2X \
libCamera_motcancunfjnsyovamipirawrow_EIS_Video_1080 \
libCamera_motcancunfjnsyovamipirawrow_EIS_Video_1080_2X \
libCamera_motcancunfjnsyovamipirawrow_EIS_Video_1080_4X \
libCamera_motcancunfjnsyovamipirawrow_EIS_Video_1080_8X \
libCamera_motcancunfjnsyovamipirawrow_Face_Capture \
libCamera_motcancunfjnsyovamipirawrow_Face_Capture_4cell \
libCamera_motcancunfjnsyovamipirawrow_Face_Preview_ZSD \
libCamera_motcancunfjnsyovamipirawrow_Flash_Capture \
libCamera_motcancunfjnsyovamipirawrow_ITS_Capture \
libCamera_motcancunfjnsyovamipirawrow_LLHDR_Capture \
libCamera_motcancunfjnsyovamipirawrow_LLHDR_Face_Capture \
libCamera_motcancunfjnsyovamipirawrow_Night_Vision_Capture \
libCamera_motcancunfjnsyovamipirawrow_Night_Vision_FaceCapture \
libCamera_motcancunfjnsyovamipirawrow_Night_Vision_FacePreview \
libCamera_motcancunfjnsyovamipirawrow_Night_Vision_Preview \
libCamera_motcancunfjnsyovamipirawrow_P1_YUV \
libCamera_motcancunfjnsyovamipirawrow_Panorama \
libCamera_motcancunfjnsyovamipirawrow_SR_Zoom_Capture \
libCamera_motcancunfjnsyovamipirawrow_Scene_3rd_party_Capture \
libCamera_motcancunfjnsyovamipirawrow_Scene_3rd_party_Capture_HDR \
libCamera_motcancunfjnsyovamipirawrow_Scene_3rd_party_Preview \
libCamera_motcancunfjnsyovamipirawrow_Scene_3rd_party_ZOOM \
libCamera_motcancunfjnsyovamipirawrow_Scene_3rd_party_videocall \
libCamera_motcancunfjnsyovamipirawrow_Scene_Capture \
libCamera_motcancunfjnsyovamipirawrow_Scene_Capture_4cell \
libCamera_motcancunfjnsyovamipirawrow_Scene_Preview \
libCamera_motcancunfjnsyovamipirawrow_Scene_Preview_ZSD \
libCamera_motcancunfjnsyovamipirawrow_Scene_YUV_Reprocess \
libCamera_motcancunfjnsyovamipirawrow_Slow_Motion \
libCamera_motcancunfjnsyovamipirawrow_Slow_Motion_2X \
libCamera_motcancunfjnsyovamipirawrow_Video_1080 \
libCamera_motcancunfjnsyovamipirawrow_Video_1080_2X \
libCamera_motcancunfjnsyovamipirawrow_Video_1080_4X \
libCamera_motcancunfjnsyovamipirawrow_Video_1080_8X \
libCamera_motcancunfjnsyovamipirawrow_Video_Capture \
libCamera_motcancunfjnsyovamipirawrow_Video_Capture_2X \
libCamera_motcancunfjnsyovamipirawrow_Video_Capture_4X \
libCamera_motcancunfjnsyovamipirawrow_Video_Capture_8X \
libCamera_motcancunfjnsyovamipirawrow_Zoom_Capture_2X \
libCamera_motcancunfjnsyovamipirawrow_Zoom_Capture_4X \
libCamera_motcancunfjnsyovamipirawrow_Zoom_Capture_8X \
libCamera_motcancunfjnsyovamipirawrow_Zoom_Preview_2X \
libCamera_motcancunfjnsyovamipirawrow_Zoom_Preview_4X \
libCamera_motcancunfjnsyovamipirawrow_Zoom_Preview_8X \
libCamera_motcancunfov50dmipiraw_ArcSoft_Raw_NV_Capture \
libCamera_motcancunfov50dmipiraw_ArcSoft_Raw_NV_FaceCapture \
libCamera_motcancunfov50dmipiraw_ArcSoft_Raw_NV_Preview \
libCamera_motcancunfov50dmipiraw_Bokeh_Capture_Face_HDR \
libCamera_motcancunfov50dmipiraw_Bokeh_Capture_HDR \
libCamera_motcancunfov50dmipiraw_E2EHDR_Preview \
libCamera_motcancunfov50dmipiraw_E2EHDR_Video \
libCamera_motcancunfov50dmipiraw_EIS_Slow_Motion \
libCamera_motcancunfov50dmipiraw_EIS_Slow_Motion_2X \
libCamera_motcancunfov50dmipiraw_EIS_Video_1080 \
libCamera_motcancunfov50dmipiraw_EIS_Video_1080_2X \
libCamera_motcancunfov50dmipiraw_EIS_Video_1080_4X \
libCamera_motcancunfov50dmipiraw_EIS_Video_1080_8X \
libCamera_motcancunfov50dmipiraw_Face_Capture \
libCamera_motcancunfov50dmipiraw_Face_Capture_4cell \
libCamera_motcancunfov50dmipiraw_Face_Preview_ZSD \
libCamera_motcancunfov50dmipiraw_Flash_Capture \
libCamera_motcancunfov50dmipiraw_ITS_Capture \
libCamera_motcancunfov50dmipiraw_LLHDR_Capture \
libCamera_motcancunfov50dmipiraw_LLHDR_Face_Capture \
libCamera_motcancunfov50dmipiraw_Night_Vision_Capture \
libCamera_motcancunfov50dmipiraw_Night_Vision_FaceCapture \
libCamera_motcancunfov50dmipiraw_Night_Vision_Preview \
libCamera_motcancunfov50dmipiraw_P1_YUV \
libCamera_motcancunfov50dmipiraw_Panorama \
libCamera_motcancunfov50dmipiraw_SR_Zoom_Capture \
libCamera_motcancunfov50dmipiraw_Scene_3rd_party_Capture \
libCamera_motcancunfov50dmipiraw_Scene_3rd_party_Capture_HDR \
libCamera_motcancunfov50dmipiraw_Scene_3rd_party_Capture_SlimVideo2 \
libCamera_motcancunfov50dmipiraw_Scene_3rd_party_Preview \
libCamera_motcancunfov50dmipiraw_Scene_3rd_party_ZOOM \
libCamera_motcancunfov50dmipiraw_Scene_3rd_party_videocall \
libCamera_motcancunfov50dmipiraw_Scene_Capture \
libCamera_motcancunfov50dmipiraw_Scene_Capture_4cell \
libCamera_motcancunfov50dmipiraw_Scene_Preview \
libCamera_motcancunfov50dmipiraw_Scene_Preview_ZSD \
libCamera_motcancunfov50dmipiraw_Scene_YUV_Reprocess \
libCamera_motcancunfov50dmipiraw_Slow_Motion \
libCamera_motcancunfov50dmipiraw_Slow_Motion_2X \
libCamera_motcancunfov50dmipiraw_Video_1080 \
libCamera_motcancunfov50dmipiraw_Video_1080_2X \
libCamera_motcancunfov50dmipiraw_Video_1080_4X \
libCamera_motcancunfov50dmipiraw_Video_1080_8X \
libCamera_motcancunfov50dmipiraw_Video_Capture \
libCamera_motcancunfov50dmipiraw_Video_Capture_2X \
libCamera_motcancunfov50dmipiraw_Video_Capture_4X \
libCamera_motcancunfov50dmipiraw_Video_Capture_8X \
libCamera_motcancunfov50dmipiraw_Zoom_Capture_2X \
libCamera_motcancunfov50dmipiraw_Zoom_Capture_4X \
libCamera_motcancunfov50dmipiraw_Zoom_Capture_8X \
libCamera_motcancunfov50dmipiraw_Zoom_Preview_2X \
libCamera_motcancunfov50dmipiraw_Zoom_Preview_4X \
libCamera_motcancunfov50dmipiraw_Zoom_Preview_8X \
libCamera_motcancunfov50dmipirawrow_ArcSoft_Raw_NV_Capture \
libCamera_motcancunfov50dmipirawrow_ArcSoft_Raw_NV_FaceCapture \
libCamera_motcancunfov50dmipirawrow_ArcSoft_Raw_NV_Preview \
libCamera_motcancunfov50dmipirawrow_Bokeh_Capture_Face_HDR \
libCamera_motcancunfov50dmipirawrow_Bokeh_Capture_HDR \
libCamera_motcancunfov50dmipirawrow_E2EHDR_Preview \
libCamera_motcancunfov50dmipirawrow_E2EHDR_Video \
libCamera_motcancunfov50dmipirawrow_EIS_Slow_Motion \
libCamera_motcancunfov50dmipirawrow_EIS_Slow_Motion_2X \
libCamera_motcancunfov50dmipirawrow_EIS_Video_1080 \
libCamera_motcancunfov50dmipirawrow_EIS_Video_1080_2X \
libCamera_motcancunfov50dmipirawrow_EIS_Video_1080_4X \
libCamera_motcancunfov50dmipirawrow_EIS_Video_1080_8X \
libCamera_motcancunfov50dmipirawrow_Face_Capture \
libCamera_motcancunfov50dmipirawrow_Face_Capture_4cell \
libCamera_motcancunfov50dmipirawrow_Face_Preview_ZSD \
libCamera_motcancunfov50dmipirawrow_Flash_Capture \
libCamera_motcancunfov50dmipirawrow_ITS_Capture \
libCamera_motcancunfov50dmipirawrow_LLHDR_Capture \
libCamera_motcancunfov50dmipirawrow_LLHDR_Face_Capture \
libCamera_motcancunfov50dmipirawrow_Night_Vision_Capture \
libCamera_motcancunfov50dmipirawrow_Night_Vision_FaceCapture \
libCamera_motcancunfov50dmipirawrow_Night_Vision_Preview \
libCamera_motcancunfov50dmipirawrow_P1_YUV \
libCamera_motcancunfov50dmipirawrow_Panorama \
libCamera_motcancunfov50dmipirawrow_SR_Zoom_Capture \
libCamera_motcancunfov50dmipirawrow_Scene_3rd_party_Capture \
libCamera_motcancunfov50dmipirawrow_Scene_3rd_party_Capture_HDR \
libCamera_motcancunfov50dmipirawrow_Scene_3rd_party_Capture_SlimVideo2 \
libCamera_motcancunfov50dmipirawrow_Scene_3rd_party_Preview \
libCamera_motcancunfov50dmipirawrow_Scene_3rd_party_ZOOM \
libCamera_motcancunfov50dmipirawrow_Scene_3rd_party_videocall \
libCamera_motcancunfov50dmipirawrow_Scene_Capture \
libCamera_motcancunfov50dmipirawrow_Scene_Capture_4cell \
libCamera_motcancunfov50dmipirawrow_Scene_Preview \
libCamera_motcancunfov50dmipirawrow_Scene_Preview_ZSD \
libCamera_motcancunfov50dmipirawrow_Scene_YUV_Reprocess \
libCamera_motcancunfov50dmipirawrow_Slow_Motion \
libCamera_motcancunfov50dmipirawrow_Slow_Motion_2X \
libCamera_motcancunfov50dmipirawrow_Video_1080 \
libCamera_motcancunfov50dmipirawrow_Video_1080_2X \
libCamera_motcancunfov50dmipirawrow_Video_1080_4X \
libCamera_motcancunfov50dmipirawrow_Video_1080_8X \
libCamera_motcancunfov50dmipirawrow_Video_Capture \
libCamera_motcancunfov50dmipirawrow_Video_Capture_2X \
libCamera_motcancunfov50dmipirawrow_Video_Capture_4X \
libCamera_motcancunfov50dmipirawrow_Video_Capture_8X \
libCamera_motcancunfov50dmipirawrow_Zoom_Capture_2X \
libCamera_motcancunfov50dmipirawrow_Zoom_Capture_4X \
libCamera_motcancunfov50dmipirawrow_Zoom_Capture_8X \
libCamera_motcancunfov50dmipirawrow_Zoom_Preview_2X \
libCamera_motcancunfov50dmipirawrow_Zoom_Preview_4X \
libCamera_motcancunfov50dmipirawrow_Zoom_Preview_8X \
libCamera_motcancunfs5k3p9sp04mipiraw_ArcSoft_Raw_NV_Capture \
libCamera_motcancunfs5k3p9sp04mipiraw_ArcSoft_Raw_NV_Capture_flash \
libCamera_motcancunfs5k3p9sp04mipiraw_ArcSoft_Raw_NV_Preview \
libCamera_motcancunfs5k3p9sp04mipiraw_ArcSoft_Raw_NV_Preview_flash \
libCamera_motcancunfs5k3p9sp04mipiraw_Bokeh_Capture_HDR \
libCamera_motcancunfs5k3p9sp04mipiraw_Display_Flash_Big_Face_Capture \
libCamera_motcancunfs5k3p9sp04mipiraw_Display_Flash_Capture \
libCamera_motcancunfs5k3p9sp04mipiraw_E2EHDR_Preview \
libCamera_motcancunfs5k3p9sp04mipiraw_E2EHDR_Video \
libCamera_motcancunfs5k3p9sp04mipiraw_EIS_Slow_Motion \
libCamera_motcancunfs5k3p9sp04mipiraw_EIS_Video_1080 \
libCamera_motcancunfs5k3p9sp04mipiraw_EIS_Video_1080_2X \
libCamera_motcancunfs5k3p9sp04mipiraw_EIS_Video_1080_4X \
libCamera_motcancunfs5k3p9sp04mipiraw_EIS_Video_1080_8X \
libCamera_motcancunfs5k3p9sp04mipiraw_Face_Capture \
libCamera_motcancunfs5k3p9sp04mipiraw_Face_Capture_4cell \
libCamera_motcancunfs5k3p9sp04mipiraw_Face_Preview_ZSD \
libCamera_motcancunfs5k3p9sp04mipiraw_ITS_Capture \
libCamera_motcancunfs5k3p9sp04mipiraw_LLHDR_Capture \
libCamera_motcancunfs5k3p9sp04mipiraw_LLHDR_Face_Capture \
libCamera_motcancunfs5k3p9sp04mipiraw_P1_YUV \
libCamera_motcancunfs5k3p9sp04mipiraw_Panorama \
libCamera_motcancunfs5k3p9sp04mipiraw_Scene_3rd_party_Capture \
libCamera_motcancunfs5k3p9sp04mipiraw_Scene_3rd_party_Capture_HDR \
libCamera_motcancunfs5k3p9sp04mipiraw_Scene_3rd_party_Preview \
libCamera_motcancunfs5k3p9sp04mipiraw_Scene_3rd_party_Videocall \
libCamera_motcancunfs5k3p9sp04mipiraw_Scene_Capture \
libCamera_motcancunfs5k3p9sp04mipiraw_Scene_Capture_4cell \
libCamera_motcancunfs5k3p9sp04mipiraw_Scene_Preview \
libCamera_motcancunfs5k3p9sp04mipiraw_Scene_Preview_ZSD \
libCamera_motcancunfs5k3p9sp04mipiraw_Scene_YUV_Reprocess \
libCamera_motcancunfs5k3p9sp04mipiraw_Slow_Motion \
libCamera_motcancunfs5k3p9sp04mipiraw_Video_1080 \
libCamera_motcancunfs5k3p9sp04mipiraw_Video_1080_2X \
libCamera_motcancunfs5k3p9sp04mipiraw_Video_1080_4X \
libCamera_motcancunfs5k3p9sp04mipiraw_Video_1080_8X \
libCamera_motcancunfs5k3p9sp04mipiraw_Video_Capture \
libCamera_motcancunfs5k3p9sp04mipiraw_Video_Capture_2X \
libCamera_motcancunfs5k3p9sp04mipiraw_Video_Capture_4X \
libCamera_motcancunfs5k3p9sp04mipiraw_Video_Capture_8X \
libCamera_motcancunfs5k3p9sp04mipiraw_Zoom_Capture_2X \
libCamera_motcancunfs5k3p9sp04mipirawrow_ArcSoft_Raw_NV_Capture \
libCamera_motcancunfs5k3p9sp04mipirawrow_ArcSoft_Raw_NV_Capture_flash \
libCamera_motcancunfs5k3p9sp04mipirawrow_ArcSoft_Raw_NV_Preview \
libCamera_motcancunfs5k3p9sp04mipirawrow_ArcSoft_Raw_NV_Preview_flash \
libCamera_motcancunfs5k3p9sp04mipirawrow_Bokeh_Capture_HDR \
libCamera_motcancunfs5k3p9sp04mipirawrow_Display_Flash_Big_Face_Capture \
libCamera_motcancunfs5k3p9sp04mipirawrow_Display_Flash_Capture \
libCamera_motcancunfs5k3p9sp04mipirawrow_E2EHDR_Preview \
libCamera_motcancunfs5k3p9sp04mipirawrow_E2EHDR_Video \
libCamera_motcancunfs5k3p9sp04mipirawrow_EIS_Slow_Motion \
libCamera_motcancunfs5k3p9sp04mipirawrow_EIS_Video_1080 \
libCamera_motcancunfs5k3p9sp04mipirawrow_EIS_Video_1080_2X \
libCamera_motcancunfs5k3p9sp04mipirawrow_EIS_Video_1080_4X \
libCamera_motcancunfs5k3p9sp04mipirawrow_EIS_Video_1080_8X \
libCamera_motcancunfs5k3p9sp04mipirawrow_Face_Capture \
libCamera_motcancunfs5k3p9sp04mipirawrow_Face_Capture_4cell \
libCamera_motcancunfs5k3p9sp04mipirawrow_Face_Preview_ZSD \
libCamera_motcancunfs5k3p9sp04mipirawrow_ITS_Capture \
libCamera_motcancunfs5k3p9sp04mipirawrow_LLHDR_Capture \
libCamera_motcancunfs5k3p9sp04mipirawrow_LLHDR_Face_Capture \
libCamera_motcancunfs5k3p9sp04mipirawrow_P1_YUV \
libCamera_motcancunfs5k3p9sp04mipirawrow_Panorama \
libCamera_motcancunfs5k3p9sp04mipirawrow_Scene_3rd_party_Capture \
libCamera_motcancunfs5k3p9sp04mipirawrow_Scene_3rd_party_Capture_HDR \
libCamera_motcancunfs5k3p9sp04mipirawrow_Scene_3rd_party_Preview \
libCamera_motcancunfs5k3p9sp04mipirawrow_Scene_3rd_party_Videocall \
libCamera_motcancunfs5k3p9sp04mipirawrow_Scene_Capture \
libCamera_motcancunfs5k3p9sp04mipirawrow_Scene_Capture_4cell \
libCamera_motcancunfs5k3p9sp04mipirawrow_Scene_Preview \
libCamera_motcancunfs5k3p9sp04mipirawrow_Scene_Preview_ZSD \
libCamera_motcancunfs5k3p9sp04mipirawrow_Scene_YUV_Reprocess \
libCamera_motcancunfs5k3p9sp04mipirawrow_Slow_Motion \
libCamera_motcancunfs5k3p9sp04mipirawrow_Video_1080 \
libCamera_motcancunfs5k3p9sp04mipirawrow_Video_1080_2X \
libCamera_motcancunfs5k3p9sp04mipirawrow_Video_1080_4X \
libCamera_motcancunfs5k3p9sp04mipirawrow_Video_1080_8X \
libCamera_motcancunfs5k3p9sp04mipirawrow_Video_Capture \
libCamera_motcancunfs5k3p9sp04mipirawrow_Video_Capture_2X \
libCamera_motcancunfs5k3p9sp04mipirawrow_Video_Capture_4X \
libCamera_motcancunfs5k3p9sp04mipirawrow_Video_Capture_8X \
libCamera_motcancunfs5k3p9sp04mipirawrow_Zoom_Capture_2X \
libCamera_motcancunfs5k4h7mipiraw_ArcSoft_Raw_NV_Capture \
libCamera_motcancunfs5k4h7mipiraw_ArcSoft_Raw_NV_FaceCapture \
libCamera_motcancunfs5k4h7mipiraw_ArcSoft_Raw_NV_Preview \
libCamera_motcancunfs5k4h7mipiraw_Bokeh_Capture \
libCamera_motcancunfs5k4h7mipiraw_E2EHDR_Preview \
libCamera_motcancunfs5k4h7mipiraw_E2EHDR_Video \
libCamera_motcancunfs5k4h7mipiraw_EIS_Slow_Motion \
libCamera_motcancunfs5k4h7mipiraw_EIS_Slow_Motion_2X \
libCamera_motcancunfs5k4h7mipiraw_EIS_Video_1080 \
libCamera_motcancunfs5k4h7mipiraw_EIS_Video_1080_2X \
libCamera_motcancunfs5k4h7mipiraw_EIS_Video_1080_4X \
libCamera_motcancunfs5k4h7mipiraw_EIS_Video_1080_8X \
libCamera_motcancunfs5k4h7mipiraw_Face_Capture \
libCamera_motcancunfs5k4h7mipiraw_Face_Capture_4cell \
libCamera_motcancunfs5k4h7mipiraw_Flash_Capture \
libCamera_motcancunfs5k4h7mipiraw_Flash_Face_Preview \
libCamera_motcancunfs5k4h7mipiraw_LLHDR_Capture \
libCamera_motcancunfs5k4h7mipiraw_LLHDR_Face_Capture \
libCamera_motcancunfs5k4h7mipiraw_P1_YUV \
libCamera_motcancunfs5k4h7mipiraw_Panorama \
libCamera_motcancunfs5k4h7mipiraw_Scene_Capture \
libCamera_motcancunfs5k4h7mipiraw_Scene_Capture_4cell \
libCamera_motcancunfs5k4h7mipiraw_Scene_Preview \
libCamera_motcancunfs5k4h7mipiraw_Scene_YUV_Reprocess \
libCamera_motcancunfs5k4h7mipiraw_Slow_Motion \
libCamera_motcancunfs5k4h7mipiraw_Slow_Motion_2X \
libCamera_motcancunfs5k4h7mipiraw_Video_1080 \
libCamera_motcancunfs5k4h7mipiraw_Video_1080_2X \
libCamera_motcancunfs5k4h7mipiraw_Video_1080_4X \
libCamera_motcancunfs5k4h7mipiraw_Video_1080_8X \
libCamera_motcancunfs5k4h7mipiraw_Video_Capture \
libCamera_motcancunfs5k4h7mipiraw_Video_Capture_2X \
libCamera_motcancunfs5k4h7mipiraw_Video_Capture_4X \
libCamera_motcancunfs5k4h7mipiraw_Video_Capture_8X \
libCamera_motcancunfs5k4h7mipiraw_Zoom_Capture_2X \
libCamera_motcancunfs5k4h7mipiraw_Zoom_Capture_4X \
libCamera_motcancunfs5k4h7mipiraw_Zoom_Capture_8X \
libCamera_motcancunfs5k4h7mipiraw_Zoom_Preview_2X \
libCamera_motcancunfs5k4h7mipiraw_Zoom_Preview_4X \
libCamera_motcancunfs5k4h7mipiraw_Zoom_Preview_8X \
libCamera_motcancunfs5k4h7mipirawrow_ArcSoft_Raw_NV_Capture \
libCamera_motcancunfs5k4h7mipirawrow_ArcSoft_Raw_NV_FaceCapture \
libCamera_motcancunfs5k4h7mipirawrow_ArcSoft_Raw_NV_Preview \
libCamera_motcancunfs5k4h7mipirawrow_Bokeh_Capture \
libCamera_motcancunfs5k4h7mipirawrow_E2EHDR_Preview \
libCamera_motcancunfs5k4h7mipirawrow_E2EHDR_Video \
libCamera_motcancunfs5k4h7mipirawrow_EIS_Slow_Motion \
libCamera_motcancunfs5k4h7mipirawrow_EIS_Slow_Motion_2X \
libCamera_motcancunfs5k4h7mipirawrow_EIS_Video_1080 \
libCamera_motcancunfs5k4h7mipirawrow_EIS_Video_1080_2X \
libCamera_motcancunfs5k4h7mipirawrow_EIS_Video_1080_4X \
libCamera_motcancunfs5k4h7mipirawrow_EIS_Video_1080_8X \
libCamera_motcancunfs5k4h7mipirawrow_Face_Capture \
libCamera_motcancunfs5k4h7mipirawrow_Face_Capture_4cell \
libCamera_motcancunfs5k4h7mipirawrow_Flash_Capture \
libCamera_motcancunfs5k4h7mipirawrow_Flash_Face_Preview \
libCamera_motcancunfs5k4h7mipirawrow_LLHDR_Capture \
libCamera_motcancunfs5k4h7mipirawrow_LLHDR_Face_Capture \
libCamera_motcancunfs5k4h7mipirawrow_P1_YUV \
libCamera_motcancunfs5k4h7mipirawrow_Panorama \
libCamera_motcancunfs5k4h7mipirawrow_Scene_Capture \
libCamera_motcancunfs5k4h7mipirawrow_Scene_Capture_4cell \
libCamera_motcancunfs5k4h7mipirawrow_Scene_Preview \
libCamera_motcancunfs5k4h7mipirawrow_Scene_YUV_Reprocess \
libCamera_motcancunfs5k4h7mipirawrow_Slow_Motion \
libCamera_motcancunfs5k4h7mipirawrow_Slow_Motion_2X \
libCamera_motcancunfs5k4h7mipirawrow_Video_1080 \
libCamera_motcancunfs5k4h7mipirawrow_Video_1080_2X \
libCamera_motcancunfs5k4h7mipirawrow_Video_1080_4X \
libCamera_motcancunfs5k4h7mipirawrow_Video_1080_8X \
libCamera_motcancunfs5k4h7mipirawrow_Video_Capture \
libCamera_motcancunfs5k4h7mipirawrow_Video_Capture_2X \
libCamera_motcancunfs5k4h7mipirawrow_Video_Capture_4X \
libCamera_motcancunfs5k4h7mipirawrow_Video_Capture_8X \
libCamera_motcancunfs5k4h7mipirawrow_Zoom_Capture_2X \
libCamera_motcancunfs5k4h7mipirawrow_Zoom_Capture_4X \
libCamera_motcancunfs5k4h7mipirawrow_Zoom_Capture_8X \
libCamera_motcancunfs5k4h7mipirawrow_Zoom_Preview_2X \
libCamera_motcancunfs5k4h7mipirawrow_Zoom_Preview_4X \
libCamera_motcancunfs5k4h7mipirawrow_Zoom_Preview_8X \
libCamera_motcancunfs5kjnsmipiraw_ArcSoft_Raw_NV_Capture \
libCamera_motcancunfs5kjnsmipiraw_ArcSoft_Raw_NV_FaceCapture \
libCamera_motcancunfs5kjnsmipiraw_ArcSoft_Raw_NV_Preview \
libCamera_motcancunfs5kjnsmipiraw_Bokeh_Capture_Face_HDR \
libCamera_motcancunfs5kjnsmipiraw_Bokeh_Capture_HDR \
libCamera_motcancunfs5kjnsmipiraw_E2EHDR_Preview \
libCamera_motcancunfs5kjnsmipiraw_E2EHDR_Video \
libCamera_motcancunfs5kjnsmipiraw_EIS_Slow_Motion \
libCamera_motcancunfs5kjnsmipiraw_EIS_Slow_Motion_2X \
libCamera_motcancunfs5kjnsmipiraw_EIS_Video_1080 \
libCamera_motcancunfs5kjnsmipiraw_EIS_Video_1080_2X \
libCamera_motcancunfs5kjnsmipiraw_EIS_Video_1080_4X \
libCamera_motcancunfs5kjnsmipiraw_EIS_Video_1080_8X \
libCamera_motcancunfs5kjnsmipiraw_Face_Capture \
libCamera_motcancunfs5kjnsmipiraw_Face_Capture_4cell \
libCamera_motcancunfs5kjnsmipiraw_Face_Preview_ZSD \
libCamera_motcancunfs5kjnsmipiraw_Flash_Capture \
libCamera_motcancunfs5kjnsmipiraw_ITS_Capture \
libCamera_motcancunfs5kjnsmipiraw_LLHDR_Capture \
libCamera_motcancunfs5kjnsmipiraw_LLHDR_Face_Capture \
libCamera_motcancunfs5kjnsmipiraw_Night_Vision_Capture \
libCamera_motcancunfs5kjnsmipiraw_Night_Vision_FaceCapture \
libCamera_motcancunfs5kjnsmipiraw_Night_Vision_FacePreview \
libCamera_motcancunfs5kjnsmipiraw_Night_Vision_Preview \
libCamera_motcancunfs5kjnsmipiraw_P1_YUV \
libCamera_motcancunfs5kjnsmipiraw_Panorama \
libCamera_motcancunfs5kjnsmipiraw_SR_Zoom_Capture \
libCamera_motcancunfs5kjnsmipiraw_Scene_3rd_party_Capture \
libCamera_motcancunfs5kjnsmipiraw_Scene_3rd_party_Capture_HDR \
libCamera_motcancunfs5kjnsmipiraw_Scene_3rd_party_Preview \
libCamera_motcancunfs5kjnsmipiraw_Scene_3rd_party_ZOOM \
libCamera_motcancunfs5kjnsmipiraw_Scene_3rd_party_videocall \
libCamera_motcancunfs5kjnsmipiraw_Scene_Capture \
libCamera_motcancunfs5kjnsmipiraw_Scene_Capture_4cell \
libCamera_motcancunfs5kjnsmipiraw_Scene_Preview \
libCamera_motcancunfs5kjnsmipiraw_Scene_Preview_ZSD \
libCamera_motcancunfs5kjnsmipiraw_Scene_YUV_Reprocess \
libCamera_motcancunfs5kjnsmipiraw_Slow_Motion \
libCamera_motcancunfs5kjnsmipiraw_Slow_Motion_2X \
libCamera_motcancunfs5kjnsmipiraw_Video_1080 \
libCamera_motcancunfs5kjnsmipiraw_Video_1080_2X \
libCamera_motcancunfs5kjnsmipiraw_Video_1080_4X \
libCamera_motcancunfs5kjnsmipiraw_Video_1080_8X \
libCamera_motcancunfs5kjnsmipiraw_Video_Capture \
libCamera_motcancunfs5kjnsmipiraw_Video_Capture_2X \
libCamera_motcancunfs5kjnsmipiraw_Video_Capture_4X \
libCamera_motcancunfs5kjnsmipiraw_Video_Capture_8X \
libCamera_motcancunfs5kjnsmipiraw_Zoom_Capture_2X \
libCamera_motcancunfs5kjnsmipiraw_Zoom_Capture_4X \
libCamera_motcancunfs5kjnsmipiraw_Zoom_Capture_8X \
libCamera_motcancunfs5kjnsmipiraw_Zoom_Preview_2X \
libCamera_motcancunfs5kjnsmipiraw_Zoom_Preview_4X \
libCamera_motcancunfs5kjnsmipiraw_Zoom_Preview_8X \
libCamera_motcancunfs5kjnsmipirawrow_ArcSoft_Raw_NV_Capture \
libCamera_motcancunfs5kjnsmipirawrow_ArcSoft_Raw_NV_FaceCapture \
libCamera_motcancunfs5kjnsmipirawrow_ArcSoft_Raw_NV_Preview \
libCamera_motcancunfs5kjnsmipirawrow_Bokeh_Capture_Face_HDR \
libCamera_motcancunfs5kjnsmipirawrow_Bokeh_Capture_HDR \
libCamera_motcancunfs5kjnsmipirawrow_E2EHDR_Preview \
libCamera_motcancunfs5kjnsmipirawrow_E2EHDR_Video \
libCamera_motcancunfs5kjnsmipirawrow_EIS_Slow_Motion \
libCamera_motcancunfs5kjnsmipirawrow_EIS_Slow_Motion_2X \
libCamera_motcancunfs5kjnsmipirawrow_EIS_Video_1080 \
libCamera_motcancunfs5kjnsmipirawrow_EIS_Video_1080_2X \
libCamera_motcancunfs5kjnsmipirawrow_EIS_Video_1080_4X \
libCamera_motcancunfs5kjnsmipirawrow_EIS_Video_1080_8X \
libCamera_motcancunfs5kjnsmipirawrow_Face_Capture \
libCamera_motcancunfs5kjnsmipirawrow_Face_Capture_4cell \
libCamera_motcancunfs5kjnsmipirawrow_Face_Preview_ZSD \
libCamera_motcancunfs5kjnsmipirawrow_Flash_Capture \
libCamera_motcancunfs5kjnsmipirawrow_ITS_Capture \
libCamera_motcancunfs5kjnsmipirawrow_LLHDR_Capture \
libCamera_motcancunfs5kjnsmipirawrow_LLHDR_Face_Capture \
libCamera_motcancunfs5kjnsmipirawrow_Night_Vision_Capture \
libCamera_motcancunfs5kjnsmipirawrow_Night_Vision_FaceCapture \
libCamera_motcancunfs5kjnsmipirawrow_Night_Vision_FacePreview \
libCamera_motcancunfs5kjnsmipirawrow_Night_Vision_Preview \
libCamera_motcancunfs5kjnsmipirawrow_P1_YUV \
libCamera_motcancunfs5kjnsmipirawrow_Panorama \
libCamera_motcancunfs5kjnsmipirawrow_SR_Zoom_Capture \
libCamera_motcancunfs5kjnsmipirawrow_Scene_3rd_party_Capture \
libCamera_motcancunfs5kjnsmipirawrow_Scene_3rd_party_Capture_HDR \
libCamera_motcancunfs5kjnsmipirawrow_Scene_3rd_party_Preview \
libCamera_motcancunfs5kjnsmipirawrow_Scene_3rd_party_ZOOM \
libCamera_motcancunfs5kjnsmipirawrow_Scene_3rd_party_videocall \
libCamera_motcancunfs5kjnsmipirawrow_Scene_Capture \
libCamera_motcancunfs5kjnsmipirawrow_Scene_Capture_4cell \
libCamera_motcancunfs5kjnsmipirawrow_Scene_Preview \
libCamera_motcancunfs5kjnsmipirawrow_Scene_Preview_ZSD \
libCamera_motcancunfs5kjnsmipirawrow_Scene_YUV_Reprocess \
libCamera_motcancunfs5kjnsmipirawrow_Slow_Motion \
libCamera_motcancunfs5kjnsmipirawrow_Slow_Motion_2X \
libCamera_motcancunfs5kjnsmipirawrow_Video_1080 \
libCamera_motcancunfs5kjnsmipirawrow_Video_1080_2X \
libCamera_motcancunfs5kjnsmipirawrow_Video_1080_4X \
libCamera_motcancunfs5kjnsmipirawrow_Video_1080_8X \
libCamera_motcancunfs5kjnsmipirawrow_Video_Capture \
libCamera_motcancunfs5kjnsmipirawrow_Video_Capture_2X \
libCamera_motcancunfs5kjnsmipirawrow_Video_Capture_4X \
libCamera_motcancunfs5kjnsmipirawrow_Video_Capture_8X \
libCamera_motcancunfs5kjnsmipirawrow_Zoom_Capture_2X \
libCamera_motcancunfs5kjnsmipirawrow_Zoom_Capture_4X \
libCamera_motcancunfs5kjnsmipirawrow_Zoom_Capture_8X \