bootloader_ext.log
53.5 KB
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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
Beginning bootloader_ext component build process ...
Module bootloader_ext is in DEFALUT mode
Compiling hal\system\CBR\src\CBR.c ...
Compiling hal\storage\flash\mtd\src\SPI_NAND_DAL.c ...
Compiling hal\storage\flash\mtd\src\SPI_NAND_DevConfig.c ...
Compiling hal\storage\flash\mtd\src\SPI_NAND_MTD_FDM50.c ...
Compiling hal\system\init\src\arm_unaligned.s ...
Warning: A3910W: Old syntax, please use '--16'.
Warning: A3910W: Old syntax, please use '--pd'.
Warning: A3910W: Old syntax, please use '--pd'.
Warning: A3910W: Old syntax, please use '--pd'.
Warning: A3910W: Old syntax, please use '--pd'.
Warning: A3910W: Old syntax, please use '--pd'.
Warning: A3910W: Old syntax, please use '--pd'.
Warning: A3910W: Old syntax, please use '--pd'.
Warning: A3910W: Old syntax, please use '--pd'.
Warning: A3910W: Old syntax, please use '--pd'.
Warning: A3910W: Old syntax, please use '--pd'.
Warning: A3910W: Old syntax, please use '--pd'.
Warning: A3910W: Old syntax, please use '--pd'.
Warning: A3910W: Old syntax, please use '--pd'.
Warning: A3910W: Old syntax, please use '--pd'.
Warning: A3910W: Old syntax, please use '--pd'.
Warning: A3910W: Old syntax, please use '--pd'.
Warning: A3910W: Old syntax, please use '--pd'.
Warning: A3910W: Old syntax, please use '--pd'.
Warning: A3910W: Old syntax, please use '--pd'.
Warning: A3910W: Old syntax, please use '--pd'.
Warning: A3910W: Old syntax, please use '--pd'.
Warning: A3910W: Old syntax, please use '--pd'.
Warning: A3910W: Old syntax, please use '--pd'.
Warning: A3910W: Old syntax, please use '--pd'.
"hal\system\init\src\arm_unaligned.s", line 470: Warning: A1488W: PROC/FUNC at line 179 in 'hal\system\init\src\arm_unaligned.s' without matching ENDP/ENDFUNC
470 000001a0 END
0 Errors, 26 Warnings
Compiling hal\system\bootloader\src\bl_Alg.c ...
Compiling hal\system\bootloader\src\bl_BOOTARM.s ...
Warning: A3910W: Old syntax, please use '--16'.
Warning: A3910W: Old syntax, please use '--pd'.
Warning: A3910W: Old syntax, please use '--pd'.
Warning: A3910W: Old syntax, please use '--pd'.
Warning: A3910W: Old syntax, please use '--pd'.
Warning: A3910W: Old syntax, please use '--pd'.
Warning: A3910W: Old syntax, please use '--pd'.
Warning: A3910W: Old syntax, please use '--pd'.
Warning: A3910W: Old syntax, please use '--pd'.
Warning: A3910W: Old syntax, please use '--pd'.
Warning: A3910W: Old syntax, please use '--pd'.
Warning: A3910W: Old syntax, please use '--pd'.
Warning: A3910W: Old syntax, please use '--pd'.
Warning: A3910W: Old syntax, please use '--pd'.
Warning: A3910W: Old syntax, please use '--pd'.
Warning: A3910W: Old syntax, please use '--pd'.
Warning: A3910W: Old syntax, please use '--pd'.
Warning: A3910W: Old syntax, please use '--pd'.
Warning: A3910W: Old syntax, please use '--pd'.
Warning: A3910W: Old syntax, please use '--pd'.
Warning: A3910W: Old syntax, please use '--pd'.
Warning: A3910W: Old syntax, please use '--pd'.
Warning: A3910W: Old syntax, please use '--pd'.
Warning: A3910W: Old syntax, please use '--pd'.
Warning: A3910W: Old syntax, please use '--pd'.
0 Errors, 25 Warnings
Compiling hal\system\bootloader\src\bl_Cache.c ...
Compiling hal\system\bootloader\src\bl_DBGPRINT.c ...
Compiling hal\system\bootloader\src\bl_FOTA.c ...
Compiling hal\system\bootloader\src\bl_FTL.c ...
"hal\system\bootloader\src\bl_FTL.c", line 898: Warning: #177-D: variable "status" was declared but never referenced
kal_int32 status;
^
"hal\system\bootloader\src\bl_FTL.c", line 926: Warning: #177-D: variable "status" was declared but never referenced
kal_int32 status;
^
hal\system\bootloader\src\bl_FTL.c: 2 warnings, 0 errors
Compiling hal\system\bootloader\src\bl_FUNET.c ...
Compiling hal\system\bootloader\src\bl_GFH_body.c ...
Compiling hal\system\bootloader\src\bl_ImageLoader.c ...
Compiling hal\system\bootloader\src\bl_ImageLoaderCommon.c ...
Compiling hal\system\bootloader\src\bl_ImageLoader_v5.c ...
"hal\system\bootloader\src\bl_ImageLoader_v5.c", line 1421: Warning: #177-D: variable "page_no" was declared but never referenced
kal_uint32 page_no = flashBeginPage;
^
"hal\system\bootloader\src\bl_ImageLoader_v5.c", line 1462: Warning: #550-D: variable "status" was set but never used
kal_uint32 status;
^
"hal\system\bootloader\src\bl_ImageLoader_v5.c", line 335: Warning: #177-D: variable "externalPageBuffer" was declared but never referenced
static kal_uint32 externalPageBuffer[8192/4];
^
"hal\system\bootloader\src\bl_ImageLoader_v5.c", line 338: Warning: #177-D: variable "g_mauiInfoBuf" was declared but never referenced
static kal_uint32 g_mauiInfoBuf[1024/4];
^
"hal\system\bootloader\src\bl_ImageLoader_v5.c", line 342: Warning: #177-D: variable "g_mauiInfoRead" was declared but never referenced
static kal_bool g_mauiInfoRead = KAL_FALSE;
^
hal\system\bootloader\src\bl_ImageLoader_v5.c: 5 warnings, 0 errors
Compiling hal\system\bootloader\src\bl_Init.c ...
Compiling hal\system\bootloader\src\bl_Main.c ...
"hal\system\bootloader\src\bl_Main.c", line 2766: Warning: #223-D: function "BL_Disable_Usbdl_Wo_Battery" declared implicitly
BL_Disable_Usbdl_Wo_Battery();
^
hal\system\bootloader\src\bl_Main.c: 1 warning, 0 errors
Compiling hal\system\bootloader\src\bl_NFI.c ...
Compiling hal\system\bootloader\src\bl_NFI_V3.c ...
Compiling hal\system\bootloader\src\bl_NFI_V31.c ...
Compiling hal\system\bootloader\src\bl_SNAND_V2.c ...
Compiling hal\storage\flash\mtd\src\bl_STT_SF.c ...
Compiling hal\system\bootloader\src\bl_UART.c ...
Compiling hal\system\bootloader\src\bl_Update.c ...
Compiling hal\system\bootloader\src\bl_pdn.c ...
Compiling hal\system\bootloader\src\bl_portingfunc.c ...
Compiling hal\system\bootloader\src\bl_regioninit.s ...
Warning: A3910W: Old syntax, please use '--16'.
Warning: A3910W: Old syntax, please use '--pd'.
Warning: A3910W: Old syntax, please use '--pd'.
Warning: A3910W: Old syntax, please use '--pd'.
Warning: A3910W: Old syntax, please use '--pd'.
Warning: A3910W: Old syntax, please use '--pd'.
Warning: A3910W: Old syntax, please use '--pd'.
Warning: A3910W: Old syntax, please use '--pd'.
Warning: A3910W: Old syntax, please use '--pd'.
Warning: A3910W: Old syntax, please use '--pd'.
Warning: A3910W: Old syntax, please use '--pd'.
Warning: A3910W: Old syntax, please use '--pd'.
Warning: A3910W: Old syntax, please use '--pd'.
Warning: A3910W: Old syntax, please use '--pd'.
Warning: A3910W: Old syntax, please use '--pd'.
Warning: A3910W: Old syntax, please use '--pd'.
Warning: A3910W: Old syntax, please use '--pd'.
Warning: A3910W: Old syntax, please use '--pd'.
Warning: A3910W: Old syntax, please use '--pd'.
Warning: A3910W: Old syntax, please use '--pd'.
Warning: A3910W: Old syntax, please use '--pd'.
Warning: A3910W: Old syntax, please use '--pd'.
Warning: A3910W: Old syntax, please use '--pd'.
Warning: A3910W: Old syntax, please use '--pd'.
Warning: A3910W: Old syntax, please use '--pd'.
"hal\system\bootloader\src\bl_regioninit.s", line 325: Warning: A1757W: Symbol attributes must be within square brackets; Any other syntax is deprecated
at line 197 in macro macro_RegionInit in 'hal\system\bootloader\src\bl_regioninit.s'
197 00000004 IMPORT |Load$$DA_SHARE$$Base|, WEAK
"hal\system\bootloader\src\bl_regioninit.s", line 325: Warning: A1757W: Symbol attributes must be within square brackets; Any other syntax is deprecated
at line 198 in macro macro_RegionInit in 'hal\system\bootloader\src\bl_regioninit.s'
198 00000004 IMPORT |Image$$DA_SHARE$$Base|, WEAK
"hal\system\bootloader\src\bl_regioninit.s", line 325: Warning: A1757W: Symbol attributes must be within square brackets; Any other syntax is deprecated
at line 199 in macro macro_RegionInit in 'hal\system\bootloader\src\bl_regioninit.s'
199 00000004 IMPORT |Image$$DA_SHARE$$Length|, WEAK
"hal\system\bootloader\src\bl_regioninit.s", line 325: Warning: A1757W: Symbol attributes must be within square brackets; Any other syntax is deprecated
at line 200 in macro macro_RegionInit in 'hal\system\bootloader\src\bl_regioninit.s'
200 00000004 IMPORT |Image$$DA_SHARE$$ZI$$Base|, WEAK
"hal\system\bootloader\src\bl_regioninit.s", line 325: Warning: A1757W: Symbol attributes must be within square brackets; Any other syntax is deprecated
at line 201 in macro macro_RegionInit in 'hal\system\bootloader\src\bl_regioninit.s'
201 00000004 IMPORT |Image$$DA_SHARE$$ZI$$Length|, WEAK
"hal\system\bootloader\src\bl_regioninit.s", line 326: Warning: A1757W: Symbol attributes must be within square brackets; Any other syntax is deprecated
at line 197 in macro macro_RegionInit in 'hal\system\bootloader\src\bl_regioninit.s'
197 00000030 IMPORT |Load$$EXT_READ_WRITE_INT$$Base|, WEAK
"hal\system\bootloader\src\bl_regioninit.s", line 326: Warning: A1757W: Symbol attributes must be within square brackets; Any other syntax is deprecated
at line 198 in macro macro_RegionInit in 'hal\system\bootloader\src\bl_regioninit.s'
198 00000030 IMPORT |Image$$EXT_READ_WRITE_INT$$Base|, WEAK
"hal\system\bootloader\src\bl_regioninit.s", line 326: Warning: A1757W: Symbol attributes must be within square brackets; Any other syntax is deprecated
at line 199 in macro macro_RegionInit in 'hal\system\bootloader\src\bl_regioninit.s'
199 00000030 IMPORT |Image$$EXT_READ_WRITE_INT$$Length|, WEAK
"hal\system\bootloader\src\bl_regioninit.s", line 326: Warning: A1757W: Symbol attributes must be within square brackets; Any other syntax is deprecated
at line 200 in macro macro_RegionInit in 'hal\system\bootloader\src\bl_regioninit.s'
200 00000030 IMPORT |Image$$EXT_READ_WRITE_INT$$ZI$$Base|, WEAK
"hal\system\bootloader\src\bl_regioninit.s", line 326: Warning: A1757W: Symbol attributes must be within square brackets; Any other syntax is deprecated
at line 201 in macro macro_RegionInit in 'hal\system\bootloader\src\bl_regioninit.s'
201 00000030 IMPORT |Image$$EXT_READ_WRITE_INT$$ZI$$Length|, WEAK
"hal\system\bootloader\src\bl_regioninit.s", line 327: Warning: A1757W: Symbol attributes must be within square brackets; Any other syntax is deprecated
at line 197 in macro macro_RegionInit in 'hal\system\bootloader\src\bl_regioninit.s'
197 0000005c IMPORT |Load$$EXT_READ_ONLY_INT$$Base|, WEAK
"hal\system\bootloader\src\bl_regioninit.s", line 327: Warning: A1757W: Symbol attributes must be within square brackets; Any other syntax is deprecated
at line 198 in macro macro_RegionInit in 'hal\system\bootloader\src\bl_regioninit.s'
198 0000005c IMPORT |Image$$EXT_READ_ONLY_INT$$Base|, WEAK
"hal\system\bootloader\src\bl_regioninit.s", line 327: Warning: A1757W: Symbol attributes must be within square brackets; Any other syntax is deprecated
at line 199 in macro macro_RegionInit in 'hal\system\bootloader\src\bl_regioninit.s'
199 0000005c IMPORT |Image$$EXT_READ_ONLY_INT$$Length|, WEAK
"hal\system\bootloader\src\bl_regioninit.s", line 327: Warning: A1757W: Symbol attributes must be within square brackets; Any other syntax is deprecated
at line 200 in macro macro_RegionInit in 'hal\system\bootloader\src\bl_regioninit.s'
200 0000005c IMPORT |Image$$EXT_READ_ONLY_INT$$ZI$$Base|, WEAK
"hal\system\bootloader\src\bl_regioninit.s", line 327: Warning: A1757W: Symbol attributes must be within square brackets; Any other syntax is deprecated
at line 201 in macro macro_RegionInit in 'hal\system\bootloader\src\bl_regioninit.s'
201 0000005c IMPORT |Image$$EXT_READ_ONLY_INT$$ZI$$Length|, WEAK
"hal\system\bootloader\src\bl_regioninit.s", line 328: Warning: A1757W: Symbol attributes must be within square brackets; Any other syntax is deprecated
at line 197 in macro macro_RegionInit in 'hal\system\bootloader\src\bl_regioninit.s'
197 00000088 IMPORT |Load$$EXT_READ_WRITE$$Base|, WEAK
"hal\system\bootloader\src\bl_regioninit.s", line 328: Warning: A1757W: Symbol attributes must be within square brackets; Any other syntax is deprecated
at line 198 in macro macro_RegionInit in 'hal\system\bootloader\src\bl_regioninit.s'
198 00000088 IMPORT |Image$$EXT_READ_WRITE$$Base|, WEAK
"hal\system\bootloader\src\bl_regioninit.s", line 328: Warning: A1757W: Symbol attributes must be within square brackets; Any other syntax is deprecated
at line 199 in macro macro_RegionInit in 'hal\system\bootloader\src\bl_regioninit.s'
199 00000088 IMPORT |Image$$EXT_READ_WRITE$$Length|, WEAK
"hal\system\bootloader\src\bl_regioninit.s", line 328: Warning: A1757W: Symbol attributes must be within square brackets; Any other syntax is deprecated
at line 200 in macro macro_RegionInit in 'hal\system\bootloader\src\bl_regioninit.s'
200 00000088 IMPORT |Image$$EXT_READ_WRITE$$ZI$$Base|, WEAK
"hal\system\bootloader\src\bl_regioninit.s", line 328: Warning: A1757W: Symbol attributes must be within square brackets; Any other syntax is deprecated
at line 201 in macro macro_RegionInit in 'hal\system\bootloader\src\bl_regioninit.s'
201 00000088 IMPORT |Image$$EXT_READ_WRITE$$ZI$$Length|, WEAK
"hal\system\bootloader\src\bl_regioninit.s", line 335: Warning: A1757W: Symbol attributes must be within square brackets; Any other syntax is deprecated
335 000000b8 IMPORT |Load$$REGION_INIT_SUB$$Base|, WEAK
"hal\system\bootloader\src\bl_regioninit.s", line 336: Warning: A1757W: Symbol attributes must be within square brackets; Any other syntax is deprecated
336 000000b8 IMPORT |Image$$REGION_INIT_SUB$$Base|, WEAK
"hal\system\bootloader\src\bl_regioninit.s", line 337: Warning: A1757W: Symbol attributes must be within square brackets; Any other syntax is deprecated
337 000000b8 IMPORT |Image$$REGION_INIT_SUB$$Length|, WEAK
"hal\system\bootloader\src\bl_regioninit.s", line 368: Warning: A1608W: MOV pc,<rn> instruction used, but BX <rn> is preferred
368 00000010 MOV pc, lr ; return from subroutine copy
"hal\system\bootloader\src\bl_regioninit.s", line 373: Warning: A1608W: MOV pc,<rn> instruction used, but BX <rn> is preferred
373 0000001c MOVEQ pc, lr
"hal\system\bootloader\src\bl_regioninit.s", line 389: Warning: A1608W: MOV pc,<rn> instruction used, but BX <rn> is preferred
389 00000044 MOV pc, lr ; return from subroutine copy
"hal\system\bootloader\src\bl_regioninit.s", line 399: Warning: A1608W: MOV pc,<rn> instruction used, but BX <rn> is preferred
399 00000058 MOV pc, lr ; return from subroutine zi_init
0 Errors, 52 Warnings
Compiling hal\system\bootloader\src\bl_verno.c ...
Compiling hal\peripheral\src\bmt_bl_chr_setting.c ...
Compiling hal\peripheral\src\bmt_hw.c ...
Compiling hal\system\GFH\public\br_GFH_file_info.c ...
Compiling hal\system\GFH\public\br_GFH_parser.c ...
Compiling hal\system\cache\src\cache.c ...
"hal\system\cache\src\cache.c", line 2625: Warning: #177-D: variable "size" was declared but never referenced
kal_uint32 size;
^
"hal\system\cache\src\cache.c", line 3323: Warning: #177-D: variable "j" was declared but never referenced
kal_uint32 i = 0, j=0;
^
"hal\system\cache\src\cache.c", line 3324: Warning: #177-D: variable "lock_counter" was declared but never referenced
kal_uint32 lock_counter=0;
^
"hal\system\cache\src\cache.c", line 3325: Warning: #177-D: variable "irq_mask" was declared but never referenced
kal_uint32 irq_mask;
^
"hal\system\cache\src\cache.c", line 2356: Warning: #177-D: function "SetupRemap" was declared but never referenced
static void SetupRemap(kal_uint32 phy_addr, kal_uint32 virt_addr, kal_uint32 total_size)
^
hal\system\cache\src\cache.c: 5 warnings, 0 errors
Compiling hal\system\CBR\src\cbr_util.c ...
Compiling custom\common\hal\combo_flash_init.c ...
Compiling custom\common\hal\combo_flash_nor.c ...
"custom\common\hal\combo_flash_nor.c", line 941: Warning: #177-D: variable "i" was declared but never referenced
kal_uint32 index, i=0;
^
"custom\common\hal\combo_flash_nor.c", line 1892: Warning: #177-D: variable "temp" was declared but never referenced
kal_int32 result, temp;
^
"custom\common\hal\combo_flash_nor.c", line 1893: Warning: #177-D: variable "i" was declared but never referenced
kal_uint8 i = 0;
^
"custom\common\hal\combo_flash_nor.c", line 349: Warning: #177-D: variable "BlockLayout_CS1" was declared but never referenced
static const FlashBlockLayout *BlockLayout_CS1; // SF2 BlockLayout read from MCP list
^
"custom\common\hal\combo_flash_nor.c", line 360: Warning: #177-D: variable "MSEntryTable" was declared but never referenced
static MS_ENTRY MSEntryTable[MS_TABLE_ENTRY_NUM];
^
custom\common\hal\combo_flash_nor.c: 5 warnings, 0 errors
Compiling hal\system\cache\src\cp15.s ...
Warning: A3910W: Old syntax, please use '--16'.
Warning: A3910W: Old syntax, please use '--pd'.
Warning: A3910W: Old syntax, please use '--pd'.
Warning: A3910W: Old syntax, please use '--pd'.
Warning: A3910W: Old syntax, please use '--pd'.
Warning: A3910W: Old syntax, please use '--pd'.
Warning: A3910W: Old syntax, please use '--pd'.
Warning: A3910W: Old syntax, please use '--pd'.
Warning: A3910W: Old syntax, please use '--pd'.
Warning: A3910W: Old syntax, please use '--pd'.
Warning: A3910W: Old syntax, please use '--pd'.
Warning: A3910W: Old syntax, please use '--pd'.
Warning: A3910W: Old syntax, please use '--pd'.
Warning: A3910W: Old syntax, please use '--pd'.
Warning: A3910W: Old syntax, please use '--pd'.
Warning: A3910W: Old syntax, please use '--pd'.
Warning: A3910W: Old syntax, please use '--pd'.
Warning: A3910W: Old syntax, please use '--pd'.
Warning: A3910W: Old syntax, please use '--pd'.
Warning: A3910W: Old syntax, please use '--pd'.
Warning: A3910W: Old syntax, please use '--pd'.
Warning: A3910W: Old syntax, please use '--pd'.
Warning: A3910W: Old syntax, please use '--pd'.
Warning: A3910W: Old syntax, please use '--pd'.
Warning: A3910W: Old syntax, please use '--pd'.
0 Errors, 25 Warnings
Compiling custom\common\hal\custom_SNAND.c ...
Compiling custom\system\KEYTAK61D_GB_11C_BB\custom_blconfig.c ...
Compiling custom\common\hal\custom_flash.c ...
Compiling custom\drv\misc_drv\_DEFAULT_BB\MT6261\custom_hw_default.c ...
"custom/codegen/KEYTAK61D_GB_11C_BB/pwm_drv.h", line 35: Warning: #47-D: incompatible redefinition of macro "DCL_NONE" (declared at line 32)
#define DCL_NONE DCL_PWM4
^
"plutommi/mmi/Inc/TOPWELL_FEATURES.h", line 105: Warning: #47-D: incompatible redefinition of macro "CFG_TOPWELL_MENU_LAYOUT_CURRENCY" (declared at line 67)
#define CFG_TOPWELL_MENU_LAYOUT_CURRENCY (__MENU_DEFAULT__)
^
"plutommi/mmi/Inc/TOPWELL_FEATURES.h", line 67: Warning: #47-D: incompatible redefinition of macro "CFG_TOPWELL_MENU_LAYOUT_CURRENCY" (declared at line 105)
#define CFG_TOPWELL_MENU_LAYOUT_CURRENCY (__MENU_ORGANIZE__)
^
"plutommi/mmi/Inc/TOPWELL_FEATURES.h", line 105: Warning: #47-D: incompatible redefinition of macro "CFG_TOPWELL_MENU_LAYOUT_CURRENCY" (declared at line 67)
#define CFG_TOPWELL_MENU_LAYOUT_CURRENCY (__MENU_DEFAULT__)
^
"custom/common/hal/aud_common_config.h", line 140: Warning: #47-D: incompatible redefinition of macro "AUDIO_INCLUDE" (declared at line 637 of "custom/common/hal/audcoeff_default.h")
#define AUDIO_INCLUDE STRINGIFY_VALUE(TOPWELL_AUDIO_GMN3_H)
^
custom\drv\misc_drv\_DEFAULT_BB\MT6261\custom_hw_default.c: 5 warnings, 0 errors
Compiling custom\system\KEYTAK61D_GB_11C_BB\custom_img_config.c ...
Compiling custom\common\hal\custom_sfi.c ...
"custom\common\hal\custom_sfi.c", line 291: Warning: #177-D: variable "tmp_val" was declared but never referenced
kal_uint32 tmp_val, i;
^
"custom\common\hal\custom_sfi.c", line 291: Warning: #177-D: variable "i" was declared but never referenced
kal_uint32 tmp_val, i;
^
"custom\common\hal\custom_sfi.c", line 1194: Warning: #550-D: variable "sfi" was set but never used
const CMEMEntrySFI_DCM *sfi;
^
custom\common\hal\custom_sfi.c: 3 warnings, 0 errors
Compiling hal\peripheral\src\dcl_f32k_clk.c ...
"hal\peripheral\src\dcl_f32k_clk.c", line 131: Warning: #223-D: function "F32K_OSC32_Init" declared implicitly
F32K_OSC32_Init();
^
"hal\peripheral\src\dcl_f32k_clk.c", line 300: Warning: #223-D: function "F32K_OSC32_Init" declared implicitly
F32K_OSC32_Init();
^
"hal\peripheral\src\dcl_f32k_clk.c", line 318: Warning: #223-D: function "F32K_Set_Emb_OSC32_Mode" declared implicitly
return_status = F32K_Set_Emb_OSC32_Mode(prSetEmbOsc32Mode->osc32_mode);
^
"hal\peripheral\src\dcl_f32k_clk.c", line 326: Warning: #223-D: function "F32K_Set_EOSC_CALI_TD" declared implicitly
return_status = F32K_Set_EOSC_CALI_TD(prSetEoscCaliTd->td);
^
"hal\peripheral\src\dcl_f32k_clk.c", line 334: Warning: #223-D: function "F32K_Set_EOSC_CALI_Run_Time_En" declared implicitly
return_status = F32K_Set_EOSC_CALI_Run_Time_En(prSetEoscCaliRunTimeEn->en);
^
hal\peripheral\src\dcl_f32k_clk.c: 5 warnings, 0 errors
Compiling hal\peripheral\src\dcl_gpio.c ...
"hal\peripheral\src\dcl_gpio.c", line 93: Warning: #144-D: a value of type "DCL_STATUS (*)(DCL_HANDLE, DCL_CTRL_CMD, DCL_CTRL_DATA_T *)" cannot be used to initialize an entity of type "DCL_STATUS (*)(DCL_HANDLE, DCL_CTRL_CMD, void *)"
extern DEV_Operations gpio_dev_operations = {DclGPIO_Open, NULL, NULL, DclGPIO_Control, NULL, NULL, DclGPIO_Close};/* add for dcl common layer */
^
"hal\peripheral\src\dcl_gpio.c", line 328: Warning: #186-D: pointless comparison of unsigned integer with zero
if( ((port < GPIO_DDIE_MIN_GPIO_PIN) || (port > GPIO_DDIE_MAX_GPIO_PIN)) )
^
"hal\peripheral\src\dcl_gpio.c", line 331: Warning: #117-D: non-void function "DclGPIO_Control" should return a value
return;
^
hal\peripheral\src\dcl_gpio.c: 3 warnings, 0 errors
Compiling hal\peripheral\src\dcl_pmu.c ...
Compiling hal\peripheral\src\dcl_pmu6261.c ...
"plutommi/mmi/Inc/TOPWELL_FEATURES.h", line 105: Warning: #47-D: incompatible redefinition of macro "CFG_TOPWELL_MENU_LAYOUT_CURRENCY" (declared at line 67)
#define CFG_TOPWELL_MENU_LAYOUT_CURRENCY (__MENU_DEFAULT__)
^
"plutommi/mmi/Inc/TOPWELL_FEATURES.h", line 67: Warning: #47-D: incompatible redefinition of macro "CFG_TOPWELL_MENU_LAYOUT_CURRENCY" (declared at line 105)
#define CFG_TOPWELL_MENU_LAYOUT_CURRENCY (__MENU_ORGANIZE__)
^
"plutommi/mmi/Inc/TOPWELL_FEATURES.h", line 105: Warning: #47-D: incompatible redefinition of macro "CFG_TOPWELL_MENU_LAYOUT_CURRENCY" (declared at line 67)
#define CFG_TOPWELL_MENU_LAYOUT_CURRENCY (__MENU_DEFAULT__)
^
"hal\peripheral\src\dcl_pmu6261.c", line 1969: Warning: #223-D: function "GPIO_ModeSetup" declared implicitly
GPIO_ModeSetup(topwell_tourch_pin,0);
^
"hal\peripheral\src\dcl_pmu6261.c", line 1970: Warning: #223-D: function "GPIO_InitIO" declared implicitly
GPIO_InitIO(1,topwell_tourch_pin);
^
"hal\peripheral\src\dcl_pmu6261.c", line 1971: Warning: #223-D: function "GPIO_WriteIO" declared implicitly
GPIO_WriteIO(1,topwell_tourch_pin);
^
"hal\peripheral\src\dcl_pmu6261.c", line 1975: Warning: #223-D: function "GPIO_ModeSetup" declared implicitly
GPIO_ModeSetup(topwell_tourch_pin,0);
^
"hal\peripheral\src\dcl_pmu6261.c", line 1976: Warning: #223-D: function "GPIO_InitIO" declared implicitly
GPIO_InitIO(1,topwell_tourch_pin);
^
"hal\peripheral\src\dcl_pmu6261.c", line 1977: Warning: #223-D: function "GPIO_WriteIO" declared implicitly
GPIO_WriteIO(0,topwell_tourch_pin);
^
"hal\peripheral\src\dcl_pmu6261.c", line 1983: Warning: #223-D: function "GPIO_ModeSetup" declared implicitly
GPIO_ModeSetup(topwell_tourch_pin,0);
^
"hal\peripheral\src\dcl_pmu6261.c", line 1984: Warning: #223-D: function "GPIO_InitIO" declared implicitly
GPIO_InitIO(1,topwell_tourch_pin);
^
"hal\peripheral\src\dcl_pmu6261.c", line 1985: Warning: #223-D: function "GPIO_ReadIO" declared implicitly
state = GPIO_ReadIO(topwell_tourch_pin);
^
"hal\peripheral\src\dcl_pmu6261.c", line 2028: Warning: #111-D: statement is unreachable
return 0;
^
hal\peripheral\src\dcl_pmu6261.c: 13 warnings, 0 errors
Compiling hal\peripheral\src\dcl_pmu6261_init.c ...
Compiling hal\peripheral\src\dcl_pmu_common.c ...
Compiling hal\peripheral\src\dcl_pwm.c ...
"custom/codegen/KEYTAK61D_GB_11C_BB/pwm_drv.h", line 35: Warning: #47-D: incompatible redefinition of macro "DCL_NONE" (declared at line 32)
#define DCL_NONE DCL_PWM4
^
"hal\peripheral\src\dcl_pwm.c", line 194: Warning: #177-D: variable "savedMask" was declared but never referenced
kal_uint32 savedMask;
^
"hal\peripheral\src\dcl_pwm.c", line 280: Warning: #177-D: variable "savedMask" was declared but never referenced
kal_uint32 savedMask;
^
"hal\peripheral\src\dcl_pwm.c", line 357: Warning: #188-D: enumerated type mixed with another type
comm_pwm_driver->pwmClkInit( iPWMNum,rPWMConfig->clksrc,rPWMConfig->clkdiv);
^
"hal\peripheral\src\dcl_pwm.c", line 357: Warning: #188-D: enumerated type mixed with another type
comm_pwm_driver->pwmClkInit( iPWMNum,rPWMConfig->clksrc,rPWMConfig->clkdiv);
^
hal\peripheral\src\dcl_pwm.c: 5 warnings, 0 errors
Compiling hal\peripheral\src\dcl_rtc.c ...
Compiling hal\system\bootloader\src\drv_comm_bl.c ...
Compiling hal\system\emi\src\emi.c ...
Compiling hal\peripheral\src\f32k_clk.c ...
Compiling hal\storage\flash\mtd\src\flash_cfi.c ...
Compiling hal\storage\flash\mtd\src\flash_disk.c ...
"hal\storage\flash\mtd\src\flash_disk.c", line 187: Warning: #64-D: declaration does not declare anything
extern void waitNonBlockEraseDone();
^
"hal\storage\flash\mtd\src\flash_disk.c", line 187: Warning: #1000-D: a storage class may not be specified here
extern void waitNonBlockEraseDone();
^
"hal\storage\flash\mtd\src\flash_disk.c", line 612: Warning: #223-D: function "MapToCurrentFlashAddr" declared implicitly
baseAddr = MapToCurrentFlashAddr(get_NOR_FLASH_BASE_ADDRESS());
^
hal\storage\flash\mtd\src\flash_disk.c: 3 warnings, 0 errors
Compiling hal\storage\flash\mtd\src\flash_mtd.amd.c ...
Compiling hal\storage\flash\mtd\src\flash_mtd.intel.c ...
Compiling hal\storage\flash\mtd\src\flash_mtd.c ...
Compiling hal\storage\flash\mtd\src\flash_mtd_pf_dal.c ...
Compiling hal\storage\flash\mtd\src\flash_mtd_sf_common.c ...
Compiling hal\storage\flash\mtd\src\flash_mtd_sf_dal.c ...
"hal\storage\flash\mtd\src\flash_mtd_sf_dal.c", line 2607: Warning: #177-D: variable "i" was declared but never referenced
kal_uint8 i;
^
hal\storage\flash\mtd\src\flash_mtd_sf_dal.c: 1 warning, 0 errors
Compiling hal\peripheral\src\gpio.c ...
"hal\peripheral\src\gpio.c", line 631: Warning: #177-D: variable "index" was declared but never referenced
kal_uint32 index;
^
"hal\peripheral\src\gpio.c", line 671: Warning: #177-D: variable "index" was declared but never referenced
kal_uint32 index;
^
"hal\peripheral\src\gpio.c", line 736: Warning: #177-D: variable "savedMask" was declared but never referenced
kal_uint32 savedMask;
^
"hal\peripheral\src\gpio.c", line 737: Warning: #177-D: variable "index" was declared but never referenced
kal_uint32 index;
^
"hal\peripheral\src\gpio.c", line 857: Warning: #177-D: variable "savedMask" was declared but never referenced
kal_uint32 savedMask;
^
"hal\peripheral\src\gpio.c", line 858: Warning: #177-D: variable "index" was declared but never referenced
kal_uint32 index;
^
"hal\peripheral\src\gpio.c", line 859: Warning: #177-D: variable "temp_pull" was declared but never referenced
kal_uint16 temp_pull;
^
"hal\peripheral\src\gpio.c", line 955: Warning: #177-D: variable "savedMask" was declared but never referenced
kal_uint32 savedMask;
^
"hal\peripheral\src\gpio.c", line 1221: Warning: #177-D: variable "savedMask" was declared but never referenced
kal_uint32 savedMask;
^
hal\peripheral\src\gpio.c: 9 warnings, 0 errors
Compiling custom\drv\misc_drv\_DEFAULT_BB\MT6261\gpio_drv.c ...
Compiling custom\drv\common_drv\gpio_setting.c ...
"custom\drv\common_drv\gpio_setting.c", line 274: Warning: #61-D: integer operation result is out of range
const kal_uint32 gpio_mode_allowed[][GPIO_HAVE_MAX_MODE+1] = {GPIO_MODE_ALLOWED_ARRAY};
^
"custom\drv\common_drv\gpio_setting.c", line 274: Warning: #61-D: integer operation result is out of range
const kal_uint32 gpio_mode_allowed[][GPIO_HAVE_MAX_MODE+1] = {GPIO_MODE_ALLOWED_ARRAY};
^
"custom\drv\common_drv\gpio_setting.c", line 277: Warning: #61-D: integer operation result is out of range
const kal_uint32 gpio_dir_out_allowed[] = {GPIO_DIR_OUT_ALLOWED_ARRAY};
^
"custom\drv\common_drv\gpio_setting.c", line 306: Warning: #61-D: integer operation result is out of range
kal_uint32 dir_temp[GPIO_DIR_REG_MAX_NUM+1] = { GPIO_DIR_ALL_VALUE };
^
"custom\drv\common_drv\gpio_setting.c", line 398: Warning: #61-D: integer operation result is out of range
kal_uint32 pupd_temp[GPIO_PUPD_REG_MAX_NUM+1] = { GPIO_PUPD_ALL_VALUE };
^
"custom\drv\common_drv\gpio_setting.c", line 453: Warning: #177-D: variable "i" was declared but never referenced
kal_uint8 i;
^
"custom\drv\common_drv\gpio_setting.c", line 473: Warning: #177-D: variable "i" was declared but never referenced
kal_uint8 i;
^
"custom\drv\common_drv\gpio_setting.c", line 492: Warning: #177-D: variable "i" was declared but never referenced
kal_uint8 i;
^
"custom\drv\common_drv\gpio_setting.c", line 510: Warning: #177-D: variable "i" was declared but never referenced
kal_uint8 i;
^
"custom\drv\common_drv\gpio_setting.c", line 530: Warning: #177-D: variable "i" was declared but never referenced
kal_uint8 i;
^
"custom\drv\common_drv\gpio_setting.c", line 551: Warning: #177-D: variable "i" was declared but never referenced
kal_uint8 i;
^
custom\drv\common_drv\gpio_setting.c: 11 warnings, 0 errors
Compiling custom\codegen\KEYTAK61D_GB_11C_BB\gpio_var.c ...
Compiling hal\system\init\src\init_comm.c ...
Compiling hal\peripheral\src\keypad_bl.c ...
"hal\peripheral\src\keypad_bl.c", line 792: Warning: #177-D: variable "u4KeyReg" was declared but never referenced
kal_uint16 u4KeyReg = 0;
^
"hal\peripheral\src\keypad_bl.c", line 735: Warning: #177-D: function "kbd_get_status_reg" was declared but never referenced
static void kbd_get_status_reg(HKBD_CTRL_STA_MAP_T *pkeypad_status)
^
hal\peripheral\src\keypad_bl.c: 2 warnings, 0 errors
Compiling custom\drv\misc_drv\_DEFAULT_BB\MT6261\keypad_def.c ...
Compiling hal\system\bootloader\src\lcd_display.c ...
Compiling hal\peripheral\src\lpwr.c ...
Compiling hal\system\bootloader\src\msdc_adap_bl.c ...
Compiling hal\system\bootloader\src\msdc_dma_bl.c ...
Compiling custom\drv\common_drv\nld_central_ctrl.c ...
Compiling hal\system\pdn\src\pdn.c ...
Compiling hal\system\pdn\src\pdnoldarch.c ...
Compiling hal\system\bootloader\src\pmic_adpt_bl.c ...
Compiling custom\drv\misc_drv\_DEFAULT_BB\MT6261\pmu_custom.c ...
"custom\drv\misc_drv\_DEFAULT_BB\MT6261\pmu_custom.c", line 183: Warning: #177-D: variable "kpledSetSel" was declared but never referenced
PMU_CTRL_KPLED_SET_SEL kpledSetSel;
^
"custom\drv\misc_drv\_DEFAULT_BB\MT6261\pmu_custom.c", line 204: Warning: #550-D: variable "isinkCtrlMode" was set but never used
PMU_CTRL_ISINK_SET_MODE isinkCtrlMode;
^
custom\drv\misc_drv\_DEFAULT_BB\MT6261\pmu_custom.c: 2 warnings, 0 errors
Compiling custom\drv\common_drv\pwic_cust.c ...
"custom/codegen/KEYTAK61D_GB_11C_BB/pwm_drv.h", line 35: Warning: #47-D: incompatible redefinition of macro "DCL_NONE" (declared at line 32)
#define DCL_NONE DCL_PWM4
^
custom\drv\common_drv\pwic_cust.c: 1 warning, 0 errors
Compiling hal\peripheral\src\pwm.c ...
"custom/codegen/KEYTAK61D_GB_11C_BB/pwm_drv.h", line 35: Warning: #47-D: incompatible redefinition of macro "DCL_NONE" (declared at line 32)
#define DCL_NONE DCL_PWM4
^
"hal\peripheral\src\pwm.c", line 729: Warning: #177-D: variable "i" was declared but never referenced
kal_uint8 i;
^
"hal\peripheral\src\pwm.c", line 991: Warning: #550-D: variable "clock" was set but never used
kal_uint32 clock = 0;
^
"hal\peripheral\src\pwm.c", line 1042: Warning: #550-D: variable "clock" was set but never used
kal_uint32 clock = 0;
^
"hal\peripheral\src\pwm.c", line 558: Warning: C3017W: tmp_channel may be used before being set
volatile kal_uint16 tmp_channel;
^
"hal\peripheral\src\pwm.c", line 634: Warning: C3017W: reg_channel may be used before being set
kal_uint16 reg_channel;
^
hal\peripheral\src\pwm.c: 6 warnings, 0 errors
Compiling hal\peripheral\src\rtc.c ...
"hal\peripheral\src\rtc.c", line 2495: Warning: #177-D: variable "reg_val" was declared but never referenced
kal_uint16 reg_val = 0xf;
^
"hal\peripheral\src\rtc.c", line 2555: Warning: #177-D: variable "reg_val" was declared but never referenced
kal_uint16 reg_val = 0xf;
^
"hal\peripheral\src\rtc.c", line 4981: Warning: C3017W: reg_addr may be used before being set
kal_uint32 reg_addr;
^
hal\peripheral\src\rtc.c: 3 warnings, 0 errors
Compiling hal\peripheral\src\sw_keypad.c ...
"hal\peripheral\src\sw_keypad.c", line 745: Warning: #177-D: variable "sw_kbd_get_status_consuming_time" was declared but never referenced
kal_uint32 sw_kbd_get_status_consuming_time =0;
^
"hal\peripheral\src\sw_keypad.c", line 819: Warning: #177-D: variable "i" was declared but never referenced
kal_uint32 i =0;
^
hal\peripheral\src\sw_keypad.c: 2 warnings, 0 errors
Compiling custom\drv\misc_drv\_DEFAULT_BB\MT6261\usb_custom.c ...
Compiling hal\system\bootloader\src\usbdl_debug_tool.c ...
Compiling hal\system\bootloader\src\usbdl_pmu.c ...
Compiling hal\system\bootloader\src\usbdl_upll.c ...
Compiling hal\system\bootloader\src\usbdl_usb.c ...
Compiling hal\system\bootloader\src\usbdl_usb_drv.c ...
Compiling hal\system\bootloader\src\usbdl_usb_resource.c ...
Compiling hal\system\bootloader\src\usbdl_usbacm_adap.c ...
Compiling hal\system\bootloader\src\usbdl_usbacm_drv.c ...
make[2]: Entering directory `D:/Project/61D_GPRS_1418/CODE_V00'
make\comp.mak:1279: warning: overriding commands for target `bl_GFH_body.obj'
make\comp.mak:1279: warning: ignoring old commands for target `bl_GFH_body.obj'
make\comp.mak:1279: warning: overriding commands for target `bl_GFH_body.det'
make\comp.mak:1279: warning: ignoring old commands for target `bl_GFH_body.det'
make\comp.mak:1279: warning: overriding commands for target `bl_ImageLoader_v5.obj'
make\comp.mak:1279: warning: ignoring old commands for target `bl_ImageLoader_v5.obj'
make\comp.mak:1279: warning: overriding commands for target `bl_ImageLoader_v5.det'
make\comp.mak:1279: warning: ignoring old commands for target `bl_ImageLoader_v5.det'
CFLAGS = --cpu ARM7EJ-S --littleend -O3 --remove_unneeded_entities -D__RVCT__ -JC:\ARM\RVCT31_569\Data\3.1\569\include\windows --fpmode=ieee_fixed --split_sections --diag_suppress 1,1295,1296,2548 --dwarf2 -D__SERIAL_FLASH_EN__ -D__SERIAL_FLASH_SUPPORT__ --bss_threshold=0
CPLUSFLAGS = --cpp --cpu ARM7EJ-S --littleend -O3 --remove_unneeded_entities -D__RVCT__ -JC:\ARM\RVCT31_569\Data\3.1\569\include\windows --fpmode=ieee_fixed --split_sections --diag_suppress 1,1295,1296,2548 --dwarf2 --bss_threshold=0
AFLAGS = --debug --littleend --cpu ARM7EJ-S --apcs /interwork -16
ADEFS = -pd "BL_ECC_ENABLE SETL {TRUE}" -pd "__UBL__ SETL {TRUE}" -pd "__EXT_BOOTLOADER__ SETL {TRUE}" -pd "USBACM_TX_WITHOUT_DMA SETL {TRUE}" -pd "BL_ENABLE SETL {TRUE}" -pd "__CP_DEFINED_ALL_CONTEXT__ SETL {TRUE}" -pd "__CP_DEFINED_WORKING_BUF__ SETL {TRUE}" -pd "__CRYPTO_LIB__ SETL {TRUE}" -pd "__CRYPTO_SCHEME__ SETL {TRUE}" -pd "MT6261 SETL {TRUE}" -pd "__NOR_FULL_DRIVER__ SETL {TRUE}" -pd "BL_DEBUG SETL {TRUE}" -pd "MT6261 SETL {TRUE}" -pd "MT6261_S00 SETL {TRUE}" -pd "__SV5_ENABLED__ SETL {TRUE}" -pd "__EVENT_BASED_TIMER__ SETL {TRUE}" -pd "__PRODUCTION_RELEASE__ SETL {TRUE}" -pd "KAL_ON_NUCLEUS SETL {TRUE}" -pd "__CHIP_VERSION_CHECK__ SETL {TRUE}" -pd "__ZIMAGE_SUPPORT__ SETL {TRUE}" -pd "ESAL_AR_STK_FPU_SUPPORT SETL {FALSE}" -pd "__ARM_FPUV2__ SETL {FALSE}" -pd "__SERIAL_FLASH_EN__ SETL {TRUE}" -pd "__SERIAL_FLASH_SUPPORT__ SETL {TRUE}"
C:\ARM\RVCT31_569\Programs\3.1\569\win_32-pentium\armar.exe -create ./build/KEYTAK61D_GB_11C/gprs/MT6261o/lib/bootloader_ext.lib --via .\build\KEYTAK61D_GB_11C\gprs\MT6261o\bootloader_ext\bootloader_ext_sort.via
Warning: L3910W: Old syntax, please use '--create'.
./build/KEYTAK61D_GB_11C/gprs/MT6261o/lib/bootloader_ext.lib is updated
.\build\KEYTAK61D_GB_11C\gprs\MT6261r\bootloader_ext_dep\arm_unaligned.det
.\build\KEYTAK61D_GB_11C\gprs\MT6261r\bootloader_ext_dep\bl_Alg.det
.\build\KEYTAK61D_GB_11C\gprs\MT6261r\bootloader_ext_dep\bl_BOOTARM.det
.\build\KEYTAK61D_GB_11C\gprs\MT6261r\bootloader_ext_dep\bl_Cache.det
.\build\KEYTAK61D_GB_11C\gprs\MT6261r\bootloader_ext_dep\bl_DBGPRINT.det
.\build\KEYTAK61D_GB_11C\gprs\MT6261r\bootloader_ext_dep\bl_FOTA.det
.\build\KEYTAK61D_GB_11C\gprs\MT6261r\bootloader_ext_dep\bl_FTL.det
.\build\KEYTAK61D_GB_11C\gprs\MT6261r\bootloader_ext_dep\bl_FUNET.det
.\build\KEYTAK61D_GB_11C\gprs\MT6261r\bootloader_ext_dep\bl_GFH_body.det
.\build\KEYTAK61D_GB_11C\gprs\MT6261r\bootloader_ext_dep\bl_ImageLoader.det
.\build\KEYTAK61D_GB_11C\gprs\MT6261r\bootloader_ext_dep\bl_ImageLoaderCommon.det
.\build\KEYTAK61D_GB_11C\gprs\MT6261r\bootloader_ext_dep\bl_ImageLoader_v5.det
.\build\KEYTAK61D_GB_11C\gprs\MT6261r\bootloader_ext_dep\bl_Init.det
.\build\KEYTAK61D_GB_11C\gprs\MT6261r\bootloader_ext_dep\bl_Main.det
.\build\KEYTAK61D_GB_11C\gprs\MT6261r\bootloader_ext_dep\bl_NFI.det
.\build\KEYTAK61D_GB_11C\gprs\MT6261r\bootloader_ext_dep\bl_NFI_V3.det
.\build\KEYTAK61D_GB_11C\gprs\MT6261r\bootloader_ext_dep\bl_NFI_V31.det
.\build\KEYTAK61D_GB_11C\gprs\MT6261r\bootloader_ext_dep\bl_pdn.det
.\build\KEYTAK61D_GB_11C\gprs\MT6261r\bootloader_ext_dep\bl_portingfunc.det
.\build\KEYTAK61D_GB_11C\gprs\MT6261r\bootloader_ext_dep\bl_regioninit.det
.\build\KEYTAK61D_GB_11C\gprs\MT6261r\bootloader_ext_dep\bl_SNAND_V2.det
.\build\KEYTAK61D_GB_11C\gprs\MT6261r\bootloader_ext_dep\bl_STT_SF.det
.\build\KEYTAK61D_GB_11C\gprs\MT6261r\bootloader_ext_dep\bl_UART.det
.\build\KEYTAK61D_GB_11C\gprs\MT6261r\bootloader_ext_dep\bl_Update.det
.\build\KEYTAK61D_GB_11C\gprs\MT6261r\bootloader_ext_dep\bl_verno.det
.\build\KEYTAK61D_GB_11C\gprs\MT6261r\bootloader_ext_dep\bmt_bl_chr_setting.det
.\build\KEYTAK61D_GB_11C\gprs\MT6261r\bootloader_ext_dep\bmt_hw.det
.\build\KEYTAK61D_GB_11C\gprs\MT6261r\bootloader_ext_dep\br_GFH_file_info.det
.\build\KEYTAK61D_GB_11C\gprs\MT6261r\bootloader_ext_dep\br_GFH_parser.det
.\build\KEYTAK61D_GB_11C\gprs\MT6261r\bootloader_ext_dep\cache.det
.\build\KEYTAK61D_GB_11C\gprs\MT6261r\bootloader_ext_dep\CBR.det
.\build\KEYTAK61D_GB_11C\gprs\MT6261r\bootloader_ext_dep\cbr_util.det
.\build\KEYTAK61D_GB_11C\gprs\MT6261r\bootloader_ext_dep\combo_flash_init.det
.\build\KEYTAK61D_GB_11C\gprs\MT6261r\bootloader_ext_dep\combo_flash_nor.det
.\build\KEYTAK61D_GB_11C\gprs\MT6261r\bootloader_ext_dep\cp15.det
.\build\KEYTAK61D_GB_11C\gprs\MT6261r\bootloader_ext_dep\custom_blconfig.det
.\build\KEYTAK61D_GB_11C\gprs\MT6261r\bootloader_ext_dep\custom_flash.det
.\build\KEYTAK61D_GB_11C\gprs\MT6261r\bootloader_ext_dep\custom_hw_default.det
.\build\KEYTAK61D_GB_11C\gprs\MT6261r\bootloader_ext_dep\custom_img_config.det
.\build\KEYTAK61D_GB_11C\gprs\MT6261r\bootloader_ext_dep\custom_sfi.det
.\build\KEYTAK61D_GB_11C\gprs\MT6261r\bootloader_ext_dep\custom_SNAND.det
.\build\KEYTAK61D_GB_11C\gprs\MT6261r\bootloader_ext_dep\dcl_f32k_clk.det
.\build\KEYTAK61D_GB_11C\gprs\MT6261r\bootloader_ext_dep\dcl_gpio.det
.\build\KEYTAK61D_GB_11C\gprs\MT6261r\bootloader_ext_dep\dcl_pmu.det
.\build\KEYTAK61D_GB_11C\gprs\MT6261r\bootloader_ext_dep\dcl_pmu6261.det
.\build\KEYTAK61D_GB_11C\gprs\MT6261r\bootloader_ext_dep\dcl_pmu6261_init.det
.\build\KEYTAK61D_GB_11C\gprs\MT6261r\bootloader_ext_dep\dcl_pmu_common.det
.\build\KEYTAK61D_GB_11C\gprs\MT6261r\bootloader_ext_dep\dcl_pwm.det
.\build\KEYTAK61D_GB_11C\gprs\MT6261r\bootloader_ext_dep\dcl_rtc.det
.\build\KEYTAK61D_GB_11C\gprs\MT6261r\bootloader_ext_dep\drv_comm_bl.det
.\build\KEYTAK61D_GB_11C\gprs\MT6261r\bootloader_ext_dep\emi.det
.\build\KEYTAK61D_GB_11C\gprs\MT6261r\bootloader_ext_dep\f32k_clk.det
.\build\KEYTAK61D_GB_11C\gprs\MT6261r\bootloader_ext_dep\flash_cfi.det
.\build\KEYTAK61D_GB_11C\gprs\MT6261r\bootloader_ext_dep\flash_disk.det
.\build\KEYTAK61D_GB_11C\gprs\MT6261r\bootloader_ext_dep\flash_mtd.amd.det
.\build\KEYTAK61D_GB_11C\gprs\MT6261r\bootloader_ext_dep\flash_mtd.det
.\build\KEYTAK61D_GB_11C\gprs\MT6261r\bootloader_ext_dep\flash_mtd.intel.det
.\build\KEYTAK61D_GB_11C\gprs\MT6261r\bootloader_ext_dep\flash_mtd_pf_dal.det
.\build\KEYTAK61D_GB_11C\gprs\MT6261r\bootloader_ext_dep\flash_mtd_sf_common.det
.\build\KEYTAK61D_GB_11C\gprs\MT6261r\bootloader_ext_dep\flash_mtd_sf_dal.det
.\build\KEYTAK61D_GB_11C\gprs\MT6261r\bootloader_ext_dep\gpio.det
.\build\KEYTAK61D_GB_11C\gprs\MT6261r\bootloader_ext_dep\gpio_drv.det
.\build\KEYTAK61D_GB_11C\gprs\MT6261r\bootloader_ext_dep\gpio_setting.det
.\build\KEYTAK61D_GB_11C\gprs\MT6261r\bootloader_ext_dep\gpio_var.det
.\build\KEYTAK61D_GB_11C\gprs\MT6261r\bootloader_ext_dep\init_comm.det
.\build\KEYTAK61D_GB_11C\gprs\MT6261r\bootloader_ext_dep\keypad_bl.det
.\build\KEYTAK61D_GB_11C\gprs\MT6261r\bootloader_ext_dep\keypad_def.det
.\build\KEYTAK61D_GB_11C\gprs\MT6261r\bootloader_ext_dep\lcd_display.det
.\build\KEYTAK61D_GB_11C\gprs\MT6261r\bootloader_ext_dep\lpwr.det
.\build\KEYTAK61D_GB_11C\gprs\MT6261r\bootloader_ext_dep\msdc_adap_bl.det
.\build\KEYTAK61D_GB_11C\gprs\MT6261r\bootloader_ext_dep\msdc_dma_bl.det
.\build\KEYTAK61D_GB_11C\gprs\MT6261r\bootloader_ext_dep\nld_central_ctrl.det
.\build\KEYTAK61D_GB_11C\gprs\MT6261r\bootloader_ext_dep\pdn.det
.\build\KEYTAK61D_GB_11C\gprs\MT6261r\bootloader_ext_dep\pdnoldarch.det
.\build\KEYTAK61D_GB_11C\gprs\MT6261r\bootloader_ext_dep\pmic_adpt_bl.det
.\build\KEYTAK61D_GB_11C\gprs\MT6261r\bootloader_ext_dep\pmu_custom.det
.\build\KEYTAK61D_GB_11C\gprs\MT6261r\bootloader_ext_dep\pwic_cust.det
.\build\KEYTAK61D_GB_11C\gprs\MT6261r\bootloader_ext_dep\pwm.det
.\build\KEYTAK61D_GB_11C\gprs\MT6261r\bootloader_ext_dep\rtc.det
.\build\KEYTAK61D_GB_11C\gprs\MT6261r\bootloader_ext_dep\SPI_NAND_DAL.det
.\build\KEYTAK61D_GB_11C\gprs\MT6261r\bootloader_ext_dep\SPI_NAND_DevConfig.det
.\build\KEYTAK61D_GB_11C\gprs\MT6261r\bootloader_ext_dep\SPI_NAND_MTD_FDM50.det
.\build\KEYTAK61D_GB_11C\gprs\MT6261r\bootloader_ext_dep\sw_keypad.det
.\build\KEYTAK61D_GB_11C\gprs\MT6261r\bootloader_ext_dep\usbdl_debug_tool.det
.\build\KEYTAK61D_GB_11C\gprs\MT6261r\bootloader_ext_dep\usbdl_pmu.det
.\build\KEYTAK61D_GB_11C\gprs\MT6261r\bootloader_ext_dep\usbdl_upll.det
.\build\KEYTAK61D_GB_11C\gprs\MT6261r\bootloader_ext_dep\usbdl_usb.det
.\build\KEYTAK61D_GB_11C\gprs\MT6261r\bootloader_ext_dep\usbdl_usbacm_adap.det
.\build\KEYTAK61D_GB_11C\gprs\MT6261r\bootloader_ext_dep\usbdl_usbacm_drv.det
.\build\KEYTAK61D_GB_11C\gprs\MT6261r\bootloader_ext_dep\usbdl_usb_drv.det
.\build\KEYTAK61D_GB_11C\gprs\MT6261r\bootloader_ext_dep\usbdl_usb_resource.det
.\build\KEYTAK61D_GB_11C\gprs\MT6261r\bootloader_ext_dep\usb_custom.det
Processing arm_unaligned.det bl_Alg.det bl_BOOTARM.det bl_Cache.det bl_DBGPRINT.det bl_FOTA.det bl_FTL.det bl_FUNET.det bl_GFH_body.det bl_ImageLoader.det bl_ImageLoaderCommon.det bl_ImageLoader_v5.det bl_Init.det bl_Main.det bl_NFI.det bl_NFI_V3.det bl_NFI_V31.det bl_pdn.det bl_portingfunc.det bl_regioninit.det bl_SNAND_V2.det bl_STT_SF.det bl_UART.det bl_Update.det bl_verno.det bmt_bl_chr_setting.det bmt_hw.det br_GFH_file_info.det br_GFH_parser.det cache.det CBR.det cbr_util.det combo_flash_init.det combo_flash_nor.det cp15.det custom_blconfig.det custom_flash.det custom_hw_default.det custom_img_config.det custom_sfi.det custom_SNAND.det dcl_f32k_clk.det dcl_gpio.det dcl_pmu.det dcl_pmu6261.det dcl_pmu6261_init.det dcl_pmu_common.det dcl_pwm.det dcl_rtc.det drv_comm_bl.det emi.det f32k_clk.det flash_cfi.det flash_disk.det flash_mtd.amd.det flash_mtd.det flash_mtd.intel.det flash_mtd_pf_dal.det flash_mtd_sf_common.det flash_mtd_sf_dal.det gpio.det gpio_drv.det gpio_setting.det gpio_var.det init_comm.det keypad_bl.det keypad_def.det lcd_display.det lpwr.det msdc_adap_bl.det msdc_dma_bl.det nld_central_ctrl.det pdn.det pdnoldarch.det pmic_adpt_bl.det pmu_custom.det pwic_cust.det pwm.det rtc.det SPI_NAND_DAL.det SPI_NAND_DevConfig.det SPI_NAND_MTD_FDM50.det sw_keypad.det usbdl_debug_tool.det usbdl_pmu.det usbdl_upll.det usbdl_usb.det usbdl_usbacm_adap.det usbdl_usbacm_drv.det usbdl_usb_drv.det usbdl_usb_resource.det usb_custom.det
make[2]: Leaving directory `D:/Project/61D_GPRS_1418/CODE_V00'
Warning: L3910W: Old syntax, please use '--scatter'.
Warning: L3910W: Old syntax, please use '--output'.
Warning: L3910W: Old syntax, please use '--symdefs'.
Warning: L3910W: Old syntax, please use '--list'.
Warning: L3910W: Old syntax, please use '--libpath'.
Warning: L6340W: options first and last are ignored for link type of scattered
Warning: L6320W: Ignoring --first command. Cannot find argument 'LARGEPOOL_FIRST_ZI'.
Warning: L6320W: Ignoring --keep command. Cannot find argument 'EMI_INFO_2'.
Warning: L6320W: Ignoring --keep command. Cannot find argument 'CUST_MEM_INFO'.
Warning: L6320W: Ignoring --keep command. Cannot find argument 'g_bl_maui_paired_ver'.
Warning: L6320W: Ignoring --keep command. Cannot find argument 'DL_CTRL_BIN'.
Warning: L6320W: Ignoring --keep command. Cannot find argument 'g_boot_cert_sig'.
Warning: L6320W: Ignoring --keep command. Cannot find argument 'logical_data_item_table_core'.
Warning: L6320W: Ignoring --keep command. Cannot find argument 'logical_data_item_table_internal'.
Warning: L6320W: Ignoring --keep command. Cannot find argument 'logical_data_item_table_factory'.
Warning: L6320W: Ignoring --keep command. Cannot find argument 'logical_data_item_table_adc'.
Warning: L6320W: Ignoring --keep command. Cannot find argument 'logical_data_item_table_camera'.
Warning: L6320W: Ignoring --keep command. Cannot find argument 'logical_data_item_table_touchpanel'.
Warning: L6320W: Ignoring --keep command. Cannot find argument 'logical_data_item_table_ul1'.
Warning: L6320W: Ignoring --keep command. Cannot find argument 'logical_data_item_table_audio'.
Warning: L6320W: Ignoring --keep command. Cannot find argument 'logical_data_item_table_mmi_gps'.
Warning: L6320W: Ignoring --keep command. Cannot find argument 'logical_data_item_table_userprofile'.
Warning: L6320W: Ignoring --keep command. Cannot find argument 'logical_data_item_table_common_app'.
Warning: L6320W: Ignoring --keep command. Cannot find argument 'logical_data_item_table_cust'.
Warning: L6320W: Ignoring --keep command. Cannot find argument 'g_fs_quota_init'.
Warning: L6320W: Ignoring --keep command. Cannot find argument 'g_nvram_custpack_init'.
Warning: L6320W: Ignoring --keep command. Cannot find argument 'IMG_BL_INFO'.
Warning: L6320W: Ignoring --keep command. Cannot find argument 'g_ExtBootloaderInfo'.
"custom\system\KEYTAK61D_GB_11C_BB\scatBL_MT6261_ext.txt", line 87 (column 17): Warning: L6314W: No section matches pattern *.obj(HEAD_BL).
"custom\system\KEYTAK61D_GB_11C_BB\scatBL_MT6261_ext.txt", line 88 (column 13): Warning: L6329W: Pattern *(INIT_CODE) only matches removed unused sections.
"custom\system\KEYTAK61D_GB_11C_BB\scatBL_MT6261_ext.txt", line 101 (column 41): Warning: L6329W: Pattern sha1_engine.obj(RO) only matches removed unused sections.
"custom\system\KEYTAK61D_GB_11C_BB\scatBL_MT6261_ext.txt", line 102 (column 41): Warning: L6314W: No section matches pattern md5_engine.obj(RO).
"custom\system\KEYTAK61D_GB_11C_BB\scatBL_MT6261_ext.txt", line 103 (column 41): Warning: L6314W: No section matches pattern br_crypto_asm.obj(RO).
"custom\system\KEYTAK61D_GB_11C_BB\scatBL_MT6261_ext.txt", line 104 (column 41): Warning: L6329W: Pattern br_crypto_drv*.obj(RO) only matches removed unused sections.
"custom\system\KEYTAK61D_GB_11C_BB\scatBL_MT6261_ext.txt", line 105 (column 41): Warning: L6314W: No section matches pattern br_sha256_sw.obj(RO).
"custom\system\KEYTAK61D_GB_11C_BB\scatBL_MT6261_ext.txt", line 106 (column 41): Warning: L6314W: No section matches pattern br_sha256_hw.obj(RO).
"custom\system\KEYTAK61D_GB_11C_BB\scatBL_MT6261_ext.txt", line 107 (column 41): Warning: L6314W: No section matches pattern br_sha1_sw.obj(RO).
"custom\system\KEYTAK61D_GB_11C_BB\scatBL_MT6261_ext.txt", line 108 (column 41): Warning: L6314W: No section matches pattern br_sha1_hw.obj(RO).
"custom\system\KEYTAK61D_GB_11C_BB\scatBL_MT6261_ext.txt", line 109 (column 41): Warning: L6314W: No section matches pattern br_rsa_sw.obj(RO).
"custom\system\KEYTAK61D_GB_11C_BB\scatBL_MT6261_ext.txt", line 110 (column 41): Warning: L6314W: No section matches pattern br_M1_rsa.obj(RO).
"custom\system\KEYTAK61D_GB_11C_BB\scatBL_MT6261_ext.txt", line 111 (column 41): Warning: L6329W: Pattern br_crypto_platform.obj(RO) only matches removed unused sections.
"custom\system\KEYTAK61D_GB_11C_BB\scatBL_MT6261_ext.txt", line 120 (column 41): Warning: L6314W: No section matches pattern sha1_engine.obj(RW).
"custom\system\KEYTAK61D_GB_11C_BB\scatBL_MT6261_ext.txt", line 120 (column 46): Warning: L6329W: Pattern sha1_engine.obj(ZI) only matches removed unused sections.
"custom\system\KEYTAK61D_GB_11C_BB\scatBL_MT6261_ext.txt", line 121 (column 41): Warning: L6314W: No section matches pattern md5_engine.obj(RW).
"custom\system\KEYTAK61D_GB_11C_BB\scatBL_MT6261_ext.txt", line 121 (column 46): Warning: L6314W: No section matches pattern md5_engine.obj(ZI).
"custom\system\KEYTAK61D_GB_11C_BB\scatBL_MT6261_ext.txt", line 122 (column 41): Warning: L6314W: No section matches pattern br_crypto_asm.obj(RW).
"custom\system\KEYTAK61D_GB_11C_BB\scatBL_MT6261_ext.txt", line 122 (column 46): Warning: L6314W: No section matches pattern br_crypto_asm.obj(ZI).
"custom\system\KEYTAK61D_GB_11C_BB\scatBL_MT6261_ext.txt", line 123 (column 41): Warning: L6314W: No section matches pattern br_crypto_drv*.obj(RW).
"custom\system\KEYTAK61D_GB_11C_BB\scatBL_MT6261_ext.txt", line 123 (column 46): Warning: L6314W: No section matches pattern br_crypto_drv*.obj(ZI).
"custom\system\KEYTAK61D_GB_11C_BB\scatBL_MT6261_ext.txt", line 124 (column 41): Warning: L6314W: No section matches pattern br_sha256_sw.obj(RW).
"custom\system\KEYTAK61D_GB_11C_BB\scatBL_MT6261_ext.txt", line 124 (column 46): Warning: L6314W: No section matches pattern br_sha256_sw.obj(ZI).
"custom\system\KEYTAK61D_GB_11C_BB\scatBL_MT6261_ext.txt", line 125 (column 41): Warning: L6314W: No section matches pattern br_sha256_hw.obj(RW).
"custom\system\KEYTAK61D_GB_11C_BB\scatBL_MT6261_ext.txt", line 125 (column 46): Warning: L6314W: No section matches pattern br_sha256_hw.obj(ZI).
"custom\system\KEYTAK61D_GB_11C_BB\scatBL_MT6261_ext.txt", line 126 (column 41): Warning: L6314W: No section matches pattern br_sha1_sw.obj(RW).
"custom\system\KEYTAK61D_GB_11C_BB\scatBL_MT6261_ext.txt", line 126 (column 46): Warning: L6314W: No section matches pattern br_sha1_sw.obj(ZI).
"custom\system\KEYTAK61D_GB_11C_BB\scatBL_MT6261_ext.txt", line 127 (column 41): Warning: L6314W: No section matches pattern br_sha1_hw.obj(RW).
"custom\system\KEYTAK61D_GB_11C_BB\scatBL_MT6261_ext.txt", line 127 (column 46): Warning: L6314W: No section matches pattern br_sha1_hw.obj(ZI).
"custom\system\KEYTAK61D_GB_11C_BB\scatBL_MT6261_ext.txt", line 128 (column 41): Warning: L6314W: No section matches pattern br_rsa_sw.obj(RW).
"custom\system\KEYTAK61D_GB_11C_BB\scatBL_MT6261_ext.txt", line 128 (column 46): Warning: L6314W: No section matches pattern br_rsa_sw.obj(ZI).
"custom\system\KEYTAK61D_GB_11C_BB\scatBL_MT6261_ext.txt", line 129 (column 41): Warning: L6314W: No section matches pattern br_M1_RSA.obj(RW).
"custom\system\KEYTAK61D_GB_11C_BB\scatBL_MT6261_ext.txt", line 129 (column 46): Warning: L6314W: No section matches pattern br_M1_RSA.obj(ZI).
"custom\system\KEYTAK61D_GB_11C_BB\scatBL_MT6261_ext.txt", line 130 (column 41): Warning: L6314W: No section matches pattern br_crypto_platform.obj(RW).
"custom\system\KEYTAK61D_GB_11C_BB\scatBL_MT6261_ext.txt", line 130 (column 46): Warning: L6329W: Pattern br_crypto_platform.obj(ZI) only matches removed unused sections.
"custom\system\KEYTAK61D_GB_11C_BB\scatBL_MT6261_ext.txt", line 145 (column 40): Warning: L6329W: Pattern bl_cache.obj(BL_PAGETABLE) only matches removed unused sections.
Finished: 0 information, 64 warning and 0 error messages.