blob: 25d8eaed75ba9a033b87466d3d7cf387e5b3a2c4 (
plain)
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
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
3001
3002
3003
3004
3005
3006
3007
3008
3009
3010
3011
3012
3013
3014
3015
3016
3017
3018
3019
3020
3021
3022
3023
3024
3025
3026
3027
3028
3029
3030
3031
3032
3033
3034
3035
3036
3037
3038
3039
3040
3041
3042
3043
3044
3045
3046
3047
3048
3049
3050
3051
3052
3053
3054
3055
3056
3057
3058
3059
3060
3061
3062
3063
3064
3065
3066
3067
3068
3069
3070
3071
3072
3073
3074
3075
3076
3077
3078
3079
3080
3081
3082
3083
3084
3085
3086
3087
3088
3089
3090
3091
3092
3093
3094
3095
3096
3097
3098
3099
3100
3101
3102
3103
3104
3105
3106
3107
3108
3109
3110
3111
3112
3113
3114
3115
3116
3117
3118
3119
3120
3121
3122
3123
3124
3125
3126
3127
3128
3129
3130
3131
3132
3133
3134
3135
3136
3137
3138
3139
3140
3141
3142
3143
3144
3145
3146
3147
3148
3149
3150
3151
3152
3153
3154
3155
3156
3157
3158
3159
3160
3161
3162
3163
3164
3165
3166
3167
3168
3169
3170
3171
3172
3173
3174
3175
3176
3177
3178
3179
3180
3181
3182
3183
3184
3185
3186
3187
3188
3189
3190
3191
3192
3193
3194
3195
3196
3197
3198
3199
3200
3201
3202
3203
3204
3205
3206
3207
3208
3209
3210
3211
3212
3213
3214
3215
3216
3217
3218
3219
3220
3221
3222
3223
3224
3225
3226
3227
3228
3229
3230
3231
3232
3233
3234
3235
3236
3237
3238
3239
3240
3241
3242
3243
3244
3245
3246
3247
3248
3249
3250
3251
3252
3253
3254
3255
3256
3257
3258
3259
3260
3261
3262
3263
3264
3265
3266
3267
3268
3269
3270
3271
3272
3273
3274
3275
3276
3277
3278
3279
3280
3281
3282
3283
3284
3285
3286
3287
3288
3289
3290
3291
3292
3293
3294
3295
3296
3297
3298
3299
3300
3301
3302
3303
3304
3305
3306
3307
3308
3309
3310
3311
3312
3313
3314
3315
3316
3317
3318
3319
3320
3321
3322
3323
3324
3325
3326
3327
3328
3329
3330
3331
3332
3333
3334
3335
3336
3337
3338
3339
3340
3341
3342
3343
3344
3345
3346
3347
3348
3349
3350
3351
3352
3353
3354
3355
3356
3357
3358
3359
3360
3361
3362
3363
3364
3365
3366
3367
3368
3369
3370
3371
3372
3373
3374
3375
3376
3377
3378
3379
3380
3381
3382
3383
3384
3385
3386
3387
3388
3389
3390
3391
3392
3393
3394
3395
3396
3397
3398
3399
3400
3401
3402
3403
3404
3405
3406
3407
3408
3409
3410
3411
3412
3413
3414
3415
3416
3417
3418
3419
3420
3421
3422
3423
3424
3425
3426
3427
3428
3429
3430
3431
3432
3433
3434
3435
3436
3437
3438
3439
3440
3441
3442
3443
3444
3445
3446
3447
3448
3449
3450
3451
3452
3453
3454
3455
3456
3457
3458
3459
3460
3461
3462
3463
3464
3465
3466
3467
3468
3469
3470
3471
3472
3473
3474
3475
3476
3477
3478
3479
3480
3481
3482
3483
3484
3485
3486
3487
3488
3489
3490
3491
3492
3493
3494
3495
3496
3497
3498
3499
3500
3501
3502
3503
3504
3505
3506
3507
3508
3509
3510
3511
3512
3513
3514
3515
3516
3517
3518
3519
3520
3521
3522
3523
3524
3525
3526
3527
3528
3529
3530
3531
3532
3533
3534
3535
3536
3537
3538
3539
3540
3541
3542
3543
3544
3545
3546
3547
3548
3549
3550
3551
3552
3553
3554
3555
3556
3557
3558
3559
3560
3561
3562
3563
3564
3565
3566
3567
3568
3569
3570
3571
3572
3573
3574
3575
3576
3577
3578
3579
3580
3581
3582
3583
3584
3585
3586
3587
3588
3589
3590
3591
3592
3593
3594
3595
3596
3597
3598
3599
3600
3601
3602
3603
3604
3605
3606
3607
3608
3609
3610
3611
3612
3613
3614
3615
3616
3617
3618
3619
3620
3621
3622
3623
3624
3625
3626
3627
3628
3629
3630
3631
3632
3633
3634
3635
3636
3637
3638
3639
3640
3641
3642
3643
3644
3645
3646
3647
3648
3649
3650
3651
3652
3653
3654
3655
3656
3657
3658
3659
3660
3661
3662
3663
3664
3665
3666
3667
3668
3669
3670
3671
3672
3673
3674
3675
3676
3677
3678
3679
3680
3681
3682
3683
3684
3685
3686
3687
3688
3689
3690
3691
3692
3693
3694
3695
3696
3697
3698
3699
3700
3701
3702
3703
3704
3705
3706
3707
3708
3709
3710
3711
3712
3713
3714
3715
3716
3717
3718
3719
3720
3721
3722
3723
3724
3725
3726
3727
3728
3729
3730
3731
3732
3733
3734
3735
3736
3737
3738
3739
3740
3741
3742
3743
3744
3745
3746
3747
3748
3749
3750
3751
3752
3753
3754
3755
3756
3757
3758
3759
3760
3761
3762
3763
3764
3765
3766
3767
3768
3769
3770
3771
3772
3773
3774
3775
3776
3777
3778
3779
3780
3781
3782
3783
3784
3785
3786
3787
3788
3789
3790
3791
3792
3793
3794
3795
3796
3797
3798
3799
3800
3801
3802
3803
3804
3805
3806
3807
3808
3809
3810
3811
3812
3813
3814
3815
3816
3817
3818
3819
3820
3821
3822
3823
3824
3825
3826
3827
3828
3829
3830
3831
3832
3833
3834
3835
3836
3837
3838
3839
3840
3841
3842
3843
3844
3845
3846
3847
3848
3849
3850
3851
3852
3853
3854
3855
3856
3857
3858
3859
3860
3861
3862
3863
3864
3865
3866
3867
3868
3869
3870
3871
3872
3873
3874
3875
3876
3877
3878
3879
3880
3881
3882
3883
3884
3885
3886
3887
3888
3889
3890
3891
3892
3893
3894
3895
3896
3897
3898
3899
3900
3901
3902
3903
3904
3905
3906
3907
3908
3909
3910
3911
3912
3913
3914
3915
3916
3917
3918
3919
3920
3921
3922
3923
3924
3925
3926
3927
3928
3929
3930
3931
3932
3933
3934
3935
3936
3937
3938
3939
3940
3941
3942
3943
3944
3945
3946
3947
3948
3949
3950
3951
3952
3953
3954
3955
3956
3957
3958
3959
3960
3961
3962
3963
3964
3965
3966
3967
3968
3969
3970
3971
3972
3973
3974
3975
3976
3977
3978
3979
3980
3981
3982
3983
3984
3985
3986
3987
3988
3989
3990
3991
3992
3993
3994
3995
3996
3997
3998
3999
4000
4001
4002
4003
4004
4005
4006
4007
4008
4009
4010
4011
4012
4013
4014
4015
4016
4017
4018
4019
4020
4021
4022
4023
4024
4025
4026
4027
4028
4029
4030
4031
4032
4033
4034
4035
4036
4037
4038
4039
4040
4041
4042
4043
4044
4045
4046
4047
4048
4049
4050
4051
4052
4053
4054
4055
4056
4057
4058
4059
4060
4061
4062
4063
4064
4065
4066
4067
4068
4069
4070
4071
4072
4073
4074
4075
4076
4077
4078
4079
4080
4081
4082
4083
4084
4085
4086
4087
4088
4089
4090
4091
4092
4093
4094
4095
4096
4097
4098
4099
4100
4101
4102
4103
4104
4105
4106
4107
4108
4109
4110
4111
4112
4113
4114
4115
4116
4117
4118
4119
4120
4121
4122
4123
4124
4125
4126
4127
4128
4129
4130
4131
4132
4133
4134
4135
4136
4137
4138
4139
4140
4141
4142
4143
4144
4145
4146
4147
4148
4149
4150
4151
4152
4153
4154
4155
4156
4157
4158
4159
4160
4161
4162
4163
4164
4165
4166
4167
4168
4169
4170
4171
4172
4173
4174
4175
4176
4177
4178
4179
4180
4181
4182
4183
4184
4185
4186
4187
4188
4189
4190
4191
4192
4193
4194
4195
4196
4197
4198
4199
4200
4201
4202
4203
4204
4205
4206
4207
4208
4209
4210
4211
4212
4213
4214
4215
4216
4217
4218
4219
4220
4221
4222
4223
4224
4225
4226
4227
4228
4229
4230
4231
4232
4233
4234
4235
4236
4237
4238
4239
4240
4241
4242
4243
4244
4245
4246
4247
4248
4249
4250
4251
4252
4253
4254
4255
4256
4257
4258
4259
4260
4261
4262
4263
4264
4265
4266
4267
4268
4269
4270
4271
4272
4273
4274
4275
4276
4277
4278
4279
4280
4281
4282
4283
4284
4285
4286
4287
4288
4289
4290
4291
4292
4293
4294
4295
4296
4297
4298
4299
4300
4301
4302
4303
4304
4305
4306
4307
4308
4309
4310
4311
4312
4313
4314
4315
4316
4317
4318
4319
4320
4321
4322
4323
4324
4325
4326
4327
4328
4329
4330
4331
4332
4333
4334
4335
4336
4337
4338
4339
4340
4341
4342
4343
4344
4345
4346
4347
4348
4349
4350
4351
4352
4353
4354
4355
4356
4357
4358
4359
4360
4361
4362
4363
4364
4365
4366
4367
4368
4369
4370
4371
4372
4373
4374
4375
4376
4377
4378
4379
4380
4381
4382
4383
4384
4385
4386
4387
4388
4389
4390
4391
4392
4393
4394
4395
4396
4397
4398
4399
4400
4401
4402
4403
4404
4405
4406
4407
4408
4409
4410
4411
4412
4413
4414
4415
4416
4417
4418
4419
4420
4421
4422
4423
4424
4425
4426
4427
4428
4429
4430
4431
4432
4433
4434
4435
4436
4437
4438
4439
4440
4441
4442
4443
4444
4445
4446
4447
4448
4449
4450
4451
4452
4453
4454
4455
4456
4457
4458
4459
4460
4461
4462
4463
4464
4465
4466
4467
4468
4469
4470
4471
4472
4473
4474
4475
4476
4477
4478
4479
4480
4481
4482
4483
4484
4485
4486
4487
4488
4489
4490
4491
4492
4493
4494
4495
4496
4497
4498
4499
4500
4501
4502
4503
4504
4505
4506
4507
4508
4509
4510
4511
4512
4513
4514
4515
4516
4517
4518
4519
4520
4521
4522
4523
4524
4525
4526
4527
4528
4529
4530
4531
4532
4533
4534
4535
4536
4537
4538
4539
4540
4541
4542
4543
4544
4545
4546
4547
4548
4549
4550
4551
4552
4553
4554
4555
4556
4557
4558
4559
4560
4561
4562
4563
4564
4565
4566
4567
4568
4569
4570
4571
4572
4573
4574
4575
4576
4577
4578
4579
4580
4581
4582
4583
4584
4585
4586
4587
4588
4589
4590
4591
4592
4593
4594
4595
4596
4597
4598
4599
4600
4601
4602
4603
4604
4605
4606
4607
4608
4609
4610
4611
4612
4613
4614
4615
4616
4617
4618
4619
4620
4621
4622
4623
4624
4625
4626
4627
4628
4629
4630
4631
4632
4633
4634
4635
4636
4637
4638
4639
4640
4641
4642
4643
4644
4645
4646
4647
4648
4649
4650
4651
4652
4653
4654
4655
4656
4657
4658
4659
4660
4661
4662
4663
4664
4665
4666
4667
4668
4669
4670
4671
4672
4673
4674
4675
4676
4677
4678
4679
4680
4681
4682
4683
4684
4685
4686
4687
4688
4689
4690
4691
4692
4693
4694
4695
4696
4697
4698
4699
4700
4701
4702
4703
4704
4705
4706
4707
4708
4709
4710
4711
4712
4713
4714
4715
4716
4717
4718
4719
4720
4721
4722
4723
4724
4725
4726
4727
4728
4729
4730
4731
4732
4733
4734
4735
4736
4737
4738
4739
4740
4741
4742
4743
4744
4745
4746
4747
4748
4749
4750
4751
4752
4753
4754
4755
4756
4757
4758
4759
4760
4761
4762
4763
4764
4765
4766
4767
4768
4769
4770
4771
4772
4773
4774
4775
4776
4777
4778
4779
4780
4781
4782
4783
4784
4785
4786
4787
4788
4789
4790
4791
4792
4793
4794
4795
4796
4797
4798
4799
4800
4801
4802
4803
4804
4805
4806
4807
4808
4809
4810
4811
4812
4813
4814
4815
4816
4817
4818
4819
4820
4821
4822
4823
4824
4825
4826
4827
4828
4829
4830
4831
4832
4833
4834
4835
4836
4837
4838
4839
4840
4841
4842
4843
4844
4845
4846
4847
4848
4849
4850
4851
4852
4853
4854
4855
4856
4857
4858
4859
4860
4861
4862
4863
4864
4865
4866
4867
4868
4869
4870
4871
4872
4873
4874
4875
4876
4877
4878
4879
4880
4881
4882
4883
4884
4885
4886
4887
4888
4889
4890
4891
4892
4893
4894
4895
4896
4897
4898
4899
4900
4901
4902
4903
4904
4905
4906
4907
4908
4909
4910
4911
4912
4913
4914
4915
4916
4917
4918
4919
4920
4921
4922
4923
4924
4925
4926
4927
4928
4929
4930
4931
4932
4933
4934
4935
4936
4937
4938
4939
4940
4941
4942
4943
4944
4945
4946
4947
4948
4949
4950
4951
4952
4953
4954
4955
4956
4957
4958
4959
4960
4961
4962
4963
4964
4965
4966
4967
4968
4969
4970
4971
4972
4973
4974
4975
4976
4977
4978
4979
4980
4981
4982
4983
4984
4985
4986
4987
4988
4989
4990
4991
4992
4993
4994
4995
4996
4997
4998
4999
5000
5001
5002
5003
5004
5005
5006
5007
5008
5009
5010
5011
5012
5013
5014
5015
5016
5017
5018
5019
5020
5021
5022
5023
5024
5025
5026
5027
5028
5029
5030
5031
5032
5033
5034
5035
5036
5037
5038
5039
5040
5041
5042
5043
5044
5045
5046
5047
5048
5049
5050
5051
5052
5053
5054
5055
5056
5057
5058
5059
5060
5061
5062
5063
5064
5065
5066
5067
5068
5069
5070
5071
5072
5073
5074
5075
5076
5077
5078
5079
5080
5081
5082
5083
5084
5085
5086
5087
5088
5089
5090
5091
5092
5093
5094
5095
5096
5097
5098
5099
5100
5101
5102
5103
5104
5105
5106
5107
5108
5109
5110
5111
5112
5113
5114
5115
5116
5117
5118
5119
5120
5121
5122
5123
5124
5125
5126
5127
5128
5129
5130
5131
5132
5133
5134
5135
5136
5137
5138
5139
5140
5141
5142
5143
5144
5145
5146
5147
5148
5149
5150
5151
5152
5153
5154
5155
5156
5157
5158
5159
5160
5161
5162
5163
5164
5165
5166
5167
5168
5169
5170
5171
5172
5173
5174
5175
5176
5177
5178
5179
5180
5181
5182
5183
5184
5185
5186
5187
5188
5189
5190
5191
5192
5193
5194
5195
5196
5197
5198
5199
5200
5201
5202
5203
5204
5205
5206
5207
5208
5209
5210
5211
5212
5213
5214
5215
5216
5217
5218
5219
5220
5221
5222
5223
5224
5225
5226
5227
5228
5229
5230
5231
5232
5233
5234
5235
5236
5237
5238
5239
5240
5241
5242
5243
5244
5245
5246
5247
5248
5249
5250
5251
5252
5253
5254
5255
5256
5257
5258
5259
5260
5261
5262
5263
5264
5265
5266
5267
5268
5269
5270
5271
5272
5273
5274
5275
5276
5277
5278
5279
5280
5281
5282
5283
5284
5285
5286
5287
5288
5289
5290
5291
5292
5293
5294
5295
5296
5297
5298
5299
5300
5301
5302
5303
5304
5305
5306
5307
5308
5309
5310
5311
5312
5313
5314
5315
5316
5317
5318
5319
5320
5321
5322
5323
5324
5325
5326
5327
5328
5329
5330
5331
5332
5333
5334
5335
5336
5337
5338
5339
5340
5341
5342
5343
5344
5345
5346
5347
5348
5349
5350
5351
5352
5353
5354
5355
5356
5357
5358
5359
5360
5361
5362
5363
5364
5365
5366
5367
5368
5369
5370
5371
5372
5373
5374
5375
5376
5377
5378
5379
5380
5381
5382
5383
5384
5385
5386
5387
5388
5389
5390
5391
5392
5393
5394
5395
5396
5397
5398
5399
5400
5401
5402
5403
5404
5405
5406
5407
5408
5409
5410
5411
5412
5413
5414
5415
5416
5417
5418
5419
5420
5421
5422
5423
5424
5425
5426
5427
5428
5429
5430
5431
5432
5433
5434
5435
5436
5437
5438
5439
5440
5441
5442
5443
5444
5445
5446
5447
5448
5449
5450
5451
5452
5453
5454
5455
5456
5457
5458
5459
5460
5461
5462
5463
5464
5465
5466
5467
5468
5469
5470
5471
5472
5473
5474
5475
5476
5477
5478
5479
5480
5481
5482
5483
5484
5485
5486
5487
5488
5489
5490
5491
5492
5493
5494
5495
5496
5497
5498
5499
5500
5501
5502
5503
5504
5505
5506
5507
5508
5509
5510
5511
5512
5513
5514
5515
5516
5517
5518
5519
5520
5521
5522
5523
5524
5525
5526
5527
5528
5529
5530
5531
5532
5533
5534
5535
5536
5537
5538
5539
5540
5541
5542
5543
5544
5545
5546
5547
5548
5549
5550
5551
5552
5553
5554
5555
5556
5557
5558
5559
5560
5561
5562
5563
5564
5565
5566
5567
5568
5569
5570
5571
5572
5573
5574
5575
5576
5577
5578
5579
5580
5581
5582
5583
5584
5585
5586
5587
5588
5589
5590
5591
5592
5593
5594
5595
5596
5597
5598
5599
5600
5601
5602
5603
5604
5605
5606
5607
5608
5609
5610
5611
5612
5613
5614
5615
5616
5617
5618
5619
5620
5621
5622
5623
5624
5625
5626
5627
5628
5629
5630
5631
5632
5633
5634
5635
5636
5637
5638
5639
5640
5641
5642
5643
5644
5645
5646
5647
5648
5649
5650
5651
5652
5653
5654
5655
5656
5657
5658
5659
5660
5661
5662
5663
5664
5665
5666
5667
5668
5669
5670
5671
5672
5673
5674
5675
5676
5677
5678
5679
5680
5681
5682
5683
5684
5685
5686
5687
5688
5689
5690
5691
5692
5693
5694
5695
5696
5697
5698
5699
5700
5701
5702
5703
5704
5705
5706
5707
5708
5709
5710
5711
5712
5713
5714
5715
5716
5717
5718
5719
5720
5721
5722
5723
5724
5725
5726
5727
5728
5729
5730
5731
5732
5733
5734
5735
5736
5737
5738
5739
5740
5741
5742
5743
5744
5745
5746
5747
5748
5749
5750
5751
5752
5753
5754
5755
5756
5757
5758
5759
5760
5761
5762
5763
5764
5765
5766
5767
5768
5769
5770
5771
5772
5773
5774
5775
5776
5777
5778
5779
5780
5781
5782
5783
5784
5785
5786
5787
5788
5789
5790
5791
5792
5793
5794
5795
5796
5797
5798
5799
5800
5801
5802
5803
5804
5805
5806
5807
5808
5809
5810
5811
5812
5813
5814
5815
5816
5817
5818
5819
5820
5821
5822
5823
5824
5825
5826
5827
5828
5829
5830
5831
5832
5833
5834
5835
5836
5837
5838
5839
5840
5841
5842
5843
5844
5845
5846
5847
5848
5849
5850
5851
5852
5853
5854
5855
5856
5857
5858
5859
5860
5861
5862
5863
5864
5865
5866
5867
5868
5869
5870
5871
5872
5873
5874
5875
5876
5877
5878
5879
5880
5881
5882
5883
5884
5885
5886
5887
5888
5889
5890
5891
5892
5893
5894
5895
5896
5897
5898
5899
5900
5901
5902
5903
5904
5905
5906
5907
5908
5909
5910
5911
5912
5913
5914
5915
5916
5917
5918
5919
5920
5921
5922
5923
5924
5925
5926
5927
5928
5929
5930
5931
5932
5933
5934
5935
5936
5937
5938
5939
5940
5941
5942
5943
5944
5945
5946
5947
5948
5949
5950
5951
5952
5953
5954
5955
5956
5957
5958
5959
5960
5961
5962
5963
5964
5965
5966
5967
5968
5969
5970
5971
5972
5973
5974
5975
5976
5977
5978
5979
5980
5981
5982
5983
5984
5985
5986
5987
5988
5989
5990
5991
5992
5993
5994
5995
5996
5997
5998
5999
6000
6001
6002
6003
6004
6005
6006
6007
6008
6009
6010
6011
6012
6013
6014
6015
6016
6017
6018
6019
6020
6021
6022
6023
6024
6025
6026
6027
6028
6029
6030
6031
6032
6033
6034
6035
6036
6037
6038
6039
6040
6041
6042
6043
6044
6045
6046
6047
6048
6049
6050
6051
6052
6053
6054
6055
6056
6057
6058
6059
6060
6061
6062
6063
6064
6065
6066
6067
6068
6069
6070
6071
6072
6073
6074
6075
6076
6077
6078
6079
6080
6081
6082
6083
6084
6085
6086
6087
6088
6089
6090
6091
6092
6093
6094
6095
6096
6097
6098
6099
6100
6101
6102
6103
6104
6105
6106
6107
6108
6109
6110
6111
6112
6113
6114
6115
6116
6117
6118
6119
6120
6121
6122
6123
6124
6125
6126
6127
6128
6129
6130
6131
6132
6133
6134
6135
6136
6137
6138
6139
6140
6141
6142
6143
6144
6145
6146
6147
6148
6149
6150
6151
6152
6153
6154
6155
6156
6157
6158
6159
6160
6161
6162
6163
6164
6165
6166
6167
6168
6169
6170
6171
6172
6173
6174
6175
6176
6177
6178
6179
6180
6181
6182
6183
6184
6185
6186
6187
6188
6189
6190
6191
6192
6193
6194
6195
6196
6197
6198
6199
6200
6201
6202
6203
6204
6205
6206
6207
6208
6209
6210
6211
6212
6213
6214
6215
6216
6217
6218
6219
6220
6221
6222
6223
6224
6225
6226
6227
6228
6229
6230
6231
6232
6233
6234
6235
6236
6237
6238
6239
6240
6241
6242
6243
6244
6245
6246
|
Archive member included because of file (symbol)
board/wmt/libwmt.a(poweroff.o)
(__u_boot_cmd_poweroff)
board/wmt/libwmt.a(wmt_battery.o)
(__u_boot_cmd_batt)
board/wmt/libwmt.a(g2214_charger.o)
board/wmt/libwmt.a(wmt_battery.o) (is_g2214_avail)
board/wmt/libwmt.a(mp2625_charger.o)
board/wmt/libwmt.a(wmt_battery.o) (mp2625_charger_dev)
board/wmt/libwmt.a(ug31xx_boot.o)
board/wmt/libwmt.a(wmt_battery.o) (ug31xx_battery_dev)
board/wmt/libwmt.a(ug31xx_boot_i2c.o)
board/wmt/libwmt.a(ug31xx_boot.o) (ug31xx_init_i2c)
board/wmt/libwmt.a(vt1603_battery.o)
(__u_boot_cmd_adc)
board/wmt/libwmt.a(sp2541_battery.o)
board/wmt/libwmt.a(wmt_battery.o) (sp2541_battery_dev)
board/wmt/libwmt.a(bq_battery_i2c.o)
board/wmt/libwmt.a(wmt_battery.o) (bq_battery_dev)
board/wmt/libwmt.a(lowlevel_init.o)
cpu/arm920t/start.o (lowlevel_init)
board/wmt/libwmt.a(wmt_clk.o)
board/wmt/libwmt.a(vt1603_battery.o) (auto_pll_divisor)
board/wmt/libwmt.a(wmt_i2c.o)
board/wmt/libwmt.a(g2214_charger.o) (wmt_i2c_transfer)
board/wmt/libwmt.a(wmt_i2c_1.o)
board/wmt/libwmt.a(wmt_i2c.o) (i2c1_transfer)
board/wmt/libwmt.a(wmt_i2c_2.o)
board/wmt/libwmt.a(wmt_i2c.o) (i2c2_transfer)
board/wmt/libwmt.a(wmt_i2c_3.o)
board/wmt/libwmt.a(wmt_i2c.o) (i2c3_transfer)
board/wmt/libwmt.a(wmt_spi_0.o)
board/wmt/libwmt.a(vt1603_battery.o) (spi_write_then_read_data)
board/wmt/libwmt.a(wmt_gpio.o)
board/wmt/libwmt.a(mp2625_charger.o) (__gpio_get_value)
board/wmt/libwmt.a(uG31xx_API_Measurement.o)
board/wmt/libwmt.a(ug31xx_boot.o) (UpiResetCoulombCounter)
board/wmt/libwmt.a(uG31xx_API_Otp.o)
board/wmt/libwmt.a(ug31xx_boot.o) (UpiConvertOtp)
board/wmt/libwmt.a(uG31xx_API_System.o)
board/wmt/libwmt.a(ug31xx_boot.o) (UpiInitSystemData)
board/wmt/libwmt.a(wmt_ost.o)
board/wmt/libwmt.a(uG31xx_API_Measurement.o) (wmt_idle_us)
cpu/arm920t/libarm920t.a(interrupts.o)
cpu/arm920t/start.o (do_undefined_instruction)
cpu/arm920t/wmt/libwmt.a(interrupts.o)
board/wmt/libwmt.a(vt1603_battery.o) (udelay)
lib_arm/libarm.a(board.o) cpu/arm920t/start.o (start_armboot)
net/libnet.a(net.o) lib_arm/libarm.a(board.o) (copy_filename)
net/libnet.a(tftp.o) net/libnet.a(net.o) (TftpStart)
net/libnet.a(bootp.o) net/libnet.a(net.o) (BootpRequest)
net/libnet.a(rarp.o) net/libnet.a(net.o) (RarpRequest)
net/libnet.a(eth.o) net/libnet.a(net.o) (eth_get_dev)
common/libcommon.a(main.o) lib_arm/libarm.a(board.o) (run_command)
common/libcommon.a(cmd_autoscript.o)
(__u_boot_cmd_autoscr)
common/libcommon.a(cmd_bdinfo.o)
(__u_boot_cmd_bdinfo)
common/libcommon.a(cmd_boot.o)
(__u_boot_cmd_go)
common/libcommon.a(cmd_bootm.o)
common/libcommon.a(main.o) (do_bootd)
common/libcommon.a(cmd_console.o)
(__u_boot_cmd_coninfo)
common/libcommon.a(cmd_mkfsfat.o)
(__u_boot_cmd_mkfsfat12)
common/libcommon.a(cmd_fat.o)
common/libcommon.a(cmd_mkfsfat.o) (get_dev)
common/libcommon.a(cmd_flash.o)
(__u_boot_cmd_flinfo)
common/libcommon.a(cmd_load.o)
(__u_boot_cmd_loadb)
common/libcommon.a(cmd_mem.o)
(__u_boot_cmd_md)
common/libcommon.a(cmd_mii.o)
(__u_boot_cmd_mii)
common/libcommon.a(cmd_misc.o)
(__u_boot_cmd_sleep)
common/libcommon.a(cmd_mmc.o)
(__u_boot_cmd_mmcinit)
common/libcommon.a(cmd_dma.o)
(__u_boot_cmd_dmacp)
common/libcommon.a(cmd_nand.o)
lib_arm/libarm.a(board.o) (nand_probe)
common/libcommon.a(cmd_net.o)
(__u_boot_cmd_bootp)
common/libcommon.a(cmd_nvedit.o)
common/libcommon.a(cmd_mmc.o) (do_setenv)
common/libcommon.a(cmd_usb.o)
(__u_boot_cmd_usb)
common/libcommon.a(cmd_rsa.o)
common/libcommon.a(cmd_mmc.o) (image_rsa_check)
common/libcommon.a(command.o)
common/libcommon.a(main.o) (find_cmd)
common/libcommon.a(console.o)
board/wmt/libwmt.a(wmt_battery.o) (printf)
common/libcommon.a(devices.o)
lib_arm/libarm.a(board.o) (devices_init)
common/libcommon.a(dlmalloc.o)
board/wmt/libwmt.a(ug31xx_boot.o) (free)
common/libcommon.a(env_common.o)
lib_arm/libarm.a(board.o) (env_relocate)
common/libcommon.a(env_flash.o)
common/libcommon.a(env_common.o) (env_get_char_spec)
common/libcommon.a(exports.o)
lib_arm/libarm.a(board.o) (jumptable_init)
common/libcommon.a(env_otp.o)
common/libcommon.a(cmd_nvedit.o) (otp_sec_encode)
common/libcommon.a(wmt-ost.o)
lib_arm/libarm.a(board.o) (wmt_read_ostc)
common/libcommon.a(lcd-mipi-ssd2828.o)
(__u_boot_cmd_b0)
common/libcommon.a(wmt_cmd_display.o)
lib_arm/libarm.a(board.o) (display_init)
common/libcommon.a(minivgui.o)
common/libcommon.a(wmt_cmd_display.o) (mv_getSurface)
common/libcommon.a(uboot-vpp.o)
common/libcommon.a(wmt_cmd_display.o) (wmt_graphic_init)
common/libcommon.a(cmd_mbit.o)
(__u_boot_cmd_mbit)
common/libcommon.a(cmd_textout.o)
common/libcommon.a(wmt_cmd_display.o) (text_x)
common/libcommon.a(env_parse.o)
common/libcommon.a(uboot-vpp.o) (parse_gpio_operation)
common/libcommon.a(charge_animation.o)
lib_arm/libarm.a(board.o) (low_power_detect)
common/libcommon.a(flash.o) common/libcommon.a(cmd_mem.o) (addr2info)
common/libcommon.a(hush.o) common/libcommon.a(main.o) (parse_string_outer)
common/libcommon.a(lists.o) common/libcommon.a(devices.o) (ListCreate)
common/libcommon.a(miiphyutil.o)
net/libnet.a(eth.o) (miiphy_init)
common/libcommon.a(usb.o) common/libcommon.a(cmd_usb.o) (usb_string)
common/libcommon.a(usb_storage.o)
common/libcommon.a(cmd_fat.o) (usb_stor_get_dev)
common/libcommon.a(cmd_fastboot.o)
common/libcommon.a(cmd_mmc.o) (fastboot_flash_find_ptn)
common/libcommon.a(sparse.o) common/libcommon.a(cmd_fastboot.o) (do_unsparse)
common/libcommon.a(mmc_ext4.o)
common/libcommon.a(cmd_mmc.o) (load_ptbl)
common/libcommon.a(wmt_cmd_check_fastboot.o)
(__u_boot_cmd_check_fastboot)
common/libcommon.a(wmt_cmd_recovery_mode.o)
(__u_boot_cmd_check_recovery_mode)
common/libcommon.a(wmt_cmd_ac_ok.o)
(__u_boot_cmd_check_ac_ok)
common/libcommon.a(wmt_cmd_wmtfs.o)
(__u_boot_cmd_wfsread)
common/libcommon.a(wmt_cmd_addfwcenv.o)
(__u_boot_cmd_addfwcenv)
common/libcommon.a(hw_recovery.o)
lib_arm/libarm.a(board.o) (hw_recovery)
common/libcommon.a(enter_fastboot_mode.o)
lib_arm/libarm.a(board.o) (run_fastboot)
common/libcommon.a(wmt_cmd_syncenv.o)
common/libcommon.a(cmd_fastboot.o) (do_syncenv)
common/libcommon.a(aes.o) common/libcommon.a(env_otp.o) (aes_setkey_enc)
common/libcommon.a(cmd_aes.o)
(__u_boot_cmd_aescbc)
common/libcommon.a(wmt_efuse.o)
common/libcommon.a(env_otp.o) (efuse_read_otp)
common/libcommon.a(wmt_cmd_efuse.o)
(__u_boot_cmd_efuse)
common/libcommon.a(wmt_dual_boot.o)
lib_arm/libarm.a(board.o) (show_dualboot_logo)
common/libcommon.a(display_aligment.o)
common/libcommon.a(minivgui.o) (byte1_alig_mem_copy)
common/libcommon.a(rsa_verify.o)
common/libcommon.a(env_otp.o) (base64_encode)
common/libcommon.a(bignum.o) common/libcommon.a(rsa_verify.o) (mpi_init)
common/libcommon.a(pwm.o) common/libcommon.a(wmt_cmd_display.o) (pwm_set_control)
common/libcommon.a(scl.o) common/libcommon.a(uboot-vpp.o) (scl_mod_init)
common/libcommon.a(govrh.o) common/libcommon.a(uboot-vpp.o) (govrh_mod_init)
common/libcommon.a(vout.o) common/libcommon.a(wmt_cmd_display.o) (vout_get_entry)
common/libcommon.a(lcd.o) common/libcommon.a(govrh.o) (lcd_get_type)
common/libcommon.a(lvds.o) common/libcommon.a(lcd.o) (lvds_set_rgb_type)
common/libcommon.a(vpp.o) common/libcommon.a(scl.o) (vpp_set_clock_enable)
common/libcommon.a(hdmi.o) common/libcommon.a(govrh.o) (hdmi_get_sync_polar)
common/libcommon.a(parse-edid.o)
common/libcommon.a(vout.o) (edid_parse)
common/libcommon.a(vout-wmt.o)
common/libcommon.a(uboot-vpp.o) (vo_dvi_initial)
common/libcommon.a(lcd-oem.o)
common/libcommon.a(uboot-vpp.o) (lcd_oem_init)
common/libcommon.a(lcd-AUO-A080SN01.o)
common/libcommon.a(uboot-vpp.o) (lcd_a080sn01_init)
common/libcommon.a(lcd-INNOLUX-AT070TN83.o)
common/libcommon.a(uboot-vpp.o) (lcd_at070tn83_init)
common/libcommon.a(lcd-CHILIN-LW700at9003.o)
common/libcommon.a(uboot-vpp.o) (lcd_lw700at9003_init)
common/libcommon.a(lcd-EKING-EK08009-70135.o)
common/libcommon.a(uboot-vpp.o) (lcd_ek08009_init)
common/libcommon.a(lcd-HANNSTAR-HSD101PFW2.o)
common/libcommon.a(uboot-vpp.o) (lcd_HSD101PFW2_init)
common/libcommon.a(lcd-lvds-1024x600.o)
common/libcommon.a(uboot-vpp.o) (lcd_LVDS_1024x600_init)
common/libcommon.a(vt1625.o) common/libcommon.a(uboot-vpp.o) (vt1625_module_init)
common/libcommon.a(vt1632.o) common/libcommon.a(uboot-vpp.o) (vt1632_module_init)
common/libcommon.a(sil902x.o)
common/libcommon.a(uboot-vpp.o) (sil902x_module_init)
common/libcommon.a(lcd-setup.o)
common/libcommon.a(wmt_cmd_display.o) (lcd_spi_setup)
common/libcommon.a(vpp-osif.o)
common/libcommon.a(lvds.o) (inl)
common/libcommon.a(sw_i2c.o) common/libcommon.a(vout-wmt.o) (wmt_swi2c_read)
lib_generic/libgeneric.a(crc32.o)
common/libcommon.a(cmd_autoscript.o) (crc32)
lib_generic/libgeneric.a(ctype.o)
common/libcommon.a(cmd_textout.o) (_ctype)
lib_generic/libgeneric.a(display_options.o)
lib_arm/libarm.a(board.o) (print_size)
lib_generic/libgeneric.a(string.o)
common/libcommon.a(minivgui.o) (strnicmp)
lib_generic/libgeneric.a(vsprintf.o)
board/wmt/libwmt.a(g2214_charger.o) (simple_strtoul)
lib_generic/libgeneric.a(gunzip.o)
common/libcommon.a(cmd_bootm.o) (gunzip)
lib_generic/libgeneric.a(zlib.o)
lib_generic/libgeneric.a(gunzip.o) (inflateInit2_)
board/wmt/libwmt.a(wmt.o) lib_arm/libarm.a(board.o) (board_init)
board/wmt/libwmt.a(flash.o) lib_arm/libarm.a(board.o) (flash_init)
board/wmt/libwmt.a(main.o) lib_arm/libarm.a(board.o) (wmt_post)
board/wmt/libwmt.a(spi_flash.o)
board/wmt/libwmt.a(flash.o) (spi_flash_real_protect)
board/wmt/libwmt.a(nand_flash.o)
board/wmt/libwmt.a(flash.o) (nand_flash_init)
board/wmt/libwmt.a(ehci-hcd.o)
common/libcommon.a(usb.o) (usb_lowlevel_stop)
board/wmt/libwmt.a(usb_uhci.o)
common/libcommon.a(usb.o) (submit_uhci_control_msg)
board/wmt/libwmt.a(snd-vt1603.o)
lib_arm/libarm.a(board.o) (vt1603_snd_init)
board/wmt/libwmt.a(spi_flash_lock.o)
board/wmt/libwmt.a(spi_flash.o) (spi_flash_wmt_protect)
cpu/arm920t/libarm920t.a(cpu.o)
lib_arm/libarm.a(board.o) (cpu_init)
cpu/arm920t/wmt/libwmt.a(serial.o)
common/libcommon.a(console.o) (serial_putc)
cpu/arm920t/wmt/libwmt.a(dma.o)
common/libcommon.a(cmd_dma.o) (request_dma)
cpu/arm920t/wmt/libwmt.a(cypherif.o)
common/libcommon.a(cmd_rsa.o) (cypher_initialization)
cpu/arm920t/wmt/libwmt.a(mmc.o)
common/libcommon.a(cmd_fat.o) (mmc_get_dev)
cpu/arm920t/wmt/libwmt.a(cypher.o)
cpu/arm920t/wmt/libwmt.a(cypherif.o) (Get_Output_Buf)
lib_arm/libarm.a(memcpy.o) common/libcommon.a(minivgui.o) (arm_memcpy)
lib_arm/libarm.a(memset.o) common/libcommon.a(wmt_cmd_display.o) (arm_memset)
lib_arm/libarm.a(armlinux.o) common/libcommon.a(cmd_bootm.o) (do_bootm_linux)
lib_arm/libarm.a(cache.o) common/libcommon.a(cmd_load.o) (flush_cache)
lib_arm/libarm.a(qsort.o) common/libcommon.a(env_common.o) (qsort)
lib_arm/libarm.a(hashtable.o)
common/libcommon.a(env_otp.o) (hdestroy_r)
lib_arm/libarm.a(errno.o) common/libcommon.a(cmd_nvedit.o) (errno)
fs/fat/libfat.a(fat.o) common/libcommon.a(cmd_mkfsfat.o) (fatpre_register_device)
disk/libdisk.a(part.o) common/libcommon.a(cmd_usb.o) (dev_print)
disk/libdisk.a(part_dos.o) disk/libdisk.a(part.o) (test_part_dos)
drivers/libdrivers.a(usbdcore.o)
common/libcommon.a(cmd_fastboot.o) (urb_link_init)
drivers/libdrivers.a(wmt_udc.o)
common/libcommon.a(cmd_nand.o) (memcpy_itp)
drivers/libdrivers.a(usb_ether.o)
common/libcommon.a(cmd_usb.o) (usb_host_eth_scan)
drivers/libdrivers.a(r8152.o)
drivers/libdrivers.a(usb_ether.o) (rtl8152_eth_before_probe)
drivers/libdrivers.a(asix.o) drivers/libdrivers.a(usb_ether.o) (asix_eth_before_probe)
cpu/arm920t/wmt/libwmt.a(zde.o)
lib_arm/libarm.a(armlinux.o) (semi_bootloados)
/mnt/backup/common/arm_201103_gcc4.5.2/bin/../lib/gcc/arm-none-linux-gnueabi/4.5.2/libgcc.a(_udivsi3.o)
board/wmt/libwmt.a(wmt_clk.o) (__aeabi_uidiv)
/mnt/backup/common/arm_201103_gcc4.5.2/bin/../lib/gcc/arm-none-linux-gnueabi/4.5.2/libgcc.a(_divsi3.o)
board/wmt/libwmt.a(g2214_charger.o) (__aeabi_idiv)
/mnt/backup/common/arm_201103_gcc4.5.2/bin/../lib/gcc/arm-none-linux-gnueabi/4.5.2/libgcc.a(_lshrdi3.o)
common/libcommon.a(cmd_nand.o) (__aeabi_llsr)
/mnt/backup/common/arm_201103_gcc4.5.2/bin/../lib/gcc/arm-none-linux-gnueabi/4.5.2/libgcc.a(_ashldi3.o)
common/libcommon.a(cmd_nand.o) (__aeabi_llsl)
/mnt/backup/common/arm_201103_gcc4.5.2/bin/../lib/gcc/arm-none-linux-gnueabi/4.5.2/libgcc.a(_arm_addsubdf3.o)
fs/fat/libfat.a(fat.o) (__aeabi_ui2d)
/mnt/backup/common/arm_201103_gcc4.5.2/bin/../lib/gcc/arm-none-linux-gnueabi/4.5.2/libgcc.a(_arm_cmpdf2.o)
fs/fat/libfat.a(fat.o) (__aeabi_dcmplt)
/mnt/backup/common/arm_201103_gcc4.5.2/bin/../lib/gcc/arm-none-linux-gnueabi/4.5.2/libgcc.a(_aeabi_uldivmod.o)
common/libcommon.a(cmd_nand.o) (__aeabi_uldivmod)
/mnt/backup/common/arm_201103_gcc4.5.2/bin/../lib/gcc/arm-none-linux-gnueabi/4.5.2/libgcc.a(_dvmd_lnx.o)
/mnt/backup/common/arm_201103_gcc4.5.2/bin/../lib/gcc/arm-none-linux-gnueabi/4.5.2/libgcc.a(_udivsi3.o) (__aeabi_idiv0)
/mnt/backup/common/arm_201103_gcc4.5.2/bin/../lib/gcc/arm-none-linux-gnueabi/4.5.2/libgcc.a(bpabi.o)
/mnt/backup/common/arm_201103_gcc4.5.2/bin/../lib/gcc/arm-none-linux-gnueabi/4.5.2/libgcc.a(_aeabi_uldivmod.o) (__gnu_uldivmod_helper)
/mnt/backup/common/arm_201103_gcc4.5.2/bin/../lib/gcc/arm-none-linux-gnueabi/4.5.2/libgcc.a(_divdi3.o)
/mnt/backup/common/arm_201103_gcc4.5.2/bin/../lib/gcc/arm-none-linux-gnueabi/4.5.2/libgcc.a(bpabi.o) (__divdi3)
/mnt/backup/common/arm_201103_gcc4.5.2/bin/../lib/gcc/arm-none-linux-gnueabi/4.5.2/libgcc.a(_udivdi3.o)
/mnt/backup/common/arm_201103_gcc4.5.2/bin/../lib/gcc/arm-none-linux-gnueabi/4.5.2/libgcc.a(bpabi.o) (__udivdi3)
Memory Configuration
Name Origin Length Attributes
*default* 0x00000000 0xffffffff
Linker script and memory map
0x00000000 . = 0x0
0x00000000 . = ALIGN (0x4)
.text 0x03f80000 0x6263c
cpu/arm920t/start.o(.text)
.text 0x03f80000 0x480 cpu/arm920t/start.o
0x03f80000 _start
0x03f80044 _armboot_start
0x03f80048 _bss_start
0x03f8004c _bss_end
0x03f803b8 memset_32Byte
0x03f8042c memcpy_32Byte
*(.text)
.text 0x03f80480 0x70 board/wmt/libwmt.a(poweroff.o)
0x03f80480 do_wmt_poweroff
.text 0x03f804f0 0x8d8 board/wmt/libwmt.a(wmt_battery.o)
0x03f805a8 wmt_power_supply_init
0x03f80870 pmic_init
0x03f8088c wmt_charger_cable_type
0x03f808e8 wmt_charger_pc_charging
0x03f80934 wmt_battery_get_voltage
0x03f80990 wmt_battery_get_current
0x03f809ec wmt_battery_is_lowlevel
0x03f80a48 wmt_battery_is_charging_full
0x03f80abc wmt_charger_event_callback
0x03f80c3c wmt_battery_is_gauge
0x03f80c7c wmt_battery_get_capacity
.text 0x03f80dc8 0x5f8 board/wmt/libwmt.a(g2214_charger.o)
0x03f81364 is_g2214_avail
0x03f8136c g2214_pmic_init
.text 0x03f813c0 0x254 board/wmt/libwmt.a(mp2625_charger.o)
.text 0x03f81614 0xb4c board/wmt/libwmt.a(ug31xx_boot.o)
0x03f8171c GetTickCount
0x03f81724 GetSysTickCount
0x03f8172c CheckRsocBeforeTP
0x03f8177c ResetFullCharge
0x03f81788 FullChargeCheck
0x03f81814 SetMemoryMapping
0x03f81884 InitCharge
0x03f81964 UpiBootInitial
0x03f81cfc upi_boot_init
0x03f81eb4 UpiBootMain
0x03f82024 upi_read_current
0x03f82054 upi_read_voltage
0x03f82084 upi_read_percentage
0x03f8213c UpiBootUnInitial
.text 0x03f82160 0x26c board/wmt/libwmt.a(ug31xx_boot_i2c.o)
0x03f82160 ug31xx_init_i2c
0x03f82170 ug31xx_read_i2c
0x03f82240 ug31xx_write_i2c
0x03f822d4 _API_I2C_Write
0x03f8234c _API_I2C_Read
.text 0x03f823cc 0x8f0 board/wmt/libwmt.a(vt1603_battery.o)
0x03f82788 vt1603_batt_init
0x03f82ad0 vt1603_read_voltage
0x03f82b10 vt1603_read_capacity
0x03f82c28 vt1603_check_bl
.text 0x03f82cbc 0x3a0 board/wmt/libwmt.a(sp2541_battery.o)
.text 0x03f8305c 0x230 board/wmt/libwmt.a(bq_battery_i2c.o)
.text 0x03f8328c 0x8 board/wmt/libwmt.a(lowlevel_init.o)
0x03f83290 lowlevel_init
.text 0x03f83294 0xf88 board/wmt/libwmt.a(wmt_clk.o)
0x03f8369c check_clk_enabled
0x03f836f4 get_pll_freq
0x03f83754 auto_pll_divisor
0x03f84060 manu_pll_divisor
.text 0x03f8421c 0x724 board/wmt/libwmt.a(wmt_i2c.o)
0x03f8427c i2c_init
0x03f8437c i2c_transfer
0x03f84724 i2c_probe
0x03f8472c i2c_read
0x03f847f4 i2c_write
0x03f848a8 i2c_reg_read
0x03f848c8 i2c_reg_write
0x03f848e8 wmt_i2c_transfer
.text 0x03f84940 0x68c board/wmt/libwmt.a(wmt_i2c_1.o)
0x03f849a0 i2c1_init
0x03f84a60 i2c1_transfer
0x03f84e08 i2c1_probe
0x03f84e10 i2c1_read
0x03f84ed8 i2c1_write
0x03f84f8c i2c1_reg_read
0x03f84fac i2c1_reg_write
.text 0x03f84fcc 0x684 board/wmt/libwmt.a(wmt_i2c_2.o)
0x03f8502c i2c2_init
0x03f850e4 i2c2_transfer
0x03f8548c i2c2_probe
0x03f85494 i2c2_read
0x03f8555c i2c2_write
0x03f85610 i2c2_reg_read
0x03f85630 i2c2_reg_write
.text 0x03f85650 0x68c board/wmt/libwmt.a(wmt_i2c_3.o)
0x03f856b0 i2c3_init
0x03f85770 i2c3_transfer
0x03f85b18 i2c3_probe
0x03f85b20 i2c3_read
0x03f85be8 i2c3_write
0x03f85c9c i2c3_reg_read
0x03f85cbc i2c3_reg_write
.text 0x03f85cdc 0x80c board/wmt/libwmt.a(wmt_spi_0.o)
0x03f85cdc spi_init_clock
0x03f85d58 spi_info_reset
0x03f85e28 spi_init
0x03f85f2c spi_get_info
0x03f85f48 spi_set_reg
0x03f8616c spi_enable
0x03f861dc spi_disable
0x03f8624c spi_tx_polling
0x03f862a0 set_spi_freq
0x03f862b0 spi_write_then_read_data
0x03f863cc spi1_write_then_read_data
.text 0x03f864e8 0x3b4 board/wmt/libwmt.a(wmt_gpio.o)
0x03f865f4 gpio_free
0x03f86634 __gpio_get_value
0x03f86674 __gpio_set_value
0x03f866c4 gpio_direction_input
0x03f866fc gpio_direction_output
0x03f86744 gpio_setpull
0x03f867c8 parse_gpio_env
.text 0x03f8689c 0xed4 board/wmt/libwmt.a(uG31xx_API_Measurement.o)
0x03f868a4 ConvertAdc1Data
0x03f86980 ConvertAdc2Data
0x03f86a48 CalAdc1Factors
0x03f86b10 CalAdc2Factors
0x03f86bd8 CalibrateAdc1Code
0x03f86c78 CalibrateAdc2Code
0x03f86d18 CalibrateITCode
0x03f86d50 CalibrateChargeCode
0x03f86e00 ConvertBat1
0x03f86e4c ConvertCurrent
0x03f86ec4 ConvertIntTemperature
0x03f86f58 ConvertExtTemperature
0x03f8701c CalculateAdc1ConvertTime
0x03f87040 ConvertCharge
0x03f87158 TimeTick
0x03f871e4 ReadRegister
0x03f87260 ResetCoulombCounter
0x03f87294 RevertCalibrateAdc2Code
0x03f8731c RevertBat1Code
0x03f87370 RevertETCode
0x03f87414 CalibrateETCode
0x03f87474 UpiResetCoulombCounter
0x03f874e4 UpiMeasurement
0x03f876d4 UpiMeasAlarmThreshold
.text 0x03f87770 0x2d4 board/wmt/libwmt.a(uG31xx_API_Otp.o)
0x03f87770 ConvOtp1E0
0x03f87794 ConvOtp1E1
0x03f877bc ConvOtp1E2
0x03f877e4 ConvOtp1E3
0x03f8780c ConvOtp2F0
0x03f87844 ConvOtp2F1
0x03f87848 ConvOtp2F2
0x03f8785c ConvOtp2F3
0x03f87860 ConvOtp2F4
0x03f87888 ConvOtp2F5
0x03f8789c ConvOtp2F6
0x03f878b0 ConvOtp2F7
0x03f878c4 ConvOtp2F8
0x03f878d8 ConvOtp2F9
0x03f878dc ConvOtp2FA
0x03f878f0 ConvOtp2FB
0x03f878f4 ConvOtp2FC
0x03f87918 ConvOtp2FD
0x03f8791c ConvOtp2FE
0x03f87930 ConvOtp2FF
0x03f87934 ConvOtp370
0x03f8796c ConvOtp371
0x03f87980 ConvOtp372
0x03f879c8 ConvOtp373
0x03f879dc CheckOtpISEmpty
0x03f879f4 UpiConvertOtp
.text 0x03f87a44 0xc48 board/wmt/libwmt.a(uG31xx_API_System.o)
0x03f87a70 ReadGGBXFileToCellDataAndInitSetting
0x03f87b14 GetCellNum
0x03f87b54 SetupAdcChopFunction
0x03f87b64 SetupAdc1Queue
0x03f87b98 SetupAdc2Quene
0x03f87bfc EnableCbc
0x03f87c3c EnableICType
0x03f87c78 ConfigGpioFunction
0x03f87c9c ConfigureGpio
0x03f87cfc CheckAdcStatusFail
0x03f87d9c DecimateRst
0x03f87df8 AlarmEnable
0x03f87e30 AlarmDisable
0x03f87e68 ProcUVAlarm
0x03f87f34 ProcETAlarm
0x03f880b4 EnableAlarm
0x03f880cc UpiInitSystemData
0x03f88104 UpiCheckICActive
0x03f88138 UpiActiveUg31xx
0x03f881dc UpiSetupAdc
0x03f88228 UpiSetupSystem
0x03f88260 UpiCalibrationOsc
0x03f882dc UpiAdcStatus
0x03f882f4 UpiLoadBatInfoFromIC
0x03f88424 UpiUpdateBatInfoFromIC
0x03f884c4 UpiSaveBatInfoTOIC
0x03f885cc UpiInitAlarm
0x03f88628 UpiAlarmStatus
.text 0x03f8868c 0x158 board/wmt/libwmt.a(wmt_ost.o)
0x03f8868c wmt_init_ostimer
0x03f88710 wmt_read_oscr
0x03f887a0 wmt_idle_us
.text 0x03f887e4 0x264 cpu/arm920t/libarm920t.a(interrupts.o)
0x03f887e4 enable_interrupts
0x03f887e8 disable_interrupts
0x03f887f0 bad_mode
0x03f8880c show_regs
0x03f8894c do_undefined_instruction
0x03f88970 do_software_interrupt
0x03f88994 do_prefetch_abort
0x03f889b8 do_data_abort
0x03f889dc do_not_used
0x03f88a00 do_fiq
0x03f88a24 do_irq
.text 0x03f88a48 0x22c cpu/arm920t/wmt/libwmt.a(interrupts.o)
0x03f88a7c set_timer
0x03f88a8c reset_timer_masked
0x03f88aac reset_timer
0x03f88ab0 interrupt_init
0x03f88af4 get_timer_masked
0x03f88b28 get_timer
0x03f88b3c udelay
0x03f88ba4 udelay_masked
0x03f88bf8 get_ticks
0x03f88c0c get_tbclk
0x03f88c18 reset_cpu
.text 0x03f88c74 0xb70 lib_arm/libarm.a(board.o)
0x03f88db0 nand_init
0x03f88dbc sbrk
0x03f88e08 raise
0x03f88e0c show_logo
0x03f89168 hang
0x03f8917c start_armboot
.text 0x03f897e4 0x1244 net/libnet.a(net.o)
0x03f89898 NetSetHandler
0x03f898a8 NetSetTimeout
0x03f898d8 NetStartAgain
0x03f899c0 NetSendPacket
0x03f899c4 NetCksum
0x03f899f8 NetCksumOk
0x03f89a18 NetEthHdrSize
0x03f89a54 NetSetEther
0x03f89af4 ArpRequest
0x03f89bd4 ArpTimeoutCheck
0x03f89c48 PingSend
0x03f89d6c NetSetIP
0x03f89e50 NetSendUDPPacket
0x03f89f88 copy_filename
0x03f89fcc ip_to_string
0x03f8a008 string_to_ip
0x03f8a070 VLAN_to_string
0x03f8a0c4 string_to_VLAN
0x03f8a108 print_IPaddr
0x03f8a124 NetReceive
0x03f8a5b0 getenv_IPaddr
0x03f8a5c0 getenv_VLAN
0x03f8a5d0 NetLoop
.text 0x03f8aa28 0x604 net/libnet.a(tftp.o)
0x03f8ae28 TftpStart
.text 0x03f8b02c 0x5d0 net/libnet.a(bootp.o)
0x03f8b3c8 BootpRequest
.text 0x03f8b5fc 0x178 net/libnet.a(rarp.o)
0x03f8b63c RarpRequest
.text 0x03f8b774 0x99c net/libnet.a(eth.o)
0x03f8b814 eth_parse_enetaddr
0x03f8b868 eth_getenv_enetaddr
0x03f8b888 eth_getenv_enetaddr_by_index
0x03f8b8d8 eth_get_dev
0x03f8b8e8 eth_get_dev_by_name
0x03f8b940 eth_get_dev_by_index
0x03f8b98c eth_get_dev_index
0x03f8b9dc eth_write_hwaddr
0x03f8bb14 eth_register
0x03f8bba8 eth_initialize
0x03f8be08 eth_set_enetaddr
0x03f8beb0 eth_halt
0x03f8bee0 eth_send
0x03f8bf18 eth_rx
0x03f8bf44 eth_try_another
0x03f8bfbc eth_init
0x03f8c080 eth_set_current
0x03f8c0f0 eth_get_name
.text 0x03f8c110 0xa2c common/libcommon.a(main.o)
0x03f8c1ec readline
0x03f8c3dc run_command
0x03f8c80c main_loop
0x03f8cabc do_run
.text 0x03f8cb3c 0x1b0 common/libcommon.a(cmd_autoscript.o)
0x03f8cb44 autoscript
0x03f8ccac do_autoscript
.text 0x03f8ccec 0x98 common/libcommon.a(cmd_bdinfo.o)
0x03f8cd04 do_bdinfo
.text 0x03f8cd84 0x80 common/libcommon.a(cmd_boot.o)
0x03f8cd84 do_go
.text 0x03f8ce04 0x6d4 common/libcommon.a(cmd_bootm.o)
0x03f8ce0c do_bootd
0x03f8ce30 print_image_hdr
0x03f8cf88 do_bootm
.text 0x03f8d4d8 0xd0 common/libcommon.a(cmd_console.o)
0x03f8d4d8 do_coninfo
.text 0x03f8d5a8 0x220 common/libcommon.a(cmd_mkfsfat.o)
0x03f8d5a8 do_mkfsfat_12
0x03f8d650 do_mkfsfat_16
0x03f8d70c do_mkfsfat_32
.text 0x03f8d7c8 0x530 common/libcommon.a(cmd_fat.o)
0x03f8d7c8 get_dev
0x03f8d828 do_fat_fsinfo
0x03f8d900 do_fat_ls
0x03f8da08 do_fat_fsstore
0x03f8db78 do_fat_fsload
.text 0x03f8dcf8 0xc8c common/libcommon.a(cmd_flash.o)
0x03f8e19c do_flinfo
0x03f8e244 do_sfread
0x03f8e318 flash_sect_erase
0x03f8e400 do_flerase
0x03f8e5dc flash_sect_protect
0x03f8e6d4 do_protect
.text 0x03f8e984 0x830 common/libcommon.a(cmd_load.o)
0x03f8e9d4 send_pad
0x03f8ea00 ktrans
0x03f8ea20 chk1
0x03f8ea48 s1_sendpacket
0x03f8ea6c send_ack
0x03f8eac8 send_nack
0x03f8eb24 k_data_init
0x03f8eb44 k_data_save
0x03f8eb70 k_data_restore
0x03f8eb9c k_data_char
0x03f8ebec handle_send_packet
0x03f8edb0 do_load_serial_bin
.text 0x03f8f1b4 0xc34 common/libcommon.a(cmd_mem.o)
0x03f8f1b4 do_mem_base
0x03f8f1f4 do_mem_crc
0x03f8f330 do_mem_mtest
0x03f8f454 cmd_get_data_size
0x03f8f4dc do_mem_loop
0x03f8f5d8 do_mem_cp
0x03f8f7ec do_mem_cmp
0x03f8f988 do_mem_mw
0x03f8fbb0 do_mem_nm
0x03f8fbd8 do_mem_mm
0x03f8fc00 do_mem_md
.text 0x03f8fde8 0x780 common/libcommon.a(cmd_mii.o)
0x03f8fe30 MII_dump_0_to_5
0x03f900e4 do_mii
.text 0x03f90568 0x90 common/libcommon.a(cmd_misc.o)
0x03f90568 do_sleep
.text 0x03f905f8 0xd74 common/libcommon.a(cmd_mmc.o)
0x03f905f8 do_mmc
0x03f90660 do_mmc_read
0x03f90744 do_mmc_write
0x03f9084c do_mmc_wait_insert
0x03f908e8 memdump
0x03f90940 do_mem_read_img
0x03f90ba4 mmc_register_device
0x03f90cd4 do_mmc_load_guid_img
0x03f90ec8 do_mmc_read_img
.text 0x03f9136c 0x1f8 common/libcommon.a(cmd_dma.o)
0x03f9136c do_dma_cp
0x03f9154c free_dma_channels
.text 0x03f91564 0xe528 common/libcommon.a(cmd_nand.o)
0x03f91564 update_bbt_inram
0x03f915e4 toshiba_get_parameter
0x03f915ec samsung_get_parameter
0x03f915f4 sandisk_get_parameter
0x03f915fc micron_get_parameter
0x03f91604 isbbtbadblock
0x03f91760 do_parseimg
0x03f91990 rdmzier
0x03f919f0 rdmzier2
0x03f91b60 rdmzier_oob
0x03f91be4 get_current_nand_chip
0x03f91c0c NAND_ENABLE_CE
0x03f91c34 get_nand_valid_partial_write_size
0x03f91cbc get_nand_data_tol_size
0x03f91d0c get_nand_blk_KB_size
0x03f91d54 enable_hw_rdmz
0x03f91d80 WRITE_NAND_COMMAND
0x03f91d98 parse_fbparts
0x03f91f18 print_nfc_register
0x03f91f80 print_nand_buf
0x03f92038 nfc_ecc_set
0x03f920a8 shift_bit
0x03f920d0 NFC_WAIT_READY
0x03f92100 NAND_WAIT_FLASH_READY
0x03f9213c NAND_WAIT_READY
0x03f92184 NFC_WAIT_CMD_READY
0x03f921b4 NAND_WAIT_IDLE
0x03f921f0 check_block
0x03f922e4 NanD_Address
0x03f92490 nand_init_pdma
0x03f924c4 nand_free_pdma
0x03f924e0 nand_alloc_desc_pool
0x03f92500 nand_init_short_desc
0x03f92544 nand_init_long_desc
0x03f925a0 nand_config_pdma
0x03f925d8 nfc_dma_cfg
0x03f92794 nand_pdma_handler
0x03f92874 hynix_read_retry_get_para
0x03f92a60 get_read_retry_para
0x03f92aa0 hynix_read_retry_set_para
0x03f92cac set_read_retry_para
0x03f92d3c NFC_CHECK_ECC
0x03f92da0 check_all_FF_sw
0x03f92e18 check_all_FF
0x03f92f30 nand_read_status
0x03f93034 nand_read_page
0x03f931b8 wmt_nand_erase
0x03f93274 wmt_nand_erase_multi
0x03f93354 reverse32
0x03f93380 gen_gf2
0x03f934a0 calc_1b_bch
0x03f93520 bch_encoder
0x03f93718 nand_page_program_60bit
0x03f9383c nand_page_program_multi_60bit
0x03f93a70 getbbtbadblock_detail
0x03f93ad0 update_bbt_inram_set_r_badblk
0x03f93b88 update_bbt_inram_set_w_e_badblk
0x03f93c40 update_bbt_inram_set_goodblk
0x03f93cc0 parsing_wmt_bbcheck
0x03f93db4 calculate_ECC_info
0x03f94054 nfc_BCH_ecc_correct
0x03f94140 nfc_BCH_ecc_check
0x03f943a4 nfc_BCH_ecc_check_sw
0x03f944bc wmt_nand_reset
0x03f94518 set_ECC_mode
0x03f945d8 nand_readID
0x03f946ac nand_set_feature
0x03f94754 set_ecc_info
0x03f947e4 wmt_calc_clock
0x03f949b8 wmt_get_timing
0x03f94abc get_nand_info_from_env
0x03f94f40 get_parameter
0x03f9509c set_parameter
0x03f95204 dummy_read
0x03f95314 nand_reset_no_read_status
0x03f95378 write_bytes_param
0x03f958a8 toshiba_send_data
0x03f959b8 toshiba_set_parameter
0x03f95a2c toshiba_pre_condition
0x03f95a7c nfc_BCH_read_page2
0x03f95f9c nfc_BCH_read_page
0x03f965dc nfc_BCH_read_page_60bit
0x03f96fe0 nand_read_block_multi
0x03f9706c eslc_nand_read_block
0x03f9715c nand_read_block
0x03f9720c read_retry_param_from_nand
0x03f973fc get_pattern_small
0x03f97490 get_pattern_large
0x03f97544 WMT_check_pattern
0x03f975d8 get_base_addr_for_eslc
0x03f97914 reset_nfc
0x03f979c8 hw_encode_oob
0x03f97a74 nand_page_program_multi
0x03f97c6c nand_write_block_multi
0x03f97d80 nand_page_program
0x03f97ec8 nand_write_block
0x03f98098 write_retry_param_to_nand
0x03f981e8 write_read_blk
0x03f9841c update_bbt_inflash
0x03f988cc eslc_nand_write_block
0x03f98abc disable_hw_rdmz
0x03f98ae4 find_bbt
0x03f98d3c sandisk_set_parameter
0x03f98e60 sandisk_init_retry_register
0x03f98f40 micron_set_parameter
0x03f98fdc samsung_set_parameter
0x03f99098 hynix_get_otp
0x03f9936c hynix_set_parameter
0x03f9949c hynix_get_parameter
0x03f996cc nand_get_feature
0x03f9981c creat_bbt
0x03f99aec nand_probe
0x03f9a988 check_block_table
0x03f9aa94 nand_erase
0x03f9abe8 eslc_load_image_tpi_multi
0x03f9aee0 eslc_load_image_tpi
0x03f9b148 WMTLoadImageFormNAND
0x03f9b5b4 nand_boot
0x03f9b8a4 eslc_load_image
0x03f9bca8 eslc_save_image_tpi_multi
0x03f9c138 eslc_save_image
0x03f9c714 eslc_save_image_tpi
0x03f9cb18 WMTSaveImageToNAND2
0x03f9d238 WMTSaveImageToNAND
0x03f9d270 WMTEraseNAND
0x03f9d5e8 tellme_whereistable
0x03f9d6b4 tellme_badblock
0x03f9d7e0 nand_rw
0x03f9e028 WMTAccessNandEarier
0x03f9e0d0 WMTEraseNANDALL
0x03f9e218 tellme_nandinfo
0x03f9e3d0 do_nand
0x03f9f7ec read_ubi_nand
0x03f9f828 write_ubi_nand
0x03f9f864 erase_ubi_nand
0x03f9f87c erase_yaffs2_nand
0x03f9f8a0 write_yaffs2_nand
0x03f9f8e4 write_oob_yaffs2_nand
0x03f9f930 read_yaffs2_nand
0x03f9f974 read_oob_yaffs2_nand
0x03f9f9b8 nand_block_isbad
0x03f9f9cc nand_block_markbad
0x03f9f9f8 read_first_logo_page
0x03f9fa40 read_logo_file
0x03f9fa7c wmt_nand_read
0x03f9fa84 wmt_nand_write
.text 0x03f9fa8c 0x35c common/libcommon.a(cmd_net.o)
0x03f9fa8c do_ping
0x03f9fdc4 do_rarpb
0x03f9fdd0 do_tftpb
0x03f9fddc do_bootp
.text 0x03f9fde8 0x930 common/libcommon.a(cmd_nvedit.o)
0x03f9fe5c do_saveenv
0x03f9ffb0 do_printenv
0x03fa0030 _do_env_set
0x03fa04b0 do_setenv
0x03fa04d0 setenv
0x03fa0520 getenv_f
0x03fa05f0 getenv
0x03fa065c getenv_r
.text 0x03fa0718 0x1080 common/libcommon.a(cmd_usb.o)
0x03fa0720 do_usbboot
0x03fa0adc usb_get_class_desc
0x03fa0b88 usb_display_class_sub
0x03fa0cfc usb_display_string
0x03fa0d30 usb_display_desc
0x03fa0e58 usb_display_conf_desc
0x03fa0f04 usb_display_if_desc
0x03fa0f8c usb_display_ep_desc
0x03fa1040 usb_display_config
0x03fa10d0 usb_show_tree_graph
0x03fa12dc usb_show_tree
0x03fa130c do_usb
.text 0x03fa1798 0x41c common/libcommon.a(cmd_rsa.o)
0x03fa1798 image_rsa_check
0x03fa1b0c do_rsa
.text 0x03fa1bb4 0xcf8 common/libcommon.a(command.o)
0x03fa1bb4 do_echo
0x03fa1c34 do_version
0x03fa1c54 var_complete
0x03fa1cdc do_exit
0x03fa1d0c do_test
0x03fa2174 find_cmd
0x03fa2208 do_help
0x03fa23e4 cmd_usage
0x03fa2408 install_auto_complete
0x03fa2434 cmd_auto_complete
.text 0x03fa28ac 0x57c common/libcommon.a(console.o)
0x03fa2950 serial_printf
0x03fa2994 fgetc
0x03fa29c0 ftstc
0x03fa29ec fputc
0x03fa2a14 fputs
0x03fa2a3c fprintf
0x03fa2a84 getc
0x03fa2a9c tstc
0x03fa2ab4 putc
0x03fa2ad0 puts
0x03fa2aec printf
0x03fa2b30 vprintf
0x03fa2b64 ctrlc
0x03fa2bb0 disable_ctrlc
0x03fa2bc8 had_ctrlc
0x03fa2bd8 clear_ctrlc
0x03fa2bec dbg
0x03fa2bf8 console_assign
0x03fa2c88 console_init_f
0x03fa2c98 console_init_r
.text 0x03fa2e28 0x120 common/libcommon.a(devices.o)
0x03fa2e28 device_register
0x03fa2e4c devices_init
0x03fa2f2c devices_done
.text 0x03fa2f48 0xfc4 common/libcommon.a(dlmalloc.o)
0x03fa2f48 malloc_bin_reloc
0x03fa2f84 malloc_trim
0x03fa3054 free
0x03fa327c cfree
0x03fa3280 malloc
0x03fa37f8 calloc
0x03fa38d4 memalign
0x03fa39e4 pvalloc
0x03fa39fc valloc
0x03fa3a08 realloc
0x03fa3e58 malloc_usable_size
0x03fa3e98 mallopt
.text 0x03fa3f0c 0x384 common/libcommon.a(env_common.o)
0x03fa3f0c env_get_char_memory
0x03fa3f50 env_crc_update
0x03fa3f78 env_get_addr
0x03fa3f9c set_default_env
0x03fa403c env_import
0x03fa4108 env_relocate
0x03fa41bc env_complete
.text 0x03fa4290 0x58 common/libcommon.a(env_flash.o)
0x03fa4290 env_get_char_spec
0x03fa429c env_init
0x03fa42dc saveenv
0x03fa42e4 env_relocate_spec
.text 0x03fa42e8 0x94 common/libcommon.a(exports.o)
0x03fa42ec get_version
0x03fa42f4 jumptable_init
.text 0x03fa437c 0xa38 common/libcommon.a(env_otp.o)
0x03fa4720 encdec
0x03fa47d8 genkey
0x03fa48c4 otp_sec_encode
0x03fa49c8 otp_sec_decode
0x03fa4aa8 save_env
0x03fa4b8c esync
0x03fa4d74 do_esync
.text 0x03fa4db4 0x180 common/libcommon.a(wmt-ost.o)
0x03fa4db4 wmt_write_ostc
0x03fa4df8 wmt_init_ost
0x03fa4e58 wmt_read_ostc
0x03fa4ef0 wmt_delayus
.text 0x03fa4f34 0x46c common/libcommon.a(lcd-mipi-ssd2828.o)
0x03fa5374 lcd_ssd2828_init
.text 0x03fa53a0 0x850 common/libcommon.a(wmt_cmd_display.o)
0x03fa5598 display_init
0x03fa56f0 display_clear
0x03fa5758 display_show
0x03fa5b48 display_animation
.text 0x03fa5bf0 0x2428 common/libcommon.a(minivgui.o)
0x03fa625c mv_getSurface
0x03fa626c mv_clearFB
0x03fa62ac mv_initSurface
0x03fa6394 check_display_direction
0x03fa63d8 check_tf_boot
0x03fa6418 mv_dumpSurface
0x03fa6474 mv_drawLine
0x03fa6520 mv_drawRect
0x03fa65a0 mv_fillRect
0x03fa6604 mv_le_to_cpu
0x03fa6624 init_charge_percent
0x03fa667c clear_charge_percent
0x03fa678c mv_textOut
0x03fa6a04 show_charge_picture
0x03fa6c70 show_text_to_screen_no_backlight
0x03fa6ca4 show_text_to_screen
0x03fa6e44 show_2lines_text_to_screen_no_backlight
0x03fa6e80 show_2lines_text_to_screen
0x03fa6f04 display_charge_percent
0x03fa705c mem_cpy_alignment
0x03fa7498 mv_loadBmp
.text 0x03fa8018 0x42c common/libcommon.a(uboot-vpp.o)
0x03fa8018 vpp_mod_init
0x03fa8034 vpp_device_init
0x03fa807c wmt_graphic_init
.text 0x03fa8444 0x120 common/libcommon.a(cmd_mbit.o)
0x03fa8444 excute_reg_op
.text 0x03fa8564 0x29c common/libcommon.a(cmd_textout.o)
0x03fa85e8 do_textout
.text 0x03fa8800 0x4ac common/libcommon.a(env_parse.o)
0x03fa8800 parse_gpio_operation
0x03fa88cc parse_gpio_param
0x03fa8974 parse_backlight_params
0x03fa8a40 parse_pwm_params
.text 0x03fa8cac 0x194c common/libcommon.a(charge_animation.o)
0x03fa93cc low_power_detect
0x03fa95fc check_udc_to_pc
0x03fa9794 check_mptool
0x03fa9904 set_charge_current
0x03fa99a4 play_charge_animation
.text 0x03faa5f8 0x39c common/libcommon.a(flash.o)
0x03faa5f8 flash_protect
0x03faa6e8 addr2info
0x03faa758 flash_write
0x03faa8b4 flash_perror
.text 0x03faa994 0x1bb8 common/libcommon.a(hush.o)
0x03fab200 simple_itoa
0x03fab25c new_pipe
0x03fab308 reserved_word
0x03fab5a8 mapset
0x03fab5cc update_ifs_map
0x03fab63c parse_string_outer
0x03fac490 parse_file_outer
0x03fac4d4 u_boot_hush_start
.text 0x03fac54c 0x3d0 common/libcommon.a(lists.o)
0x03fac54c NewHandle
0x03fac5a8 DisposeHandle
0x03fac5c8 GetHandleSize
0x03fac5d0 SetHandleSize
0x03fac64c ListCreate
0x03fac6ac ListSetAllocationPolicy
0x03fac6c0 ListDispose
0x03fac6c4 ListInsertItems
0x03fac888 ListInsertItem
0x03fac890 ListGetItems
0x03fac8cc ListGetPtrToItem
0x03fac8f8 ListGetDataPtr
0x03fac904 ListGetItemSize
0x03fac910 ListNumItems
.text 0x03fac91c 0x510 common/libcommon.a(miiphyutil.o)
0x03fac91c miiphy_init
0x03fac938 miiphy_register
0x03faca14 miiphy_set_current_dev
0x03faca70 miiphy_get_current_dev
0x03faca88 miiphy_read
0x03facb14 miiphy_write
0x03facba0 miiphy_listdev
0x03facc08 miiphy_info
0x03facc8c miiphy_reset
0x03facd2c miiphy_speed
0x03facdac miiphy_duplex
.text 0x03face2c 0x178c common/libcommon.a(usb.o)
0x03face74 wait_ms
0x03face94 usb_disable_asynch
0x03faceb4 usb_submit_int_msg
0x03faceb8 usb_control_msg
0x03facfb4 usb_bulk_msg
0x03fad024 usb_maxpacket
0x03fad044 usb_set_maxpacket
0x03fad080 usb_parse_config
0x03fad1d0 usb_clear_halt
0x03fad26c usb_get_descriptor
0x03fad2c8 usb_get_configuration_no
0x03fad35c usb_set_address
0x03fad39c usb_set_interface
0x03fad450 usb_set_configuration
0x03fad4c8 usb_set_protocol
0x03fad518 usb_set_idle
0x03fad570 usb_get_report
0x03fad5d4 usb_get_class_descriptor
0x03fad638 usb_get_string
0x03fad7b4 usb_string
0x03fad8b8 usb_get_dev_index
0x03fad8e4 usb_alloc_new_device
0x03fada14 usb_get_hub_descriptor
0x03fada68 usb_clear_hub_feature
0x03fadab4 usb_clear_port_feature
0x03fadb04 usb_set_port_feature
0x03fadb98 usb_get_hub_status
0x03fadbe4 usb_get_port_status
0x03fadc34 usb_hub_reset
0x03fadc48 usb_stop
0x03fadc84 usb_hub_allocate
0x03fadcc8 hub_port_reset
0x03fadd68 usb_hub_probe
0x03faddc0 usb_new_device
0x03fae0ec usb_hub_port_connect_change
0x03fae228 usb_hub_configure
0x03fae434 usb_scan_devices
0x03fae4e4 usb_init
0x03fae584 portspeed
.text 0x03fae5b8 0x1350 common/libcommon.a(usb_storage.o)
0x03fae898 usb_stor_get_dev
0x03fae8ac usb_show_progress
0x03fae8b8 usb_stor_read
0x03faeaa0 usb_stor_info
0x03faeb08 usb_stor_BBB_comdat
0x03faebe0 usb_stor_CB_comdat
0x03faee2c usb_stor_CBI_get_status
0x03faeefc usb_stor_CB_transport
0x03faf0fc usb_stor_BBB_clear_endpt_stall
0x03faf148 usb_stor_BBB_transport
0x03faf300 usb_storage_probe
0x03faf4dc usb_stor_get_info
0x03faf714 usb_stor_scan
.text 0x03faf908 0x3ce8 common/libcommon.a(cmd_fastboot.o)
0x03faffdc fastboot_flash_reset_ptn
0x03fafff0 fastboot_flash_add_ptn
0x03fb0330 fastboot_flash_dump_ptn
0x03fb039c fastboot_flash_find_ptn
0x03fb0414 fastboot_flash_find_nand_ptn
0x03fb0598 init_nand_partitions
0x03fb088c fastboot_flash_get_ptn
0x03fb08b4 fastboot_flash_get_ptn_count
0x03fb08c4 parse_flash_cmd
0x03fb0c8c handle_flash_nand
0x03fb1328 handle_flash_ext4
0x03fb15f0 handle_flash_rom
0x03fb1984 handle_flash_fat
0x03fb1be4 handle_flash_nofs
0x03fb1d80 fbt_handle_flash
0x03fb300c udc_fastboot_transfer
0x03fb3034 udc_fastboot_exit
0x03fb30b8 udc_fastboot_is_init
0x03fb30c8 wmt_mptool_ready
0x03fb30d8 parse_fb_param
0x03fb3340 do_fastboot
0x03fb342c fastboot_loop
0x03fb3554 udc_fastboot_init
.text 0x03fb35f0 0x544 common/libcommon.a(sparse.o)
0x03fb35f0 _unsparse
0x03fb3ae0 do_unsparse
.text 0x03fb3b34 0x7b8 common/libcommon.a(mmc_ext4.o)
0x03fb3b34 add_ptn
0x03fb3c2c import_efi_partition
0x03fb3d40 load_ptbl
0x03fb3e1c fastboot_oem
0x03fb40a0 mmc_part_init
0x03fb41a4 mmc_part_update
0x03fb42a4 board_late_init
.text 0x03fb42ec 0x28 common/libcommon.a(wmt_cmd_check_fastboot.o)
.text 0x03fb4314 0x28 common/libcommon.a(wmt_cmd_recovery_mode.o)
.text 0x03fb433c 0xf0 common/libcommon.a(wmt_cmd_ac_ok.o)
.text 0x03fb442c 0x250 common/libcommon.a(wmt_cmd_wmtfs.o)
0x03fb442c wmt_fs_write
0x03fb454c wmt_fs_read
.text 0x03fb467c 0x2ac common/libcommon.a(wmt_cmd_addfwcenv.o)
0x03fb467c fwc_getenv
0x03fb46e8 getfwc
0x03fb4854 do_addfwcenv
.text 0x03fb4928 0x63c common/libcommon.a(hw_recovery.o)
0x03fb4928 mmc_register_device_recovery
0x03fb4cb0 hw_recovery
.text 0x03fb4f64 0x448 common/libcommon.a(enter_fastboot_mode.o)
0x03fb5028 run_fastboot
0x03fb506c enter_fastboot_by_press_key
0x03fb52c8 enter_fastboot_by_special_file
.text 0x03fb53ac 0x668 common/libcommon.a(wmt_cmd_syncenv.o)
0x03fb5600 do_syncenv
.text 0x03fb5a14 0x1210 common/libcommon.a(aes.o)
0x03fb5cd8 aes_setkey_enc
0x03fb5fd0 aes_setkey_dec
0x03fb6144 aes_crypt_ecb
0x03fb6b24 aes_crypt_cbc
.text 0x03fb6c24 0x26c common/libcommon.a(cmd_aes.o)
0x03fb6c24 do_aescbc
.text 0x03fb6e90 0x1478 common/libcommon.a(wmt_efuse.o)
0x03fb6f80 print_write_read_bytes
0x03fb7070 print_write_read_integers
0x03fb7168 efuse_read_bytes
0x03fb736c efuse_write_bytes
0x03fb7660 efuse_hamming_write_int
0x03fb78c8 efuse_hamming_read_int
0x03fb7afc bytes_3aligned
0x03fb7b38 efuse_register_dump
0x03fb7d6c wmt_efuse_init
0x03fb7eb4 efuse_read_otp
0x03fb808c efuse_write_otp
.text 0x03fb8308 0x50c common/libcommon.a(wmt_cmd_efuse.o)
.text 0x03fb8814 0x1648 common/libcommon.a(wmt_dual_boot.o)
0x03fb97e0 show_dualboot_logo
0x03fb9884 choose_dualboot_system
.text 0x03fb9e5c 0x540 common/libcommon.a(display_aligment.o)
0x03fb9e5c byte1_alig_mem_copy
0x03fb9efc byte1_less_bundle_copy
0x03fb9f2c byte2_alig_mem_copy
0x03fb9fcc byte2_less_bundle_copy
0x03fb9ffc byte3_alig_mem_copy
0x03fba09c byte3_less_bundle_copy
0x03fba0cc mem_copy
0x03fba0e8 less_mem_copy
0x03fba104 bit24_to_bit16_ali24
0x03fba30c bit24_to_bit16_ali32
.text 0x03fba39c 0xb48 common/libcommon.a(rsa_verify.o)
0x03fba39c base64_encode
0x03fba510 base64_decode
0x03fba6a0 pem_read_buffer
0x03fba750 asn1_get_len
0x03fba878 asn1_get_tag
0x03fba8b4 asn1_get_mpi
0x03fba8f8 pem_free
0x03fba934 rsa_init
0x03fba95c rsa_public
0x03fbaa18 rsa_free
0x03fbaa7c x509parse_public_key
0x03fbad8c rsa_check
.text 0x03fbaee4 0x2660 common/libcommon.a(bignum.o)
0x03fbb368 mpi_init
0x03fbb384 mpi_free
0x03fbb3cc mpi_grow
0x03fbb460 mpi_copy
0x03fbb4f8 mpi_swap
0x03fbb540 mpi_lset
0x03fbb598 mpi_get_bit
0x03fbb5c0 mpi_set_bit
0x03fbb630 mpi_lsb
0x03fbb684 mpi_msb
0x03fbb6ec mpi_size
0x03fbb700 mpi_read_binary
0x03fbb7a0 mpi_write_binary
0x03fbb818 mpi_shift_l
0x03fbb90c mpi_shift_r
0x03fbb9d0 mpi_cmp_abs
0x03fbbc10 mpi_cmp_mpi
0x03fbbd18 mpi_cmp_int
0x03fbbd58 mpi_add_abs
0x03fbbea0 mpi_sub_abs
0x03fbbf6c mpi_add_mpi
0x03fbbff0 mpi_sub_mpi
0x03fbc078 mpi_add_int
0x03fbc0b8 mpi_sub_int
0x03fbc0f8 mpi_mul_mpi
0x03fbc244 mpi_mul_int
0x03fbc270 mpi_read_string
0x03fbc41c mpi_div_mpi
0x03fbc9e8 mpi_div_int
0x03fbca28 mpi_mod_mpi
0x03fbcadc mpi_mod_int
0x03fbcc50 mpi_write_string
0x03fbcdc8 mpi_exp_mod
0x03fbd354 mpi_gcd
0x03fbd4f0 mpi_fill_random
.text 0x03fbd544 0x51c common/libcommon.a(pwm.o)
0x03fbd544 lcd_blt_set_level
0x03fbd548 lcd_blt_set_freq
0x03fbd54c pwm_set_control
0x03fbd58c pwm_set_scalar
0x03fbd5c8 pwm_set_period
0x03fbd604 pwm_set_duty
0x03fbd6ec pwm_get_period
0x03fbd704 pwm_get_duty
0x03fbd71c pwm_get_enable
0x03fbd734 set_lcd_power
0x03fbd7c0 pwm_set_gpio
0x03fbd870 pwm_set_enable
0x03fbd8cc lcd_blt_enable
0x03fbd984 lcd_blt_set_pwm
.text 0x03fbda60 0x25ec common/libcommon.a(scl.o)
0x03fbda60 scl_set_enable
0x03fbda7c scl_get_int_status
0x03fbdad0 scl_clean_int_status
0x03fbdb68 sclr_set_colorbar
0x03fbdb9c sclr_get_fb_addr
0x03fbdbc0 sclw_set_mif_enable
0x03fbdbdc sclw_set_fb_addr
0x03fbdbf4 sclw_get_fb_addr
0x03fbdc18 scl_proc_scale_finish
0x03fbdc34 scl_set_reg_update
0x03fbdc50 scl_set_reg_level
0x03fbdc6c scl_set_int_enable
0x03fbdd18 scl_set_scale_enable
0x03fbdd40 scl_set_V_scale
0x03fbdddc scl_set_H_scale
0x03fbde88 scl_set_crop
0x03fbdecc scl_set_tg_enable
0x03fbdee8 scl_set_clock
0x03fbdf04 scl_set_timing
0x03fbdfc4 scl_get_timing
0x03fbe048 scl_set_watchdog
0x03fbe074 scl_set_timing_master
0x03fbe09c scl_get_timing_master
0x03fbe0bc scl_set_drop_line
0x03fbe0d0 scl_set_filter_mode
0x03fbe17c scl_get_filter_mode
0x03fbe1dc sclr_set_mif_enable
0x03fbe1f8 sclr_set_mif2_enable
0x03fbe1fc sclr_set_field_mode
0x03fbe218 sclr_set_display_format
0x03fbe258 sclr_set_color_format
0x03fbe314 sclr_get_color_format
0x03fbe364 sclr_set_fb_addr
0x03fbe39c sclr_set_media_format
0x03fbe3c4 sclr_set_width
0x03fbe3ec sclr_get_width
0x03fbe41c sclr_set_crop
0x03fbe444 sclr_set_framebuffer
0x03fbe484 sclr_get_fb_info
0x03fbe4dc sclr_set_threshold
0x03fbe4f8 sclw_set_color_format
0x03fbe62c sclw_get_color_format
0x03fbe68c scl_set_csc_mode
0x03fbe7e0 scl_init
0x03fbe8e8 sclw_set_alpha
0x03fbe910 sclw_set_field_mode
0x03fbe92c sclw_set_fb_width
0x03fbe9bc sclw_init
0x03fbe9d8 sclw_set_framebuffer
0x03fbea6c sclw_get_fb_width
0x03fbea9c scl_R2_set_mif_enable
0x03fbeab8 scl_R2_set_colorbar
0x03fbeaec scl_R2_set_color_format
0x03fbeb84 scl_R2_get_color_format
0x03fbebd4 scl_reg_dump
0x03fbf320 scl_R2_set_csc_mode
0x03fbf3bc scl_R2_set_framebuffer
0x03fbf458 scl_ALPHA_set_enable
0x03fbf474 scl_ALPHA_set_swap
0x03fbf490 scl_ALPHA_set_src
0x03fbf4bc scl_ALPHA_set_dst
0x03fbf4e8 scl_ALPHA_set_color_key
0x03fbf524 scl_set_overlap
0x03fbf584 scl_set_req_num
0x03fbf5b4 scl_set_scale
0x03fbf74c scl_set_scale_timing
0x03fbf7e0 scl_proc_scale_complete
0x03fbf864 scl_scale_timeout
0x03fbf888 scl_set_scale_timer
0x03fbf88c scl_check_framebuf
0x03fbfadc scl_set_scale_overlap
0x03fbfd0c scl_proc_scale
0x03fbfe28 scl_mod_init
.text 0x03fc004c 0x1a0c common/libcommon.a(govrh.o)
0x03fc004c govrh_mod_suspend
0x03fc0050 govrh_mod_resume
0x03fc0054 govrh2_mod_suspend
0x03fc0058 govrh2_mod_resume
0x03fc005c govrh_set_tg_enable
0x03fc0070 govrh_set_clock
0x03fc00c0 govrh_set_tg1
0x03fc0144 govrh_get_tg_mode
0x03fc0154 govrh_set_tg2
0x03fc01d0 govrh_get_tg
0x03fc0278 govrh2_mod_get_tg
0x03fc028c govrh_mod_get_tg
0x03fc02a0 govrh_get_hscale_up
0x03fc02b0 govrh_set_direct_path
0x03fc02bc govrh_get_int_status
0x03fc02d0 govrh2_mod_get_sts
0x03fc02e0 govrh_mod_get_sts
0x03fc02f0 govrh_clean_int_status
0x03fc030c govrh2_mod_clr_sts
0x03fc0320 govrh_mod_clr_sts
0x03fc0334 govrh_set_int_enable
0x03fc0360 govrh_get_dvo_enable
0x03fc0370 govrh_set_dvo_enable
0x03fc03f4 govrh_set_dvo_sync_polar
0x03fc0414 govrh_get_dvo_color_format
0x03fc0440 govrh_set_dvo_color_format
0x03fc0494 govrh_set_dvo_clock_delay
0x03fc04b4 govrh_set_dvo_outdatw
0x03fc04ec govrh_set_colorbar
0x03fc0518 govrh2_mod_set_colorbar
0x03fc0544 govrh_mod_set_colorbar
0x03fc0570 govrh_set_contrast
0x03fc057c govrh_get_contrast
0x03fc0588 govrh_set_brightness
0x03fc0594 govrh_get_brightness
0x03fc05a0 govrh_set_saturation
0x03fc05b8 govrh_get_saturation
0x03fc05c4 govrh_set_MIF_enable
0x03fc05d8 govrh2_mod_set_enable
0x03fc05ec govrh_mod_set_enable
0x03fc0600 govrh_get_MIF_enable
0x03fc0610 govrh_set_frame_mode
0x03fc06e8 govrh_set_color_format
0x03fc07c0 govrh2_mod_set_color_fmt
0x03fc07d4 govrh_mod_set_color_fmt
0x03fc07e8 govrh_get_color_format
0x03fc083c govrh2_mod_get_color_fmt
0x03fc084c govrh_mod_get_color_fmt
0x03fc085c govrh_reg_dump
0x03fc0c60 govrh2_mod_dump_reg
0x03fc0c70 govrh_mod_dump_reg
0x03fc0c80 govrh_set_source_format
0x03fc0c98 govrh_set_output_format
0x03fc0cb0 govrh_set_fb_addr
0x03fc0cc0 govrh2_mod_set_addr
0x03fc0cdc govrh_mod_set_addr
0x03fc0cf8 govrh_get_fb_addr
0x03fc0d10 govrh2_mod_get_addr
0x03fc0d2c govrh_mod_get_addr
0x03fc0d48 govrh_set_fb2_addr
0x03fc0d58 govrh_get_fb2_addr
0x03fc0d70 govrh_set_fb_width
0x03fc0d7c govrh_set_fb_info
0x03fc0db8 govrh_get_fb_info
0x03fc0de4 govrh_set_fifo_index
0x03fc0df0 govrh_set_reg_level
0x03fc0e0c govrh_set_reg_update
0x03fc0e20 govrh_set_tg
0x03fc0e6c govrh2_mod_set_tg
0x03fc0e88 govrh_mod_set_tg
0x03fc0ea4 govrh_set_csc_mode
0x03fc1088 govrh2_mod_set_csc
0x03fc109c govrh_mod_set_csc
0x03fc10b0 govrh_set_media_format
0x03fc10c4 govrh_HDMI_set_blank_value
0x03fc10dc govrh_HDMI_set_3D_mode
0x03fc10f0 govrh_is_top_field
0x03fc1104 govrh_IGS_set_mode
0x03fc114c govrh_IGS_set_RGB_swap
0x03fc1160 govrh_vmode_to_timing
0x03fc121c govrh_set_videomode
0x03fc13d0 govrh_get_videomode
0x03fc15a4 govrh_set_framebuffer
0x03fc1610 govrh2_mod_set_framebuf
0x03fc1624 govrh_mod_set_framebuf
0x03fc1638 govrh_init
0x03fc16d4 govrh_get_framebuffer
0x03fc1794 govrh_suspend
0x03fc1798 govrh_resume
0x03fc179c govrh_mod_init
.text 0x03fc1a58 0x110c common/libcommon.a(vout.o)
0x03fc1a58 vout_register
0x03fc1a94 vout_get_entry
0x03fc1aac vout_get_info_entry
0x03fc1b14 vout_change_status
0x03fc1b48 vout_query_inf_support
0x03fc1b88 vout_inf_register
0x03fc1bf8 vout_inf_get_entry
0x03fc1c38 vout_device_register
0x03fc1c78 vout_get_device
0x03fc1c90 vout_get_entry_adapter
0x03fc1cac vout_get_inf_entry_adapter
0x03fc1cf8 vout_get_mode_adapter
0x03fc1d58 vout_info_add_entry
0x03fc1e08 vout_info_get_entry
0x03fc1e24 vout_info_set_fixed_timing
0x03fc1e68 vout_info_get_govr
0x03fc1ed4 vout_check_ratio_16_9
0x03fc1f00 vout_find_edid_support_mode
0x03fc2048 vout_set_framebuffer
0x03fc20ac vout_set_blank
0x03fc2134 vout_set_mode
0x03fc2204 vout_config
0x03fc2308 vout_chkplug
0x03fc2388 vout_inf_chkplug
0x03fc23e0 vout_get_edid
0x03fc248c vout_get_video_mode
0x03fc2730 vout_find_match_mode
0x03fc28cc vout_get_edid_option
0x03fc2928 vout_get_width_height
0x03fc29f8 vout_get_mask
0x03fc2a50 vout_check_plugin
0x03fc2ae0 vout_get_tvformat
.text 0x03fc2b64 0x60c common/libcommon.a(lcd.o)
0x03fc2b64 lcd_check_plugin
0x03fc2b7c lcd_get_edid
0x03fc2b84 lcd_config
0x03fc2bb0 lcd_set_type
0x03fc2bc0 lcd_get_type
0x03fc2bd0 lcd_power_on
0x03fc2c20 lcd_set_lvds_id
0x03fc2c30 lcd_get_lvds_id
0x03fc2c40 lcd_set_parm
0x03fc2c54 lcd_get_parm
0x03fc2c84 lcd_init
0x03fc2d18 lcd_set_mode
0x03fc2f28 lcd_get_dev
0x03fc2f44 lcd_set_mutex
0x03fc2f48 lcd_enable_signal
0x03fc2fa0 lcd_set_enable
0x03fc2ff0 lcd_set_power_down
0x03fc302c lcd_panel_register
0x03fc3058 lcd_backlight_power_on
0x03fc30a0 lcd_module_init
.text 0x03fc3170 0x2c8 common/libcommon.a(lvds.o)
0x03fc3170 lvds_set_power_down
0x03fc31ac lvds_set_enable
0x03fc324c lvds_get_enable
0x03fc3264 lvds_set_rgb_type
0x03fc32ac lvds_get_colfmt
0x03fc32b4 lvds_set_sync_polar
0x03fc32d4 lvds_get_sync_polar
0x03fc3310 lvds_reg_dump
0x03fc33c4 lvds_init
.text 0x03fc3438 0xd08 common/libcommon.a(vpp.o)
0x03fc3438 vpp_get_chipid
0x03fc3444 vpp_cache_sync
0x03fc3448 vpp_set_clock_enable
0x03fc349c vpp_mod_unregister
0x03fc34dc vpp_mod_register
0x03fc3588 vpp_mod_get_base
0x03fc35a0 vpp_mod_get_fb_base
0x03fc35b4 vpp_mod_get_framebuf
0x03fc35c8 vpp_mod_set_clock
0x03fc3640 vpp_get_fb_field
0x03fc364c vpp_get_base_clock
0x03fc36b8 vpp_show_timing
0x03fc37e4 vpp_show_framebuf
0x03fc3898 vpp_show_videomode
0x03fc3984 vpp_check_csc_mode
0x03fc39cc vpp_get_gcd
0x03fc39e4 vpp_set_recursive_scale
0x03fc3a00 vpp_convert_colfmt
0x03fc3b74 vpp_get_sys_parameter
0x03fc3e1c vpp_init
0x03fc3ffc vpp_get_colfmt_bpp
0x03fc4098 vpp_calc_refresh
0x03fc40d4 vpp_calc_align
0x03fc40fc vpp_calc_fb_width
0x03fc413c vpp_set_NA12_hiprio
.text 0x03fc4140 0x1b18 common/libcommon.a(hdmi.o)
0x03fc4140 hdmi_ecc
0x03fc4240 hdmi_checksum
0x03fc428c hdmi_set_power_down
0x03fc4328 hdmi_get_power_down
0x03fc4340 hdmi_set_enable
0x03fc4384 hdmi_set_avmute
0x03fc43a0 hdmi_set_dvi_enable
0x03fc43cc hdmi_set_sync_low_active
0x03fc4404 hdmi_get_sync_polar
0x03fc4440 hdmi_set_output_colfmt
0x03fc449c hdmi_get_output_colfmt
0x03fc44dc hdmi_get_plugin
0x03fc452c hdmi_get_plug_status
0x03fc4544 hdmi_clear_plug_status
0x03fc456c hdmi_enable_plugin
0x03fc4598 hdmi_write_fifo
0x03fc45f8 hdmi_read_fifo
0x03fc4688 hdmi_DDC_check_status
0x03fc4748 hdmi_DDC_set_freq
0x03fc477c hdmi_DDC_reset
0x03fc47b4 hdmi_DDC_read_func
0x03fc4a4c hdmi_DDC_read
0x03fc4aa8 hdmi_audio_enable
0x03fc4af8 hdmi_audio_mute
0x03fc4b14 hdmi_write_packet
0x03fc4bd0 hdmi_tx_null_packet
0x03fc4be0 hdmi_tx_general_control_packet
0x03fc4c24 hdmi_get_pic_aspect
0x03fc4c44 hdmi_get_vic
0x03fc4cbc hdmi_tx_avi_infoframe_packet
0x03fc4d78 hdmi_tx_audio_infoframe_packet
0x03fc4df4 hdmi_tx_vendor_specific_infoframe_packet
0x03fc4ea4 hdmi_get_n_cts
0x03fc505c hdmi_set_audio_n_cts
0x03fc5124 hdmi_config_audio
0x03fc52a8 hdmi_config_video
0x03fc52c8 hdmi_set_option
0x03fc5320 hdmi_config
0x03fc5470 hdmi_set_cp_enable
0x03fc54a8 hdmi_check_cp_int
0x03fc54cc hdmi_get_bksv
0x03fc54f0 hdmi_check_plugin
0x03fc5564 hdmi_reg_dump
0x03fc5a74 hdmi_init
.text 0x03fc5c58 0x208c common/libcommon.a(parse-edid.o)
0x03fc5c94 edid_parse_CEA_VendorSpecDataBlock
0x03fc61b8 edid_dump
0x03fc6218 edid_checksum
0x03fc6244 edid_parse
0x03fc7a60 edid_find_support
0x03fc7c8c edid_get_hdmi_phy_addr
0x03fc7ca4 edid_get_hdmi_3d_mask
.text 0x03fc7ce4 0x1168 common/libcommon.a(vout-wmt.o)
0x03fc8204 vo_i2c_proc
0x03fc8298 vout_set_int_type
0x03fc82e0 vout_set_int_enable
0x03fc8308 vout_get_clr_int
0x03fc834c vo_dvi_initial
0x03fc8368 vo_hdmi_set_clock
0x03fc8444 vo_hdmi_cp_set_enable_tmr
0x03fc85bc vo_hdmi_initial
0x03fc85d8 vo_lvds_initial
0x03fc85f4 vout_add_display
0x03fc899c vout_check_display
0x03fc8c58 vout_init
0x03fc8e44 vout_exit
.text 0x03fc8e4c 0xe4 common/libcommon.a(lcd-oem.o)
0x03fc8e4c lcd_oem_get_parm
0x03fc8e58 lcd_uboot_set_backlight
0x03fc8e94 lcd_oem_enable_backlight
0x03fc8ec0 lcd_oem_init
0x03fc8ed0 lcd_get_oem_parm
.text 0x03fc8f30 0x28 common/libcommon.a(lcd-AUO-A080SN01.o)
0x03fc8f30 lcd_a080sn01_get_parm
0x03fc8f48 lcd_a080sn01_init
.text 0x03fc8f58 0x24 common/libcommon.a(lcd-INNOLUX-AT070TN83.o)
0x03fc8f60 lcd_at070tn83_get_parm
0x03fc8f6c lcd_at070tn83_init
.text 0x03fc8f7c 0x3c common/libcommon.a(lcd-CHILIN-LW700at9003.o)
0x03fc8f7c lcd_lw700at9003_get_parm
0x03fc8fa8 lcd_lw700at9003_init
.text 0x03fc8fb8 0x34 common/libcommon.a(lcd-EKING-EK08009-70135.o)
0x03fc8fb8 lcd_ek08009_get_parm
0x03fc8fdc lcd_ek08009_init
.text 0x03fc8fec 0x34 common/libcommon.a(lcd-HANNSTAR-HSD101PFW2.o)
0x03fc8fec lcd_HSD101PFW2_get_parm
0x03fc9010 lcd_HSD101PFW2_init
.text 0x03fc9020 0x28 common/libcommon.a(lcd-lvds-1024x600.o)
0x03fc9020 lcd_LVDS_1024x600_get_parm
0x03fc9038 lcd_LVDS_1024x600_init
.text 0x03fc9048 0xc34 common/libcommon.a(vt1625.o)
0x03fc9b04 vt1625_reg_dump
0x03fc9b9c vt1625_module_init
.text 0x03fc9c7c 0x290 common/libcommon.a(vt1632.o)
0x03fc9c7c vt1632_config
0x03fc9c84 vt1632_get_edid
0x03fc9c8c vt1632_set_power_down
0x03fc9d20 vt1632_set_mode
0x03fc9dcc vt1632_init
0x03fc9e70 vt1632_check_plugin
0x03fc9eec vt1632_interrupt
0x03fc9ef4 vt1632_module_init
.text 0x03fc9f0c 0x8 common/libcommon.a(sil902x.o)
0x03fc9f0c sil902x_module_init
.text 0x03fc9f14 0x1d0 common/libcommon.a(lcd-setup.o)
0x03fc9f6c lcd_spi_setup
.text 0x03fca0e4 0x640 common/libcommon.a(vpp-osif.o)
0x03fca0e4 inl
0x03fca0ec outl
0x03fca0f4 inw
0x03fca0fc outw
0x03fca104 inb
0x03fca10c outb
0x03fca114 vpp_udelay
0x03fca118 vppif_reg32_write
0x03fca150 vppif_reg32_read
0x03fca16c vppif_reg32_mask
0x03fca174 vpp_request_irq
0x03fca17c vpp_free_irq
0x03fca180 wmt_getsyspara
0x03fca1c8 vpp_parse_param
0x03fca25c vpp_lock_l
0x03fca260 vpp_unlock
0x03fca264 vpp_i2c_xfer
0x03fca268 vpp_i2c_init
0x03fca270 vpp_i2c_release
0x03fca278 vpp_i2c_set_lock
0x03fca27c vpp_i2c_enhanced_ddc_read
0x03fca380 vpp_i2c_read
0x03fca45c vpp_i2c_write
0x03fca52c DelayMS
0x03fca54c vpp_check_dbg_level
0x03fca590 vpp_dbg_show
0x03fca5c0 vpp_dbg_show_val1
0x03fca614 vpp_reg_dump
0x03fca688 vpp_backup_reg
0x03fca6dc vpp_restore_reg
.text 0x03fca724 0x870 common/libcommon.a(sw_i2c.o)
0x03fca72c wmt_swi2c_lock
0x03fca730 wmt_swi2c_delay
0x03fca734 wmt_swi2c_SetSDAInput
0x03fca78c wmt_swi2c_SetSDAOutput
0x03fca7e4 wmt_swi2c_GetSDA
0x03fca814 wmt_swi2c_GetSCL
0x03fca844 wmt_swi2c_SetSDA
0x03fca93c wmt_swi2c_SetSCL
0x03fcaa34 wmt_swi2c_SetData
0x03fcaa78 wmt_swi2c_SetClock
0x03fcaac8 wmt_swi2c_StartI2C
0x03fcab24 wmt_swi2c_StopI2C
0x03fcab7c wmt_swi2c_WriteAck
0x03fcac00 wmt_swi2c_ReadAck
0x03fcaccc wmt_swi2c_tx
0x03fcad28 wmt_swi2c_rx
0x03fcad90 wmt_swi2c_reg_bk
0x03fcae0c wmt_swi2c_read
0x03fcaee0 wmt_swi2c_write
0x03fcaf8c wmt_swi2c_check
.text 0x03fcaf94 0x104 lib_generic/libgeneric.a(crc32.o)
0x03fcaf94 crc32
.text 0x03fcb098 0x0 lib_generic/libgeneric.a(ctype.o)
.text 0x03fcb098 0xbc lib_generic/libgeneric.a(display_options.o)
0x03fcb098 display_options
0x03fcb0b8 print_size
.text 0x03fcb154 0x5c8 lib_generic/libgeneric.a(string.o)
0x03fcb170 strnicmp
0x03fcb1e4 strcpy
0x03fcb1fc strncpy
0x03fcb21c strcat
0x03fcb248 strncat
0x03fcb290 strcmp
0x03fcb2b8 strncmp
0x03fcb2f4 strchr
0x03fcb328 strlen
0x03fcb344 strrchr
0x03fcb380 strnlen
0x03fcb3a4 strdup
0x03fcb3d8 strspn
0x03fcb418 strpbrk
0x03fcb454 strtok
0x03fcb4cc strsep
0x03fcb500 strswab
0x03fcb54c memset
0x03fcb5b0 bcopy
0x03fcb5d0 memcpy
0x03fcb5e4 memmove
0x03fcb628 memcmp
0x03fcb660 memscan
0x03fcb688 strstr
0x03fcb6e8 memchr
.text 0x03fcb71c 0x860 lib_generic/libgeneric.a(vsprintf.o)
0x03fcb978 simple_strtoul
0x03fcba30 simple_strtol
0x03fcba58 simple_strtoull
0x03fcbb40 vsprintf
0x03fcbf0c sprintf
0x03fcbf30 panic
.text 0x03fcbf7c 0x1b0 lib_generic/libgeneric.a(gunzip.o)
0x03fcbf7c zfree
0x03fcbf84 zalloc
0x03fcbf94 zunzip
0x03fcc080 gunzip
.text 0x03fcc12c 0x2634 lib_generic/libgeneric.a(zlib.o)
0x03fcc12c zcfree
0x03fcc134 zcalloc
0x03fcc13c inflate_fast
0x03fcc650 inflate_table
0x03fccbb8 inflateReset
0x03fccc58 inflateInit2_
0x03fccd5c inflateInit_
0x03fccd70 inflateEnd
0x03fccdfc adler32
0x03fcd0cc inflate
.text 0x03fce760 0x50 board/wmt/libwmt.a(wmt.o)
0x03fce760 board_init
0x03fce788 misc_init_r
0x03fce790 dram_init
0x03fce7ac __aeabi_unwind_cpp_pr0
.text 0x03fce7b0 0x298 board/wmt/libwmt.a(flash.o)
0x03fce7b0 get_boot_flash_type
0x03fce7dc get_boot_nand_flash_bit_type
0x03fce7fc flash_init
0x03fce99c flash_print_info
0x03fce9c4 flash_erase
0x03fce9f4 read_buff
0x03fce9f8 write_buff
0x03fcea28 flash_real_protect
.text 0x03fcea48 0x24 board/wmt/libwmt.a(main.o)
0x03fcea48 wmt_post
.text 0x03fcea6c 0x900 board/wmt/libwmt.a(spi_flash.o)
0x03fceb38 spi_flash_read_status
0x03fceb58 spi_flash_write_status
0x03fcec60 spi_flash_real_protect
0x03fcec64 spi_flash_init
0x03fceee4 spi_flash_print_info
0x03fcef9c spi_flash_erase
0x03fcf1b0 spi_write_buff
0x03fcf20c spi_read_buff
.text 0x03fcf36c 0x24 board/wmt/libwmt.a(nand_flash.o)
0x03fcf36c nand_flash_init
0x03fcf374 nand_flash_print_info
0x03fcf378 nand_flash_erase
0x03fcf380 nand_write_buff
0x03fcf388 nand_flash_real_protect
.text 0x03fcf390 0x10d8 board/wmt/libwmt.a(ehci-hcd.o)
0x03fcf4ec ehci_submit_root
0x03fcf968 ehci_hcd_init
0x03fcf98c ehci_hcd_stop
0x03fcf99c usb_lowlevel_stop
0x03fcf9a0 strtochar
0x03fcf9c8 ehci_config_port_owner
0x03fcfb64 ehci_disable_port_owner
0x03fcfbe8 ehci_detect_device
0x03fcfcb0 ehci_enable_port
0x03fcfd98 usb_ehci_initial
0x03fcfdc8 submit_int_msg
0x03fcfdd0 usb_check_td
0x03fcfe18 usb_check_bulk_td
0x03fd01e4 submit_control_msg
0x03fd0214 submit_bulk_msg
0x03fd0248 parse_usb_param
0x03fd02fc usb_lowlevel_init
.text 0x03fd0468 0x1448 board/wmt/libwmt.a(usb_uhci.o)
0x03fd0544 usb_fill_td
0x03fd0564 usb_fill_qh
0x03fd0584 usb_uhci_td_stat
0x03fd05d8 usb_get_td_status
0x03fd0694 submit_uhci_control_msg
0x03fd0834 submit_uhci_bulk_msg
0x03fd09b8 uhci_alloc_int_td
0x03fd09f8 submit_uhci_int_msg
0x03fd0aec reset_hc
0x03fd0b2c start_hc
0x03fd0cac reset_hc2
0x03fd0cec start_hc2
0x03fd0e58 usb_init_skel
0x03fd0f98 usb_check_skel
0x03fd1000 usb_check_int_chain
0x03fd10e4 handle_usb_interrupt
0x03fd1140 uhci_lowlevel_init
0x03fd11f4 uhci_lowlevel_stop
0x03fd1228 uhci_submit_rh_msg
.text 0x03fd18b0 0x3d0 board/wmt/libwmt.a(snd-vt1603.o)
0x03fd197c vt1603_snd_init
.text 0x03fd1c80 0x17c board/wmt/libwmt.a(spi_flash_lock.o)
0x03fd1c80 spi_flash_wmt_protect
.text 0x03fd1dfc 0xd8 cpu/arm920t/libarm920t.a(cpu.o)
0x03fd1e38 cpu_init
0x03fd1e40 cleanup_before_linux
0x03fd1e74 do_reset
0x03fd1e8c icache_enable
0x03fd1ea8 icache_disable
0x03fd1ec4 icache_status
.text 0x03fd1ed4 0x1b0 cpu/arm920t/wmt/libwmt.a(serial.o)
0x03fd1ed4 serial_putc
0x03fd1f2c serial_puts
0x03fd1f4c serial_getc
0x03fd1f70 serial_tstc
0x03fd1f88 serial_setbrg
0x03fd2058 serial_init
.text 0x03fd2084 0xc90 cpu/arm920t/wmt/libwmt.a(dma.o)
0x03fd2084 disable_dma
0x03fd20a0 enable_dma
0x03fd20d4 request_dma
0x03fd21d8 clear_dma
0x03fd2248 free_dma
0x03fd22d0 setup_dma
0x03fd23e4 dma_busy
0x03fd2434 dma_complete
0x03fd248c handle_dma_irq
0x03fd24ec prepare_dma_descript
0x03fd257c start_dma
0x03fd267c prepare_dma_long_descript
0x03fd26c4 wake_dma_channel
0x03fd26e4 add_descript
0x03fd2750 init_descriptstack
0x03fd2800 reset_descriptstack
0x03fd2840 free_descriptstack
0x03fd2864 init_dma
0x03fd29d0 set_descript
0x03fd2b80 handle_transfer
.text 0x03fd2d14 0x110 cpu/arm920t/wmt/libwmt.a(cypherif.o)
0x03fd2d14 cipher_enc_dec
0x03fd2d40 cipher_obj_clear
0x03fd2d78 sha256_action
0x03fd2dc0 cypher_initialization
0x03fd2dd4 cipher_release
0x03fd2de8 cypher_encode
.text 0x03fd2e24 0x31dc cpu/arm920t/wmt/libwmt.a(mmc.o)
0x03fd2e24 Change_SD_host
0x03fd2f5c SD_Init_PDMA
0x03fd2f90 PrintPDMAReg
0x03fd3054 sd_init_long_desc
0x03fd30bc sd_check_long_desc
0x03fd3148 sd_pdma_handler
0x03fd3218 sd_free_pdma
0x03fd3234 card_nop
0x03fd3238 sd_command
0x03fd3344 sd_send_scr
0x03fd33bc sd_app_command
0x03fd3454 sd_alloc_desc_pool
0x03fd345c sd_init_short_desc
0x03fd3490 sd_init_short_desc_with_end
0x03fd34b4 sd_config_desc
0x03fd34f4 sd_dump_memory
0x03fd34f8 sd_config_pdma
0x03fd3538 sdmmcSwitch
0x03fd36e4 sdmmcSendExCSD
0x03fd37b0 SD_Init
0x03fd44d4 SD_Initialization
0x03fd4540 mmc_get_dev
0x03fd457c mmc_block_read_singleblock
0x03fd4664 mmc_block_read_multiblock
0x03fd48fc mmc_bread
0x03fd498c mmc_block_write_singleblock
0x03fd4adc mmc_block_write_multiblock
0x03fd4d90 mmc_bwrite
0x03fd4e28 mmc_read
0x03fd4ec8 mmc_write
0x03fd4ed0 mmc_fb_write
0x03fd4f70 sd_set_clock
0x03fd5420 mmc_ident
0x03fd5428 mmc2info
0x03fd543c get_chip_version
0x03fd54ec SD_Controller_Powerup
0x03fd5a30 mmc_init
0x03fd5c98 SD_card_inserted
0x03fd5cf4 mmc_wfs_read
0x03fd5e84 mmc_wfs_write
.text 0x03fd6000 0x2b0 cpu/arm920t/wmt/libwmt.a(cypher.o)
0x03fd6000 cypher_isr
0x03fd6020 cypher_enable
0x03fd6048 cypher_disable
0x03fd605c cypher_mode_set
0x03fd608c cypher_prd_table
0x03fd60d4 cypher_dma_start
0x03fd6120 cypher_transform
0x03fd6144 Get_Output_Buf
0x03fd617c Count_Patterns
0x03fd6194 Cypher_Action
0x03fd6250 Clear_All_Buf
0x03fd6290 Show_Register
.text 0x03fd62b0 0x29c lib_arm/libarm.a(memcpy.o)
0x03fd62b0 arm_memcpy
*fill* 0x03fd654c 0x14 00
.text 0x03fd6560 0xc0 lib_arm/libarm.a(memset.o)
0x03fd6580 arm_memset
.text 0x03fd6620 0x518 lib_arm/libarm.a(armlinux.o)
0x03fd6764 do_bootm_linux
.text 0x03fd6b38 0x4 lib_arm/libarm.a(cache.o)
0x03fd6b38 flush_cache
.text 0x03fd6b3c 0xf8 lib_arm/libarm.a(qsort.o)
0x03fd6b3c qsort
0x03fd6c28 strcmp_compar
.text 0x03fd6c34 0xadc lib_arm/libarm.a(hashtable.o)
0x03fd6c48 hcreate_r
0x03fd6cf4 hdestroy_r
0x03fd6d68 hstrstr_r
0x03fd6e14 hmatch_r
0x03fd6eb4 hsearch_r
0x03fd719c hdelete_r
0x03fd7224 hexport_r
0x03fd74c8 himport_r
.text 0x03fd7710 0x0 lib_arm/libarm.a(errno.o)
.text 0x03fd7710 0x34f8 fs/fat/libfat.a(fat.o)
0x03fd9384 fatpre_register_device
0x03fd9428 fat_register_device
0x03fd9518 do_fat_read_at
0x03fda0a8 do_fat_read
0x03fda0cc file_fat_detectfs
0x03fda224 file_fat_ls
0x03fda234 file_fat_read_at
0x03fda278 file_fat_read
0x03fda28c file_fat_write
0x03fda2c0 format_fat32
0x03fda658 format_fat16
0x03fda980 format_fat12
.text 0x03fdac08 0x31c disk/libdisk.a(part.o)
0x03fdac08 dev_print
0x03fdada8 init_part
0x03fdadc4 get_partition_info
0x03fdadec del_partition
0x03fdae40 add_partition
0x03fdae60 print_part
.text 0x03fdaf24 0x195c disk/libdisk.a(part_dos.o)
0x03fdbb20 test_part_dos
0x03fdbb74 print_part_dos
0x03fdbba0 get_partition_info_dos
0x03fdc51c del_partition_dos
0x03fdc520 add_partition_dos
0x03fdc574 getUserOrderParam
.text 0x03fdc880 0x578 drivers/libdrivers.a(usbdcore.o)
0x03fdc8a4 usbd_get_string
0x03fdc8cc usbd_device_interface_instance
0x03fdc8fc usbd_device_alternate_instance
0x03fdc928 usbd_device_device_descriptor
0x03fdc930 usbd_device_configuration_descriptor
0x03fdc948 usbd_device_interface_descriptor
0x03fdc980 usbd_device_endpoint_descriptor_index
0x03fdc9b4 usbd_device_endpoint_transfersize
0x03fdc9e8 usbd_device_endpoint_descriptor
0x03fdca48 usbd_endpoint_halted
0x03fdca5c usbd_rcv_complete
0x03fdcafc urb_link_init
0x03fdcb0c urb_detach
0x03fdcb30 first_urb_link
0x03fdcb58 first_urb
0x03fdcb6c first_urb_detached
0x03fdcb88 urb_append
0x03fdcbb8 usbd_alloc_urb
0x03fdcc34 usbd_tx_complete
0x03fdcce0 usbd_dealloc_urb
0x03fdccec usbd_device_event_irq
.text 0x03fdcdf8 0x2044 drivers/libdrivers.a(wmt_udc.o)
0x03fdd3a4 FillData
0x03fdd3c8 BULK_EndPoint_EN
0x03fdd488 memcpy_itp
0x03fdd4f8 wmt_ep_setup
0x03fdd628 wmt_udc_setup
0x03fdd694 get_random
0x03fdd708 restore_original_string_serial
0x03fdd70c USB_ControlXferComplete
0x03fddfcc check_udc_connection
0x03fddff4 dma_irq
0x03fde3b4 wmt_udc_irq
0x03fde65c udc_enable
0x03fde728 udc_disable
0x03fde794 udc_startup_events
0x03fde7c4 udc_deinit
0x03fde8d0 udc_init
0x03fdec24 udc_disconnect
0x03fdec48 udc_connect
0x03fdec6c udc_setup_ep
0x03fdeddc udc_endpoint_write
0x03fdedec wmt_udc_connected
0x03fdedfc usb_plugin
.text 0x03fdee3c 0x1f4 drivers/libdrivers.a(usb_ether.o)
0x03fdee3c is_eth_dev_on_usb_host
0x03fdee94 usb_host_eth_scan
.text 0x03fdf030 0x1a00 drivers/libdrivers.a(r8152.o)
0x03fe0810 rtl8152_eth_before_probe
0x03fe0824 rtl8152_eth_probe
0x03fe0974 rtl8152_eth_get_info
.text 0x03fe0a30 0x8b8 drivers/libdrivers.a(asix.o)
0x03fe1108 asix_eth_before_probe
0x03fe111c asix_eth_probe
0x03fe1268 asix_eth_get_info
.text 0x03fe12e8 0x74 cpu/arm920t/wmt/libwmt.a(zde.o)
0x03fe12e8 semi_bootloados
.text 0x03fe135c 0x20c /mnt/backup/common/arm_201103_gcc4.5.2/bin/../lib/gcc/arm-none-linux-gnueabi/4.5.2/libgcc.a(_udivsi3.o)
0x03fe135c __udivsi3
0x03fe135c __aeabi_uidiv
0x03fe1548 __aeabi_uidivmod
.text 0x03fe1568 0x240 /mnt/backup/common/arm_201103_gcc4.5.2/bin/../lib/gcc/arm-none-linux-gnueabi/4.5.2/libgcc.a(_divsi3.o)
0x03fe1568 __aeabi_idiv
0x03fe1568 __divsi3
0x03fe1788 __aeabi_idivmod
.text 0x03fe17a8 0x1c /mnt/backup/common/arm_201103_gcc4.5.2/bin/../lib/gcc/arm-none-linux-gnueabi/4.5.2/libgcc.a(_lshrdi3.o)
0x03fe17a8 __aeabi_llsr
0x03fe17a8 __lshrdi3
.text 0x03fe17c4 0x1c /mnt/backup/common/arm_201103_gcc4.5.2/bin/../lib/gcc/arm-none-linux-gnueabi/4.5.2/libgcc.a(_ashldi3.o)
0x03fe17c4 __ashldi3
0x03fe17c4 __aeabi_llsl
.text 0x03fe17e0 0x3b8 /mnt/backup/common/arm_201103_gcc4.5.2/bin/../lib/gcc/arm-none-linux-gnueabi/4.5.2/libgcc.a(_arm_addsubdf3.o)
0x03fe17e0 __aeabi_drsub
0x03fe17e8 __aeabi_dsub
0x03fe17e8 __subdf3
0x03fe17ec __adddf3
0x03fe17ec __aeabi_dadd
0x03fe1a98 __aeabi_ui2d
0x03fe1a98 __floatunsidf
0x03fe1abc __floatsidf
0x03fe1abc __aeabi_i2d
0x03fe1ae4 __extendsfdf2
0x03fe1ae4 __aeabi_f2d
0x03fe1b24 __aeabi_ul2d
0x03fe1b24 __floatundidf
0x03fe1b38 __floatdidf
0x03fe1b38 __aeabi_l2d
.text 0x03fe1b98 0x12c /mnt/backup/common/arm_201103_gcc4.5.2/bin/../lib/gcc/arm-none-linux-gnueabi/4.5.2/libgcc.a(_arm_cmpdf2.o)
0x03fe1b98 __gtdf2
0x03fe1b98 __gedf2
0x03fe1ba0 __ltdf2
0x03fe1ba0 __ledf2
0x03fe1ba8 __cmpdf2
0x03fe1ba8 __eqdf2
0x03fe1ba8 __nedf2
0x03fe1c30 __aeabi_cdrcmple
0x03fe1c4c __aeabi_cdcmple
0x03fe1c4c __aeabi_cdcmpeq
0x03fe1c60 __aeabi_dcmpeq
0x03fe1c74 __aeabi_dcmplt
0x03fe1c88 __aeabi_dcmple
0x03fe1c9c __aeabi_dcmpge
0x03fe1cb0 __aeabi_dcmpgt
.text 0x03fe1cc4 0x3c /mnt/backup/common/arm_201103_gcc4.5.2/bin/../lib/gcc/arm-none-linux-gnueabi/4.5.2/libgcc.a(_aeabi_uldivmod.o)
0x03fe1cc4 __aeabi_uldivmod
.text 0x03fe1d00 0x10 /mnt/backup/common/arm_201103_gcc4.5.2/bin/../lib/gcc/arm-none-linux-gnueabi/4.5.2/libgcc.a(_dvmd_lnx.o)
0x03fe1d00 __aeabi_ldiv0
0x03fe1d00 __aeabi_idiv0
.text 0x03fe1d10 0x78 /mnt/backup/common/arm_201103_gcc4.5.2/bin/../lib/gcc/arm-none-linux-gnueabi/4.5.2/libgcc.a(bpabi.o)
0x03fe1d10 __gnu_ldivmod_helper
0x03fe1d4c __gnu_uldivmod_helper
.text 0x03fe1d88 0x494 /mnt/backup/common/arm_201103_gcc4.5.2/bin/../lib/gcc/arm-none-linux-gnueabi/4.5.2/libgcc.a(_divdi3.o)
0x03fe1d88 __divdi3
.text 0x03fe221c 0x420 /mnt/backup/common/arm_201103_gcc4.5.2/bin/../lib/gcc/arm-none-linux-gnueabi/4.5.2/libgcc.a(_udivdi3.o)
0x03fe221c __udivdi3
.glue_7 0x03fe263c 0x0
.glue_7 0x00000000 0x0 linker stubs
.glue_7t 0x03fe263c 0x0
.glue_7t 0x00000000 0x0 linker stubs
.vfp11_veneer 0x03fe263c 0x0
.vfp11_veneer 0x00000000 0x0 linker stubs
.v4_bx 0x03fe263c 0x0
.v4_bx 0x00000000 0x0 linker stubs
0x03fe263c . = ALIGN (0x4)
.rodata 0x03fe263c 0x5c08
*(.rodata)
.rodata 0x03fe263c 0x12b board/wmt/libwmt.a(wmt_battery.o)
.rodata 0x03fe2767 0x8d board/wmt/libwmt.a(g2214_charger.o)
.rodata 0x03fe27f4 0x12 board/wmt/libwmt.a(mp2625_charger.o)
*fill* 0x03fe2806 0x2 00
.rodata 0x03fe2808 0x78 board/wmt/libwmt.a(ug31xx_boot.o)
.rodata 0x03fe2880 0x3f0 board/wmt/libwmt.a(sp2541_battery.o)
.rodata 0x03fe2c70 0x774 board/wmt/libwmt.a(wmt_gpio.o)
.rodata 0x03fe33e4 0x248 board/wmt/libwmt.a(uG31xx_API_Measurement.o)
.rodata 0x03fe362c 0x64 board/wmt/libwmt.a(uG31xx_API_Otp.o)
.rodata 0x03fe3690 0x6 board/wmt/libwmt.a(uG31xx_API_System.o)
*fill* 0x03fe3696 0x2 00
.rodata 0x03fe3698 0x80 cpu/arm920t/libarm920t.a(interrupts.o)
.rodata 0x03fe3718 0x26 lib_arm/libarm.a(board.o)
0x03fe3718 version_string
.rodata 0x03fe373e 0x7 net/libnet.a(net.o)
.rodata 0x03fe3745 0x18 net/libnet.a(eth.o)
*fill* 0x03fe375d 0x3 00
.rodata 0x03fe3760 0xb4 common/libcommon.a(cmd_bootm.o)
.rodata 0x03fe3814 0x58 common/libcommon.a(cmd_mem.o)
.rodata 0x03fe386c 0x10 common/libcommon.a(cmd_dma.o)
.rodata 0x03fe387c 0x23c common/libcommon.a(cmd_nand.o)
.rodata 0x03fe3ab8 0x28 common/libcommon.a(env_common.o)
.rodata 0x03fe3ae0 0x48 common/libcommon.a(env_otp.o)
.rodata 0x03fe3b28 0x164 common/libcommon.a(lcd-mipi-ssd2828.o)
.rodata 0x03fe3c8c 0x165c common/libcommon.a(minivgui.o)
.rodata 0x03fe52e8 0x34 common/libcommon.a(usb_storage.o)
.rodata 0x03fe531c 0x124 common/libcommon.a(cmd_fastboot.o)
.rodata 0x03fe5440 0x20 common/libcommon.a(mmc_ext4.o)
.rodata 0x03fe5460 0xb0 common/libcommon.a(wmt_cmd_syncenv.o)
.rodata 0x03fe5510 0xc common/libcommon.a(wmt_efuse.o)
.rodata 0x03fe551c 0xc0 common/libcommon.a(rsa_verify.o)
.rodata 0x03fe55dc 0x78 common/libcommon.a(scl.o)
.rodata 0x03fe5654 0x10 common/libcommon.a(govrh.o)
.rodata 0x03fe5664 0x6c common/libcommon.a(vout.o)
.rodata 0x03fe56d0 0x1f common/libcommon.a(lcd.o)
*fill* 0x03fe56ef 0x1 00
.rodata 0x03fe56f0 0x10 common/libcommon.a(lvds.o)
.rodata 0x03fe5700 0xc9c common/libcommon.a(vpp.o)
0x03fe5716 hdmi_vic_info
0x03fe57e8 vpp_csc_parm
0x03fe598c vpp_videomode
.rodata 0x03fe639c 0x9c common/libcommon.a(hdmi.o)
.rodata 0x03fe6438 0x18 common/libcommon.a(parse-edid.o)
0x03fe6438 edid_v1_descriptor_flag
0x03fe6448 edid_v1_header
.rodata 0x03fe6450 0x4b common/libcommon.a(vout-wmt.o)
*fill* 0x03fe649b 0x1 00
.rodata 0x03fe649c 0x20 common/libcommon.a(lcd-oem.o)
.rodata 0x03fe64bc 0xbb common/libcommon.a(vt1625.o)
.rodata 0x03fe6577 0x26 common/libcommon.a(vt1632.o)
*fill* 0x03fe659d 0x1 00
.rodata 0x03fe659e 0x67a common/libcommon.a(lcd-setup.o)
.rodata 0x03fe6c18 0x35 common/libcommon.a(vpp-osif.o)
*fill* 0x03fe6c4d 0x3 00
.rodata 0x03fe6c50 0x400 lib_generic/libgeneric.a(crc32.o)
.rodata 0x03fe7050 0x9cc lib_generic/libgeneric.a(zlib.o)
0x03fe79f4 z_errmsg
.rodata 0x03fe7a1c 0x2 board/wmt/libwmt.a(flash.o)
.rodata 0x03fe7a1e 0x3f board/wmt/libwmt.a(ehci-hcd.o)
.rodata 0x03fe7a5d 0x10 board/wmt/libwmt.a(snd-vt1603.o)
.rodata 0x03fe7a6d 0x37 drivers/libdrivers.a(usbdcore.o)
.rodata 0x03fe7aa4 0xf0 drivers/libdrivers.a(wmt_udc.o)
.rodata 0x03fe7b94 0x24 drivers/libdrivers.a(usb_ether.o)
.rodata 0x03fe7bb8 0x664 drivers/libdrivers.a(r8152.o)
.rodata 0x03fe821c 0x28 drivers/libdrivers.a(asix.o)
.rodata.str1.1 0x03fe8244 0x1547f
.rodata.str1.1
0x03fe8244 0x45 board/wmt/libwmt.a(poweroff.o)
.rodata.str1.1
0x03fe8289 0x2df board/wmt/libwmt.a(wmt_battery.o)
0x2ed (size before relaxing)
.rodata.str1.1
0x03fe8568 0x14b board/wmt/libwmt.a(g2214_charger.o)
0x15d (size before relaxing)
.rodata.str1.1
0x03fe86b3 0x45 board/wmt/libwmt.a(mp2625_charger.o)
0x5e (size before relaxing)
.rodata.str1.1
0x03fe86f8 0x2a4 board/wmt/libwmt.a(ug31xx_boot.o)
0x2aa (size before relaxing)
.rodata.str1.1
0x03fe899c 0xeb board/wmt/libwmt.a(ug31xx_boot_i2c.o)
.rodata.str1.1
0x03fe8a87 0x27f board/wmt/libwmt.a(vt1603_battery.o)
0x280 (size before relaxing)
.rodata.str1.1
0x03fe8d06 0x87 board/wmt/libwmt.a(sp2541_battery.o)
0x99 (size before relaxing)
.rodata.str1.1
0x03fe8d8d 0x5d board/wmt/libwmt.a(bq_battery_i2c.o)
0x6f (size before relaxing)
.rodata.str1.1
0x03fe8dea 0x276 board/wmt/libwmt.a(wmt_clk.o)
.rodata.str1.1
0x03fe9060 0x1d board/wmt/libwmt.a(wmt_i2c.o)
.rodata.str1.1
0x03fe907d 0xf board/wmt/libwmt.a(wmt_spi_0.o)
.rodata.str1.1
0x03fe908c 0xd0d board/wmt/libwmt.a(wmt_gpio.o)
.rodata.str1.1
0x03fe9d99 0x32 board/wmt/libwmt.a(wmt_ost.o)
.rodata.str1.1
0x03fe9dcb 0x260 cpu/arm920t/libarm920t.a(interrupts.o)
0x27b (size before relaxing)
.rodata.str1.1
0x03fea02b 0x525 lib_arm/libarm.a(board.o)
0x52b (size before relaxing)
.rodata.str1.1
0x03fea550 0x1fe net/libnet.a(net.o)
0x212 (size before relaxing)
.rodata.str1.1
0x03fea74e 0x194 net/libnet.a(tftp.o)
0x1c6 (size before relaxing)
.rodata.str1.1
0x03fea8e2 0x79 net/libnet.a(bootp.o)
0xa9 (size before relaxing)
.rodata.str1.1
0x03fea95b 0x13 net/libnet.a(rarp.o)
0x43 (size before relaxing)
.rodata.str1.1
0x03fea96e 0x172 net/libnet.a(eth.o)
0x19b (size before relaxing)
.rodata.str1.1
0x03feaae0 0x1c1 common/libcommon.a(main.o)
0x203 (size before relaxing)
.rodata.str1.1
0x03feaca1 0xec common/libcommon.a(cmd_autoscript.o)
.rodata.str1.1
0x03fead8d 0x8d common/libcommon.a(cmd_bdinfo.o)
.rodata.str1.1
0x03feae1a 0xfd common/libcommon.a(cmd_boot.o)
0x111 (size before relaxing)
.rodata.str1.1
0x03feaf17 0x541 common/libcommon.a(cmd_bootm.o)
0x56c (size before relaxing)
.rodata.str1.1
0x03feb458 0x67 common/libcommon.a(cmd_console.o)
0x6c (size before relaxing)
.rodata.str1.1
0x03feb4bf 0x273 common/libcommon.a(cmd_mkfsfat.o)
0x27e (size before relaxing)
.rodata.str1.1
0x03feb732 0x53e common/libcommon.a(cmd_fat.o)
0x54f (size before relaxing)
.rodata.str1.1
0x03febc70 0x79e common/libcommon.a(cmd_flash.o)
0x7b6 (size before relaxing)
.rodata.str1.1
0x03fec40e 0x1b0 common/libcommon.a(cmd_load.o)
0x1c2 (size before relaxing)
.rodata.str1.1
0x03fec5be 0x679 common/libcommon.a(cmd_mem.o)
0x6a8 (size before relaxing)
.rodata.str1.1
0x03fecc37 0x782 common/libcommon.a(cmd_mii.o)
0x7a6 (size before relaxing)
.rodata.str1.1
0x03fed3b9 0x6b common/libcommon.a(cmd_misc.o)
0x76 (size before relaxing)
.rodata.str1.1
0x03fed424 0x9dd common/libcommon.a(cmd_mmc.o)
0xa85 (size before relaxing)
.rodata.str1.1
0x03fede01 0x6c common/libcommon.a(cmd_dma.o)
0xa0 (size before relaxing)
.rodata.str1.1
0x03fede6d 0x3045 common/libcommon.a(cmd_nand.o)
0x311b (size before relaxing)
.rodata.str1.1
0x03ff0eb2 0x1a7 common/libcommon.a(cmd_net.o)
0x1e7 (size before relaxing)
.rodata.str1.1
0x03ff1059 0x3ce common/libcommon.a(cmd_nvedit.o)
0x41a (size before relaxing)
.rodata.str1.1
0x03ff1427 0x80d common/libcommon.a(cmd_usb.o)
0x922 (size before relaxing)
.rodata.str1.1
0x03ff1c34 0x219 common/libcommon.a(cmd_rsa.o)
0x22f (size before relaxing)
.rodata.str1.1
0x03ff1e4d 0x311 common/libcommon.a(command.o)
0x34b (size before relaxing)
.rodata.str1.1
0x03ff215e 0x70 common/libcommon.a(console.o)
0x74 (size before relaxing)
.rodata.str1.1
0x03ff21ce 0x2f common/libcommon.a(devices.o)
0x43 (size before relaxing)
.rodata.str1.1
0x03ff21fd 0x12e common/libcommon.a(env_common.o)
0x132 (size before relaxing)
.rodata.str1.1
0x03ff232b 0x6 common/libcommon.a(env_flash.o)
.rodata.str1.1
0x03ff2331 0x23a common/libcommon.a(env_otp.o)
0x252 (size before relaxing)
.rodata.str1.1
0x00000000 0x32 common/libcommon.a(wmt-ost.o)
.rodata.str1.1
0x03ff256b 0x143 common/libcommon.a(lcd-mipi-ssd2828.o)
0x14a (size before relaxing)
.rodata.str1.1
0x03ff26ae 0x1bd common/libcommon.a(wmt_cmd_display.o)
0x217 (size before relaxing)
.rodata.str1.1
0x03ff286b 0x2d1 common/libcommon.a(minivgui.o)
0x2d3 (size before relaxing)
.rodata.str1.1
0x03ff2b3c 0x9d common/libcommon.a(uboot-vpp.o)
0xbb (size before relaxing)
.rodata.str1.1
0x03ff2bd9 0xe9 common/libcommon.a(cmd_mbit.o)
0x110 (size before relaxing)
.rodata.str1.1
0x03ff2cc2 0x255 common/libcommon.a(cmd_textout.o)
0x266 (size before relaxing)
.rodata.str1.1
0x03ff2f17 0x275 common/libcommon.a(env_parse.o)
0x299 (size before relaxing)
.rodata.str1.1
0x03ff318c 0xc5a common/libcommon.a(charge_animation.o)
0xd63 (size before relaxing)
.rodata.str1.1
0x03ff3de6 0xf7 common/libcommon.a(flash.o)
0x10c (size before relaxing)
.rodata.str1.1
0x03ff3edd 0x14e common/libcommon.a(hush.o)
0x1ae (size before relaxing)
.rodata.str1.1
0x03ff402b 0x174 common/libcommon.a(miiphyutil.o)
0x176 (size before relaxing)
.rodata.str1.1
0x03ff419f 0x2e8 common/libcommon.a(usb.o)
.rodata.str1.1
0x03ff4487 0x1cc common/libcommon.a(usb_storage.o)
0x1de (size before relaxing)
.rodata.str1.1
0x03ff4653 0x1469 common/libcommon.a(cmd_fastboot.o)
0x15ea (size before relaxing)
.rodata.str1.1
0x03ff5abc 0x354 common/libcommon.a(sparse.o)
.rodata.str1.1
0x03ff5e10 0x1f6 common/libcommon.a(mmc_ext4.o)
0x251 (size before relaxing)
.rodata.str1.1
0x03ff6006 0xf common/libcommon.a(wmt_cmd_check_fastboot.o)
0x1b (size before relaxing)
.rodata.str1.1
0x03ff6015 0x14 common/libcommon.a(wmt_cmd_recovery_mode.o)
0x20 (size before relaxing)
.rodata.str1.1
0x03ff6029 0x2a common/libcommon.a(wmt_cmd_ac_ok.o)
0x36 (size before relaxing)
.rodata.str1.1
0x03ff6053 0x56c common/libcommon.a(wmt_cmd_wmtfs.o)
0x580 (size before relaxing)
.rodata.str1.1
0x03ff65bf 0x177 common/libcommon.a(wmt_cmd_addfwcenv.o)
0x1aa (size before relaxing)
.rodata.str1.1
0x03ff6736 0x403 common/libcommon.a(hw_recovery.o)
0x4c5 (size before relaxing)
.rodata.str1.1
0x03ff6b39 0x18a common/libcommon.a(enter_fastboot_mode.o)
0x18e (size before relaxing)
.rodata.str1.1
0x03ff6cc3 0xe0 common/libcommon.a(wmt_cmd_syncenv.o)
0xef (size before relaxing)
.rodata.str1.1
0x03ff6da3 0x22a common/libcommon.a(cmd_aes.o)
0x238 (size before relaxing)
.rodata.str1.1
0x03ff6fcd 0xf94 common/libcommon.a(wmt_efuse.o)
0xfa9 (size before relaxing)
.rodata.str1.1
0x03ff7f61 0x1a8 common/libcommon.a(wmt_cmd_efuse.o)
0x1e8 (size before relaxing)
.rodata.str1.1
0x03ff8109 0xe21 common/libcommon.a(wmt_dual_boot.o)
0xebf (size before relaxing)
.rodata.str1.1
0x03ff8f2a 0x35 common/libcommon.a(rsa_verify.o)
.rodata.str1.1
0x00000000 0x5 common/libcommon.a(bignum.o)
.rodata.str1.1
0x03ff8f5f 0x28 common/libcommon.a(pwm.o)
.rodata.str1.1
0x03ff8f87 0x7de common/libcommon.a(scl.o)
0x82d (size before relaxing)
.rodata.str1.1
0x03ff9765 0x31e common/libcommon.a(govrh.o)
0x3c9 (size before relaxing)
.rodata.str1.1
0x03ff9a83 0xc8 common/libcommon.a(vout.o)
0xef (size before relaxing)
.rodata.str1.1
0x03ff9b4b 0x80 common/libcommon.a(lcd.o)
.rodata.str1.1
0x03ff9bcb 0xb2 common/libcommon.a(lvds.o)
.rodata.str1.1
0x03ff9c7d 0x385 common/libcommon.a(vpp.o)
0x39f (size before relaxing)
.rodata.str1.1
0x03ffa002 0x4cd common/libcommon.a(hdmi.o)
0x4d4 (size before relaxing)
.rodata.str1.1
0x03ffa4cf 0xae3 common/libcommon.a(parse-edid.o)
0xafb (size before relaxing)
.rodata.str1.1
0x03ffafb2 0x11a common/libcommon.a(vout-wmt.o)
.rodata.str1.1
0x03ffb0cc 0x76 common/libcommon.a(lcd-oem.o)
.rodata.str1.1
0x03ffb142 0x23 common/libcommon.a(lcd-AUO-A080SN01.o)
.rodata.str1.1
0x03ffb165 0x12 common/libcommon.a(lcd-INNOLUX-AT070TN83.o)
.rodata.str1.1
0x03ffb177 0x48 common/libcommon.a(lcd-CHILIN-LW700at9003.o)
.rodata.str1.1
0x03ffb1bf 0x3b common/libcommon.a(lcd-EKING-EK08009-70135.o)
.rodata.str1.1
0x03ffb1fa 0x47 common/libcommon.a(lcd-HANNSTAR-HSD101PFW2.o)
.rodata.str1.1
0x03ffb241 0x29 common/libcommon.a(lcd-lvds-1024x600.o)
.rodata.str1.1
0x03ffb26a 0x221 common/libcommon.a(vt1625.o)
0x22a (size before relaxing)
.rodata.str1.1
0x03ffb48b 0x68 common/libcommon.a(vt1632.o)
0x6f (size before relaxing)
.rodata.str1.1
0x03ffb4f3 0x38 common/libcommon.a(lcd-setup.o)
0x44 (size before relaxing)
.rodata.str1.1
0x03ffb52b 0x67 common/libcommon.a(vpp-osif.o)
.rodata.str1.1
0x03ffb592 0x2a common/libcommon.a(sw_i2c.o)
.rodata.str1.1
0x03ffb5bc 0x18 lib_generic/libgeneric.a(display_options.o)
.rodata.str1.1
0x03ffb5d4 0x51 lib_generic/libgeneric.a(vsprintf.o)
.rodata.str1.1
0x03ffb625 0x85 lib_generic/libgeneric.a(gunzip.o)
.rodata.str1.1
0x03ffb6aa 0x21c lib_generic/libgeneric.a(zlib.o)
0x21d (size before relaxing)
.rodata.str1.1
0x03ffb8c6 0xaa board/wmt/libwmt.a(flash.o)
0xac (size before relaxing)
.rodata.str1.1
0x03ffb970 0x2a0 board/wmt/libwmt.a(spi_flash.o)
0x2c1 (size before relaxing)
.rodata.str1.1
0x03ffbc10 0x108 board/wmt/libwmt.a(ehci-hcd.o)
.rodata.str1.1
0x03ffbd18 0x32a board/wmt/libwmt.a(usb_uhci.o)
0x32c (size before relaxing)
.rodata.str1.1
0x03ffc042 0x4c board/wmt/libwmt.a(snd-vt1603.o)
.rodata.str1.1
0x03ffc08e 0x5e board/wmt/libwmt.a(spi_flash_lock.o)
.rodata.str1.1
0x03ffc0ec 0x11a cpu/arm920t/wmt/libwmt.a(dma.o)
.rodata.str1.1
0x03ffc206 0x212 cpu/arm920t/wmt/libwmt.a(mmc.o)
0x235 (size before relaxing)
.rodata.str1.1
0x03ffc418 0x119 lib_arm/libarm.a(armlinux.o)
0x17a (size before relaxing)
.rodata.str1.1
0x03ffc531 0x61 lib_arm/libarm.a(hashtable.o)
.rodata.str1.1
0x03ffc592 0x490 fs/fat/libfat.a(fat.o)
0x4b2 (size before relaxing)
.rodata.str1.1
0x03ffca22 0x176 disk/libdisk.a(part.o)
0x1a6 (size before relaxing)
.rodata.str1.1
0x03ffcb98 0x427 disk/libdisk.a(part_dos.o)
0x42f (size before relaxing)
.rodata.str1.1
0x03ffcfbf 0x3bc drivers/libdrivers.a(usbdcore.o)
0x3ce (size before relaxing)
.rodata.str1.1
0x03ffd37b 0x92 drivers/libdrivers.a(wmt_udc.o)
0xd4 (size before relaxing)
.rodata.str1.1
0x03ffd40d 0x79 drivers/libdrivers.a(usb_ether.o)
.rodata.str1.1
0x03ffd486 0x1fa drivers/libdrivers.a(r8152.o)
0x210 (size before relaxing)
.rodata.str1.1
0x03ffd680 0x43 drivers/libdrivers.a(asix.o)
0x48 (size before relaxing)
.ARM.extab 0x03ffd6c3 0x0
.ARM.extab 0x03ffd6c3 0x0 /mnt/backup/common/arm_201103_gcc4.5.2/bin/../lib/gcc/arm-none-linux-gnueabi/4.5.2/libgcc.a(bpabi.o)
.ARM.extab 0x03ffd6c3 0x0 /mnt/backup/common/arm_201103_gcc4.5.2/bin/../lib/gcc/arm-none-linux-gnueabi/4.5.2/libgcc.a(_divdi3.o)
.ARM.extab 0x03ffd6c3 0x0 /mnt/backup/common/arm_201103_gcc4.5.2/bin/../lib/gcc/arm-none-linux-gnueabi/4.5.2/libgcc.a(_udivdi3.o)
.ARM.exidx 0x03ffd6c4 0x20
.ARM.exidx 0x03ffd6c4 0x8 /mnt/backup/common/arm_201103_gcc4.5.2/bin/../lib/gcc/arm-none-linux-gnueabi/4.5.2/libgcc.a(bpabi.o)
0x10 (size before relaxing)
.ARM.exidx 0x03ffd6cc 0x8 /mnt/backup/common/arm_201103_gcc4.5.2/bin/../lib/gcc/arm-none-linux-gnueabi/4.5.2/libgcc.a(_divdi3.o)
.ARM.exidx 0x03ffd6d4 0x10 /mnt/backup/common/arm_201103_gcc4.5.2/bin/../lib/gcc/arm-none-linux-gnueabi/4.5.2/libgcc.a(_udivdi3.o)
0x8 (size before relaxing)
0x03ffd6e4 . = ALIGN (0x4)
.data 0x03ffd700 0xde40
*(.data)
.data 0x03ffd700 0x0 cpu/arm920t/start.o
.data 0x03ffd700 0x0 board/wmt/libwmt.a(poweroff.o)
.data 0x03ffd700 0x24 board/wmt/libwmt.a(wmt_battery.o)
.data 0x03ffd724 0x18 board/wmt/libwmt.a(g2214_charger.o)
0x03ffd724 g2214_charger_dev
.data 0x03ffd73c 0x2c board/wmt/libwmt.a(mp2625_charger.o)
0x03ffd750 mp2625_charger_dev
.data 0x03ffd768 0x30a8 board/wmt/libwmt.a(ug31xx_boot.o)
0x03ffd7b8 FactoryGGBXFile_wms8309_wm8
0x03ffde98 FactoryGGBXFile_wms8309_c7_3900mAh
0x03ffe578 FactoryGGBXFile_wms8309_c7_3000mAh
0x03ffec58 FactoryGGBXFile_wms7320
0x03fff338 FactoryGGBXFile_cw500
0x03fffa18 FactoryGGBXFile_mp718
0x040000f8 FactoryGGBXFile_t73v
0x040007d8 ug31xx_battery_dev
0x040007f4 ug3102_battery_dev
.data 0x04000810 0x0 board/wmt/libwmt.a(ug31xx_boot_i2c.o)
.data 0x04000810 0x20 board/wmt/libwmt.a(vt1603_battery.o)
0x04000814 vt1603_battery_dev
.data 0x04000830 0x20 board/wmt/libwmt.a(sp2541_battery.o)
0x04000834 sp2541_battery_dev
.data 0x04000850 0x20 board/wmt/libwmt.a(bq_battery_i2c.o)
0x04000854 bq_battery_dev
.data 0x04000870 0x0 board/wmt/libwmt.a(lowlevel_init.o)
.data 0x04000870 0x1178 board/wmt/libwmt.a(wmt_clk.o)
0x04000870 pllmapAll
0x040014a8 pllmap
.data 0x040019e8 0x0 board/wmt/libwmt.a(wmt_i2c.o)
.data 0x040019e8 0x0 board/wmt/libwmt.a(wmt_i2c_1.o)
.data 0x040019e8 0x0 board/wmt/libwmt.a(wmt_i2c_2.o)
.data 0x040019e8 0x0 board/wmt/libwmt.a(wmt_i2c_3.o)
.data 0x040019e8 0x4 board/wmt/libwmt.a(wmt_spi_0.o)
.data 0x040019ec 0x0 board/wmt/libwmt.a(wmt_gpio.o)
.data 0x040019ec 0x0 board/wmt/libwmt.a(uG31xx_API_Measurement.o)
.data 0x040019ec 0x0 board/wmt/libwmt.a(uG31xx_API_Otp.o)
.data 0x040019ec 0x0 board/wmt/libwmt.a(uG31xx_API_System.o)
.data 0x040019ec 0x0 board/wmt/libwmt.a(wmt_ost.o)
.data 0x040019ec 0x0 cpu/arm920t/libarm920t.a(interrupts.o)
.data 0x040019ec 0x0 cpu/arm920t/wmt/libwmt.a(interrupts.o)
.data 0x040019ec 0x30 lib_arm/libarm.a(board.o)
0x040019ec g_show_logo
0x040019f0 init_sequence
0x04001a18 showinfoflag
.data 0x04001a1c 0xa net/libnet.a(net.o)
0x04001a1c NetOurVLAN
0x04001a1e NetBcastAddr
0x04001a24 NetOurNativeVLAN
.data 0x04001a26 0x0 net/libnet.a(tftp.o)
.data 0x04001a26 0x0 net/libnet.a(bootp.o)
.data 0x04001a26 0x0 net/libnet.a(rarp.o)
.data 0x04001a26 0x0 net/libnet.a(eth.o)
*fill* 0x04001a26 0x2 00
.data 0x04001a28 0x1c common/libcommon.a(main.o)
0x04001a38 g_load_script_success
0x04001a3c CMD_LOAD_USB_SCRIPT
0x04001a40 CMD_LOAD_SCRIPT
.data 0x04001a44 0x0 common/libcommon.a(cmd_autoscript.o)
.data 0x04001a44 0x0 common/libcommon.a(cmd_bdinfo.o)
.data 0x04001a44 0x0 common/libcommon.a(cmd_boot.o)
.data 0x04001a44 0x4 common/libcommon.a(cmd_bootm.o)
0x04001a44 load_addr
.data 0x04001a48 0x0 common/libcommon.a(cmd_console.o)
.data 0x04001a48 0x0 common/libcommon.a(cmd_mkfsfat.o)
.data 0x04001a48 0x0 common/libcommon.a(cmd_fat.o)
.data 0x04001a48 0x0 common/libcommon.a(cmd_flash.o)
.data 0x04001a48 0x0 common/libcommon.a(cmd_load.o)
.data 0x04001a48 0x4 common/libcommon.a(cmd_mem.o)
0x04001a48 dp_last_length
.data 0x04001a4c 0x2e8 common/libcommon.a(cmd_mii.o)
0x04001a4c reg_0_5_desc_tbl
0x04001a7c desc_and_len_tbl
0x04001aac reg_0_desc_tbl
0x04001b24 reg_1_desc_tbl
0x04001be4 reg_2_desc_tbl
0x04001bf0 reg_3_desc_tbl
0x04001c14 reg_4_desc_tbl
0x04001ca4 reg_5_desc_tbl
.data 0x04001d34 0x0 common/libcommon.a(cmd_misc.o)
.data 0x04001d34 0x4 common/libcommon.a(cmd_mmc.o)
.data 0x04001d38 0x4 common/libcommon.a(cmd_dma.o)
0x04001d38 pDma_Reg
.data 0x04001d3c 0x7038 common/libcommon.a(cmd_nand.o)
0x04001d3c rdmz
0x04003e40 force_set_rr_value
0x04003e44 rdmz_FF
0x04003ff4 rdmz_badblk
0x04004024 rdmz_tb
0x040040a4 eslc_map_table
0x04006224 chip_table
0x04008bb4 id_table
.data 0x04008d74 0x0 common/libcommon.a(cmd_net.o)
.data 0x04008d74 0x4 common/libcommon.a(cmd_nvedit.o)
.data 0x04008d78 0x8 common/libcommon.a(cmd_usb.o)
.data 0x04008d80 0x0 common/libcommon.a(cmd_rsa.o)
.data 0x04008d80 0x0 common/libcommon.a(command.o)
.data 0x04008d80 0x0 common/libcommon.a(console.o)
.data 0x04008d80 0xc common/libcommon.a(devices.o)
0x04008d80 stdio_names
.data 0x04008d8c 0x414 common/libcommon.a(dlmalloc.o)
.data 0x040091a0 0x120 common/libcommon.a(env_common.o)
0x040091a0 default_environment
0x040092bc env_get_char
.data 0x040092c0 0x14 common/libcommon.a(env_flash.o)
0x040092c0 env_ptr
0x040092c4 env_name_spec
0x040092c8 flash_addr
0x040092cc flash_addr2
0x040092d0 env_ptr2
.data 0x040092d4 0x0 common/libcommon.a(exports.o)
.data 0x040092d4 0x0 common/libcommon.a(env_otp.o)
.data 0x040092d4 0x0 common/libcommon.a(wmt-ost.o)
.data 0x040092d4 0xa0 common/libcommon.a(lcd-mipi-ssd2828.o)
.data 0x04009374 0x0 common/libcommon.a(wmt_cmd_display.o)
.data 0x04009374 0xc common/libcommon.a(minivgui.o)
0x04009374 g_display_direction
.data 0x04009380 0x20 common/libcommon.a(uboot-vpp.o)
0x04009380 video_str
.data 0x040093a0 0x0 common/libcommon.a(cmd_mbit.o)
.data 0x040093a0 0x8 common/libcommon.a(cmd_textout.o)
0x040093a0 text_x
0x040093a4 text_y
.data 0x040093a8 0x14 common/libcommon.a(env_parse.o)
.data 0x040093bc 0x10 common/libcommon.a(charge_animation.o)
.data 0x040093cc 0x0 common/libcommon.a(flash.o)
.data 0x040093cc 0x84 common/libcommon.a(hush.o)
.data 0x04009450 0x0 common/libcommon.a(lists.o)
.data 0x04009450 0x0 common/libcommon.a(miiphyutil.o)
.data 0x04009450 0x0 common/libcommon.a(usb.o)
.data 0x04009450 0x24 common/libcommon.a(usb_storage.o)
0x04009450 us_direction
0x04009470 CBWTag
*fill* 0x04009474 0xc 00
.data 0x04009480 0x380 common/libcommon.a(cmd_fastboot.o)
0x040094a4 priv
0x040097dc sig_buf
0x040097e4 part_no
0x040097e8 sys_sub_image
0x040097ec sub_sys_cnt
.data 0x04009800 0x4 common/libcommon.a(sparse.o)
.data 0x04009804 0x70 common/libcommon.a(mmc_ext4.o)
.data 0x04009874 0x0 common/libcommon.a(wmt_cmd_check_fastboot.o)
.data 0x04009874 0x0 common/libcommon.a(wmt_cmd_recovery_mode.o)
.data 0x04009874 0x0 common/libcommon.a(wmt_cmd_ac_ok.o)
.data 0x04009874 0x0 common/libcommon.a(wmt_cmd_wmtfs.o)
.data 0x04009874 0x0 common/libcommon.a(wmt_cmd_addfwcenv.o)
.data 0x04009874 0x10 common/libcommon.a(hw_recovery.o)
.data 0x04009884 0x10 common/libcommon.a(enter_fastboot_mode.o)
.data 0x04009894 0x0 common/libcommon.a(wmt_cmd_syncenv.o)
.data 0x04009894 0x0 common/libcommon.a(aes.o)
.data 0x04009894 0x0 common/libcommon.a(cmd_aes.o)
.data 0x04009894 0x8 common/libcommon.a(wmt_efuse.o)
.data 0x0400989c 0x0 common/libcommon.a(wmt_cmd_efuse.o)
.data 0x0400989c 0x28 common/libcommon.a(wmt_dual_boot.o)
.data 0x040098c4 0x0 common/libcommon.a(display_aligment.o)
.data 0x040098c4 0x0 common/libcommon.a(rsa_verify.o)
.data 0x040098c4 0x0 common/libcommon.a(bignum.o)
.data 0x040098c4 0x0 common/libcommon.a(pwm.o)
.data 0x040098c4 0x8 common/libcommon.a(scl.o)
0x040098c4 scl_regs1
0x040098c8 scl_regs2
.data 0x040098cc 0x0 common/libcommon.a(govrh.o)
.data 0x040098cc 0x3c common/libcommon.a(vout.o)
0x040098cc vout_inf_str
0x040098e4 vout_adpt_str
.data 0x04009908 0x84 common/libcommon.a(lcd.o)
0x04009930 lcd_lvds_id
0x04009934 lcd_panel_id
0x04009938 lcd_panel_bpp
0x0400993c lcd_vout_dev_ops
0x04009988 lcd_panel_on
.data 0x0400998c 0x4 common/libcommon.a(lvds.o)
0x0400998c lvds_regs
.data 0x04009990 0x6c common/libcommon.a(vpp.o)
0x04009990 vpp_colfmt_str
0x040099c4 vpp_mod_str
.data 0x040099fc 0x27c common/libcommon.a(hdmi.o)
0x040099fc hdmi_regs2
0x04009a00 hdmi_regs1
0x04009a04 hdmi_ddc_delay_us
0x04009a08 hdmi_ddc_ctrl_delay_us
0x04009a0c hdmi_n_cts_table
.data 0x04009c78 0xcc common/libcommon.a(parse-edid.o)
0x04009c78 edid_establish_timing
.data 0x04009d44 0xb80 common/libcommon.a(vout-wmt.o)
0x04009d44 vo_swi2c_dvi
0x04009d4c vo_dvi_inf
0x04009d6c vo_hdmi_inf
0x04009d8c vo_lvds_inf
0x04009dac vout_entry_0
0x0400a31c vout_entry_1
0x0400a88c vo_gpio_scl
0x0400a8a8 vo_gpio_sda
.data 0x0400a8c4 0x280 common/libcommon.a(lcd-oem.o)
0x0400a8c4 lcd_oem_parm
0x0400a914 lcd_oem_parm_1024x600
0x0400a964 lcd_oem_parm_1024x768
0x0400a9b4 lcd_oem_parm_1366x768
0x0400aa04 lcd_oem_parm_480x800
0x0400aa54 lcd_oem_parm_800x480
0x0400aaa4 lcd_oem_parm_800x1280
0x0400aaf4 lcd_oem_parm_1280x800
.data 0x0400ab44 0x50 common/libcommon.a(lcd-AUO-A080SN01.o)
0x0400ab44 lcd_a080sn01_parm
.data 0x0400ab94 0x50 common/libcommon.a(lcd-INNOLUX-AT070TN83.o)
0x0400ab94 lcd_at070tn83_parm
.data 0x0400abe4 0x50 common/libcommon.a(lcd-CHILIN-LW700at9003.o)
0x0400abe4 lcd_lw700at9003_parm
.data 0x0400ac34 0x50 common/libcommon.a(lcd-EKING-EK08009-70135.o)
0x0400ac34 lcd_ek08009_parm
.data 0x0400ac84 0x50 common/libcommon.a(lcd-HANNSTAR-HSD101PFW2.o)
0x0400ac84 lcd_HSD101PFW2_parm
.data 0x0400acd4 0x50 common/libcommon.a(lcd-lvds-1024x600.o)
0x0400acd4 lcd_LVDS_1024x600_parm
.data 0x0400ad24 0x150 common/libcommon.a(vt1625.o)
0x0400ae2c vt1625_vout_dev_ops
.data 0x0400ae74 0x48 common/libcommon.a(vt1632.o)
0x0400ae74 vt1632_vout_dev_ops
.data 0x0400aebc 0x0 common/libcommon.a(sil902x.o)
.data 0x0400aebc 0x0 common/libcommon.a(lcd-setup.o)
.data 0x0400aebc 0x0 common/libcommon.a(vpp-osif.o)
.data 0x0400aebc 0x0 common/libcommon.a(sw_i2c.o)
.data 0x0400aebc 0x0 lib_generic/libgeneric.a(crc32.o)
.data 0x0400aebc 0x100 lib_generic/libgeneric.a(ctype.o)
0x0400aebc _ctype
.data 0x0400afbc 0x0 lib_generic/libgeneric.a(display_options.o)
.data 0x0400afbc 0x0 lib_generic/libgeneric.a(string.o)
.data 0x0400afbc 0x0 lib_generic/libgeneric.a(vsprintf.o)
.data 0x0400afbc 0x0 lib_generic/libgeneric.a(gunzip.o)
.data 0x0400afbc 0x0 lib_generic/libgeneric.a(zlib.o)
.data 0x0400afbc 0x0 board/wmt/libwmt.a(wmt.o)
.data 0x0400afbc 0xc board/wmt/libwmt.a(flash.o)
0x0400afbc flash_type
0x0400afc0 nand_flash_bit
0x0400afc4 nor_flash_bit
.data 0x0400afc8 0x0 board/wmt/libwmt.a(main.o)
.data 0x0400afc8 0x138 board/wmt/libwmt.a(spi_flash.o)
0x0400afc8 sf_ids
.data 0x0400b100 0x0 board/wmt/libwmt.a(nand_flash.o)
.data 0x0400b100 0x38 board/wmt/libwmt.a(ehci-hcd.o)
0x0400b136 usb_sel
0x0400b137 ConnectPort
.data 0x0400b138 0x58 board/wmt/libwmt.a(usb_uhci.o)
0x0400b138 usb_base_addr
.data 0x0400b190 0x0 board/wmt/libwmt.a(snd-vt1603.o)
.data 0x0400b190 0x0 board/wmt/libwmt.a(spi_flash_lock.o)
.data 0x0400b190 0x0 cpu/arm920t/libarm920t.a(cpu.o)
.data 0x0400b190 0x8 cpu/arm920t/wmt/libwmt.a(serial.o)
0x0400b190 pUart_Reg
0x0400b194 pGpioReg
.data 0x0400b198 0x220 cpu/arm920t/wmt/libwmt.a(dma.o)
0x0400b198 dma_device_cfg_table
.data 0x0400b3b8 0x4 cpu/arm920t/wmt/libwmt.a(cypherif.o)
0x0400b3b8 Input_Plainttext
.data 0x0400b3bc 0xc cpu/arm920t/wmt/libwmt.a(mmc.o)
0x0400b3bc pSd_Reg
0x0400b3c0 pSd_PDma_Reg
0x0400b3c4 GpioReg
.data 0x0400b3c8 0x0 cpu/arm920t/wmt/libwmt.a(cypher.o)
.data 0x0400b3c8 0x0 lib_arm/libarm.a(memcpy.o)
.data 0x0400b3c8 0x0 lib_arm/libarm.a(memset.o)
.data 0x0400b3c8 0x0 lib_arm/libarm.a(armlinux.o)
.data 0x0400b3c8 0x0 lib_arm/libarm.a(cache.o)
.data 0x0400b3c8 0x0 lib_arm/libarm.a(qsort.o)
.data 0x0400b3c8 0x0 lib_arm/libarm.a(hashtable.o)
.data 0x0400b3c8 0x0 lib_arm/libarm.a(errno.o)
.data 0x0400b3c8 0x0 fs/fat/libfat.a(fat.o)
.data 0x0400b3c8 0x0 disk/libdisk.a(part.o)
.data 0x0400b3c8 0x4 disk/libdisk.a(part_dos.o)
0x0400b3c8 g_partition
.data 0x0400b3cc 0xd0 drivers/libdrivers.a(usbdcore.o)
0x0400b3cc maxstrings
0x0400b3d0 usbd_device_events
0x0400b414 usbd_device_states
0x0400b434 usbd_device_requests
0x0400b468 usbd_device_descriptors
0x0400b48c usbd_device_status
.data 0x0400b49c 0xa4 drivers/libdrivers.a(wmt_udc.o)
0x0400b49c EP0_BUF
0x0400b4e0 UBE_MAX_DMA
0x0400b4e4 DEV_DMA_BASE
0x0400b4e8 DEV_OFFA_EP1
0x0400b4ec EP1_BUF
0x0400b4f0 EP2_Bulk_IN_BUF
0x0400b4f4 EP3_Bulk_OUT_BUF
0x0400b4f8 SF_start_addr
0x0400b4fc sector_size
0x0400b500 tag_addr
0x0400b504 round
0x0400b508 MP_round
0x0400b50c Inquiry_data
0x0400b52c sense_key_data
.data 0x0400b540 0x0 drivers/libdrivers.a(usb_ether.o)
.data 0x0400b540 0x0 drivers/libdrivers.a(r8152.o)
.data 0x0400b540 0x0 drivers/libdrivers.a(asix.o)
.data 0x0400b540 0x0 cpu/arm920t/wmt/libwmt.a(zde.o)
.data 0x0400b540 0x0 /mnt/backup/common/arm_201103_gcc4.5.2/bin/../lib/gcc/arm-none-linux-gnueabi/4.5.2/libgcc.a(_udivsi3.o)
.data 0x0400b540 0x0 /mnt/backup/common/arm_201103_gcc4.5.2/bin/../lib/gcc/arm-none-linux-gnueabi/4.5.2/libgcc.a(_divsi3.o)
.data 0x0400b540 0x0 /mnt/backup/common/arm_201103_gcc4.5.2/bin/../lib/gcc/arm-none-linux-gnueabi/4.5.2/libgcc.a(_lshrdi3.o)
.data 0x0400b540 0x0 /mnt/backup/common/arm_201103_gcc4.5.2/bin/../lib/gcc/arm-none-linux-gnueabi/4.5.2/libgcc.a(_ashldi3.o)
.data 0x0400b540 0x0 /mnt/backup/common/arm_201103_gcc4.5.2/bin/../lib/gcc/arm-none-linux-gnueabi/4.5.2/libgcc.a(_arm_addsubdf3.o)
.data 0x0400b540 0x0 /mnt/backup/common/arm_201103_gcc4.5.2/bin/../lib/gcc/arm-none-linux-gnueabi/4.5.2/libgcc.a(_arm_cmpdf2.o)
.data 0x0400b540 0x0 /mnt/backup/common/arm_201103_gcc4.5.2/bin/../lib/gcc/arm-none-linux-gnueabi/4.5.2/libgcc.a(_aeabi_uldivmod.o)
.data 0x0400b540 0x0 /mnt/backup/common/arm_201103_gcc4.5.2/bin/../lib/gcc/arm-none-linux-gnueabi/4.5.2/libgcc.a(_dvmd_lnx.o)
.data 0x0400b540 0x0 /mnt/backup/common/arm_201103_gcc4.5.2/bin/../lib/gcc/arm-none-linux-gnueabi/4.5.2/libgcc.a(bpabi.o)
.data 0x0400b540 0x0 /mnt/backup/common/arm_201103_gcc4.5.2/bin/../lib/gcc/arm-none-linux-gnueabi/4.5.2/libgcc.a(_divdi3.o)
.data 0x0400b540 0x0 /mnt/backup/common/arm_201103_gcc4.5.2/bin/../lib/gcc/arm-none-linux-gnueabi/4.5.2/libgcc.a(_udivdi3.o)
0x0400b540 . = ALIGN (0x4)
.got
*(.got)
0x0400b540 __u_boot_cmd_start = .
.u_boot_cmd 0x0400b540 0x8f8
*(.u_boot_cmd)
.u_boot_cmd 0x0400b540 0x1c board/wmt/libwmt.a(poweroff.o)
0x0400b540 __u_boot_cmd_poweroff
.u_boot_cmd 0x0400b55c 0x1c board/wmt/libwmt.a(wmt_battery.o)
0x0400b55c __u_boot_cmd_batt
.u_boot_cmd 0x0400b578 0x1c board/wmt/libwmt.a(g2214_charger.o)
0x0400b578 __u_boot_cmd_g2214
.u_boot_cmd 0x0400b594 0x1c board/wmt/libwmt.a(vt1603_battery.o)
0x0400b594 __u_boot_cmd_adc
.u_boot_cmd 0x0400b5b0 0x1c board/wmt/libwmt.a(sp2541_battery.o)
0x0400b5b0 __u_boot_cmd_sp2541
.u_boot_cmd 0x0400b5cc 0x1c common/libcommon.a(cmd_autoscript.o)
0x0400b5cc __u_boot_cmd_autoscr
.u_boot_cmd 0x0400b5e8 0x1c common/libcommon.a(cmd_bdinfo.o)
0x0400b5e8 __u_boot_cmd_bdinfo
.u_boot_cmd 0x0400b604 0x38 common/libcommon.a(cmd_boot.o)
0x0400b604 __u_boot_cmd_go
0x0400b620 __u_boot_cmd_reset
.u_boot_cmd 0x0400b63c 0x54 common/libcommon.a(cmd_bootm.o)
0x0400b63c __u_boot_cmd_bootm
0x0400b658 __u_boot_cmd_boot
0x0400b674 __u_boot_cmd_bootd
.u_boot_cmd 0x0400b690 0x1c common/libcommon.a(cmd_console.o)
0x0400b690 __u_boot_cmd_coninfo
.u_boot_cmd 0x0400b6ac 0x54 common/libcommon.a(cmd_mkfsfat.o)
0x0400b6ac __u_boot_cmd_mkfsfat12
0x0400b6c8 __u_boot_cmd_mkfsfat16
0x0400b6e4 __u_boot_cmd_mkfsfat32
.u_boot_cmd 0x0400b700 0x70 common/libcommon.a(cmd_fat.o)
0x0400b700 __u_boot_cmd_fatload
0x0400b71c __u_boot_cmd_fatstore
0x0400b738 __u_boot_cmd_fatls
0x0400b754 __u_boot_cmd_fatinfo
.u_boot_cmd 0x0400b770 0x54 common/libcommon.a(cmd_flash.o)
0x0400b770 __u_boot_cmd_flinfo
0x0400b78c __u_boot_cmd_erase
0x0400b7a8 __u_boot_cmd_protect
.u_boot_cmd 0x0400b7c4 0x1c common/libcommon.a(cmd_load.o)
0x0400b7c4 __u_boot_cmd_loadb
.u_boot_cmd 0x0400b7e0 0x118 common/libcommon.a(cmd_mem.o)
0x0400b7e0 __u_boot_cmd_md
0x0400b7fc __u_boot_cmd_mm
0x0400b818 __u_boot_cmd_nm
0x0400b834 __u_boot_cmd_mw
0x0400b850 __u_boot_cmd_cp
0x0400b86c __u_boot_cmd_cmp
0x0400b888 __u_boot_cmd_crc32
0x0400b8a4 __u_boot_cmd_base
0x0400b8c0 __u_boot_cmd_loop
0x0400b8dc __u_boot_cmd_mtest
.u_boot_cmd 0x0400b8f8 0x1c common/libcommon.a(cmd_mii.o)
0x0400b8f8 __u_boot_cmd_mii
.u_boot_cmd 0x0400b914 0x1c common/libcommon.a(cmd_misc.o)
0x0400b914 __u_boot_cmd_sleep
.u_boot_cmd 0x0400b930 0xc4 common/libcommon.a(cmd_mmc.o)
0x0400b930 __u_boot_cmd_mmcinit
0x0400b94c __u_boot_cmd_mmcread
0x0400b968 __u_boot_cmd_mmcwrite
0x0400b984 __u_boot_cmd_sdwaitins
0x0400b9a0 __u_boot_cmd_mmcreadimg
0x0400b9bc __u_boot_cmd_guidload
0x0400b9d8 __u_boot_cmd_memreadimg
.u_boot_cmd 0x0400b9f4 0x1c common/libcommon.a(cmd_dma.o)
0x0400b9f4 __u_boot_cmd_dmacp
.u_boot_cmd 0x0400ba10 0x38 common/libcommon.a(cmd_nand.o)
0x0400ba10 __u_boot_cmd_nandrw
0x0400ba2c __u_boot_cmd_parseimg
.u_boot_cmd 0x0400ba48 0x70 common/libcommon.a(cmd_net.o)
0x0400ba48 __u_boot_cmd_bootp
0x0400ba64 __u_boot_cmd_tftpboot
0x0400ba80 __u_boot_cmd_rarpboot
0x0400ba9c __u_boot_cmd_ping
.u_boot_cmd 0x0400bab8 0x70 common/libcommon.a(cmd_nvedit.o)
0x0400bab8 __u_boot_cmd_printenv
0x0400bad4 __u_boot_cmd_setenv
0x0400baf0 __u_boot_cmd_saveenv
0x0400bb0c __u_boot_cmd_run
.u_boot_cmd 0x0400bb28 0x38 common/libcommon.a(cmd_usb.o)
0x0400bb28 __u_boot_cmd_usb
0x0400bb44 __u_boot_cmd_usbboot
.u_boot_cmd 0x0400bb60 0x1c common/libcommon.a(cmd_rsa.o)
0x0400bb60 __u_boot_cmd_rsa
.u_boot_cmd 0x0400bb7c 0xa8 common/libcommon.a(command.o)
0x0400bb7c __u_boot_cmd_version
0x0400bb98 __u_boot_cmd_echo
0x0400bbb4 __u_boot_cmd_test
0x0400bbd0 __u_boot_cmd_exit
0x0400bbec __u_boot_cmd_help
0x0400bc08 __u_boot_cmd_question_mark
.u_boot_cmd 0x0400bc24 0x1c common/libcommon.a(env_otp.o)
0x0400bc24 __u_boot_cmd_esync
.u_boot_cmd 0x0400bc40 0x1c common/libcommon.a(lcd-mipi-ssd2828.o)
0x0400bc40 __u_boot_cmd_b0
.u_boot_cmd 0x0400bc5c 0x54 common/libcommon.a(wmt_cmd_display.o)
0x0400bc5c __u_boot_cmd_display
0x0400bc78 __u_boot_cmd_avdetect
0x0400bc94 __u_boot_cmd_dumphdmi
.u_boot_cmd 0x0400bcb0 0x1c common/libcommon.a(cmd_mbit.o)
0x0400bcb0 __u_boot_cmd_mbit
.u_boot_cmd 0x0400bccc 0x1c common/libcommon.a(cmd_textout.o)
0x0400bccc __u_boot_cmd_textout
.u_boot_cmd 0x0400bce8 0x1c common/libcommon.a(charge_animation.o)
0x0400bce8 __u_boot_cmd_isusbtopc
.u_boot_cmd 0x0400bd04 0x1c common/libcommon.a(cmd_fastboot.o)
0x0400bd04 __u_boot_cmd_fastboot
.u_boot_cmd 0x0400bd20 0x1c common/libcommon.a(wmt_cmd_check_fastboot.o)
0x0400bd20 __u_boot_cmd_check_fastboot
.u_boot_cmd 0x0400bd3c 0x1c common/libcommon.a(wmt_cmd_recovery_mode.o)
0x0400bd3c __u_boot_cmd_check_recovery_mode
.u_boot_cmd 0x0400bd58 0x1c common/libcommon.a(wmt_cmd_ac_ok.o)
0x0400bd58 __u_boot_cmd_check_ac_ok
.u_boot_cmd 0x0400bd74 0x38 common/libcommon.a(wmt_cmd_wmtfs.o)
0x0400bd74 __u_boot_cmd_wfsread
0x0400bd90 __u_boot_cmd_wfswrite
.u_boot_cmd 0x0400bdac 0x1c common/libcommon.a(wmt_cmd_addfwcenv.o)
0x0400bdac __u_boot_cmd_addfwcenv
.u_boot_cmd 0x0400bdc8 0x1c common/libcommon.a(wmt_cmd_syncenv.o)
0x0400bdc8 __u_boot_cmd_syncenv
.u_boot_cmd 0x0400bde4 0x1c common/libcommon.a(cmd_aes.o)
0x0400bde4 __u_boot_cmd_aescbc
.u_boot_cmd 0x0400be00 0x1c common/libcommon.a(wmt_cmd_efuse.o)
0x0400be00 __u_boot_cmd_efuse
.u_boot_cmd 0x0400be1c 0x1c common/libcommon.a(wmt_dual_boot.o)
0x0400be1c __u_boot_cmd_dualboot
0x0400be38 __u_boot_cmd_end = .
0x0400be38 . = ALIGN (0x4)
0x0400be38 __bss_start = .
.bss 0x0400c000 0x161244
*(.bss)
.bss 0x0400c000 0x0 cpu/arm920t/start.o
.bss 0x0400c000 0x0 board/wmt/libwmt.a(poweroff.o)
.bss 0x0400c000 0x24 board/wmt/libwmt.a(wmt_battery.o)
.bss 0x0400c024 0x28 board/wmt/libwmt.a(g2214_charger.o)
.bss 0x0400c04c 0x0 board/wmt/libwmt.a(mp2625_charger.o)
.bss 0x0400c04c 0x28 board/wmt/libwmt.a(ug31xx_boot.o)
0x0400c04c ug31_data
.bss 0x0400c074 0x4 board/wmt/libwmt.a(ug31xx_boot_i2c.o)
.bss 0x0400c078 0x7c board/wmt/libwmt.a(vt1603_battery.o)
.bss 0x0400c0f4 0x0 board/wmt/libwmt.a(sp2541_battery.o)
.bss 0x0400c0f4 0x0 board/wmt/libwmt.a(bq_battery_i2c.o)
.bss 0x0400c0f4 0x0 board/wmt/libwmt.a(lowlevel_init.o)
.bss 0x0400c0f4 0x200 board/wmt/libwmt.a(wmt_clk.o)
.bss 0x0400c2f4 0x1c board/wmt/libwmt.a(wmt_i2c.o)
0x0400c30c i2c_xfer_mode
.bss 0x0400c310 0x18 board/wmt/libwmt.a(wmt_i2c_1.o)
.bss 0x0400c328 0x18 board/wmt/libwmt.a(wmt_i2c_2.o)
.bss 0x0400c340 0x18 board/wmt/libwmt.a(wmt_i2c_3.o)
.bss 0x0400c358 0x9c board/wmt/libwmt.a(wmt_spi_0.o)
.bss 0x0400c3f4 0x0 board/wmt/libwmt.a(wmt_gpio.o)
.bss 0x0400c3f4 0x0 board/wmt/libwmt.a(uG31xx_API_Measurement.o)
.bss 0x0400c3f4 0x0 board/wmt/libwmt.a(uG31xx_API_Otp.o)
.bss 0x0400c3f4 0x0 board/wmt/libwmt.a(uG31xx_API_System.o)
.bss 0x0400c3f4 0x4 board/wmt/libwmt.a(wmt_ost.o)
.bss 0x0400c3f8 0x0 cpu/arm920t/libarm920t.a(interrupts.o)
.bss 0x0400c3f8 0x8 cpu/arm920t/wmt/libwmt.a(interrupts.o)
.bss 0x0400c400 0x1c lib_arm/libarm.a(board.o)
0x0400c400 bootcmdflag
0x0400c410 end_logoshow_time
0x0400c414 monitor_flash_len
0x0400c418 g_abort
.bss 0x0400c41c 0x25dc net/libnet.a(net.o)
0x0400c41c NetState
0x0400c420 NetPingIP
0x0400c438 NetRestartWrap
0x0400c440 NetOurEther
0x0400c448 NetTxPacket
0x0400c44c NetOurIP
0x0400c450 NetArpWaitPacketIP
0x0400c454 NetOurSubnetMask
0x0400c458 NetOurGatewayIP
0x0400c45c NetArpWaitReplyIP
0x0400c460 NetArpWaitTimerStart
0x0400c464 NetArpWaitTry
0x0400c46e NetEtherNullAddr
0x0400c474 NetArpWaitPacketMAC
0x0400c478 NetArpWaitTxPacket
0x0400c47c NetIPID
0x0400c484 NetArpWaitTxPacketSize
0x0400c488 NetRxPkt
0x0400c48c NetRxPktLen
0x0400c490 NetServerIP
0x0400c494 NetServerEther
0x0400c49a PktBuf
0x0400e2bc NetRxPackets
0x0400e2cc NetArpWaitPacketBuf
0x0400e8ec NetBootFileXferSize
0x0400e8f0 NetOurDNSIP
0x0400e8f4 NetOurNISDomain
0x0400e914 NetOurHostName
0x0400e934 NetOurRootPath
0x0400e974 NetBootFileSize
0x0400e976 BootFile
.bss 0x0400e9f8 0x34 net/libnet.a(tftp.o)
.bss 0x0400ea2c 0x8 net/libnet.a(bootp.o)
0x0400ea2c BootpID
0x0400ea30 BootpTry
.bss 0x0400ea34 0x4 net/libnet.a(rarp.o)
0x0400ea34 RarpTry
.bss 0x0400ea38 0xc net/libnet.a(eth.o)
.bss 0x0400ea44 0x400 common/libcommon.a(main.o)
0x0400ea44 console_buffer
.bss 0x0400ee44 0x0 common/libcommon.a(cmd_autoscript.o)
.bss 0x0400ee44 0x0 common/libcommon.a(cmd_bdinfo.o)
.bss 0x0400ee44 0x0 common/libcommon.a(cmd_boot.o)
.bss 0x0400ee44 0x40 common/libcommon.a(cmd_bootm.o)
0x0400ee44 header
.bss 0x0400ee84 0x0 common/libcommon.a(cmd_console.o)
.bss 0x0400ee84 0x0 common/libcommon.a(cmd_mkfsfat.o)
.bss 0x0400ee84 0x0 common/libcommon.a(cmd_fat.o)
.bss 0x0400ee84 0x0 common/libcommon.a(cmd_flash.o)
.bss 0x0400ee84 0x88 common/libcommon.a(cmd_load.o)
0x0400ee88 os_data_count
0x0400ee94 his_pad_count
0x0400ee98 his_pad_char
0x0400eeb1 his_eol
0x0400eeb8 os_data_init
0x0400eecc os_data_char
0x0400eed0 his_quote
0x0400eed4 send_ptr
0x0400eed8 send_parms
0x0400eeec os_data_header
.bss 0x0400ef0c 0x14 common/libcommon.a(cmd_mem.o)
0x0400ef10 mm_last_addr
0x0400ef14 mm_last_size
0x0400ef18 dp_last_addr
0x0400ef1c dp_last_size
.bss 0x0400ef20 0x18 common/libcommon.a(cmd_mii.o)
0x0400ef20 last_op
0x0400ef24 last_addr_lo
0x0400ef28 last_addr_hi
0x0400ef2c last_reg_lo
0x0400ef30 last_reg_hi
0x0400ef34 last_data
.bss 0x0400ef38 0x0 common/libcommon.a(cmd_misc.o)
.bss 0x0400ef38 0x20c common/libcommon.a(cmd_mmc.o)
0x0400ef3c fastboot_part_type
.bss 0x0400f144 0x4 common/libcommon.a(cmd_dma.o)
0x0400f144 flag0
.bss 0x0400f148 0x440 common/libcommon.a(cmd_nand.o)
0x0400f14c pNFCRegs
0x0400f150 nand_dev_desc
0x0400f430 g_WMTNFCBASE
0x0400f434 pNand_PDma_Reg
0x0400f438 ReadDesc
0x0400f43c cur_chip
0x0400f444 r_w_check_ecc_robust
0x0400f448 max_ecc_bits
0x0400f46c bad_block_pos
0x0400f55c oob_config
0x0400f57c do_page_rw
0x0400f580 erase_all_read_fail
0x0400f584 WriteDesc
.bss 0x0400f588 0x0 common/libcommon.a(cmd_net.o)
.bss 0x0400f588 0x0 common/libcommon.a(cmd_nvedit.o)
.bss 0x0400f588 0x0 common/libcommon.a(cmd_usb.o)
.bss 0x0400f588 0x0 common/libcommon.a(cmd_rsa.o)
.bss 0x0400f588 0x600 common/libcommon.a(command.o)
.bss 0x0400fb88 0x8 common/libcommon.a(console.o)
.bss 0x0400fb90 0x10 common/libcommon.a(devices.o)
0x0400fb90 devlist
0x0400fb94 stdio_devices
.bss 0x0400fba0 0x38 common/libcommon.a(dlmalloc.o)
.bss 0x0400fbd8 0xc common/libcommon.a(env_common.o)
0x0400fbd8 env_htab
.bss 0x0400fbe4 0x0 common/libcommon.a(env_flash.o)
.bss 0x0400fbe4 0x0 common/libcommon.a(exports.o)
.bss 0x0400fbe4 0x0 common/libcommon.a(env_otp.o)
.bss 0x0400fbe4 0x4 common/libcommon.a(wmt-ost.o)
.bss 0x0400fbe8 0x0 common/libcommon.a(lcd-mipi-ssd2828.o)
.bss 0x0400fbe8 0x0 common/libcommon.a(wmt_cmd_display.o)
.bss 0x0400fbe8 0xc8 common/libcommon.a(minivgui.o)
0x0400fc98 rgb2color
0x0400fc9c putcolor2fb
0x0400fca0 putcolor2mem
0x0400fca4 bitsPerPixel
0x0400fca8 g_tf_boot
.bss 0x0400fcb0 0x88 common/libcommon.a(uboot-vpp.o)
0x0400fcb0 g_fb_phy
0x0400fcb4 g_img_phy
0x0400fcb8 g_display_param
0x0400fcd0 g_display_vaild
0x0400fcd4 g_pwm_setting
0x0400fce8 g_logo_scale
0x0400fcec g_display_param2
0x0400fd04 g_lcd_pw_pin
0x0400fd20 g_logo_x
0x0400fd24 g_logo_y
0x0400fd28 g_backlight_param
.bss 0x0400fd38 0x0 common/libcommon.a(cmd_mbit.o)
.bss 0x0400fd38 0x0 common/libcommon.a(cmd_textout.o)
.bss 0x0400fd38 0x0 common/libcommon.a(env_parse.o)
.bss 0x0400fd38 0x10 common/libcommon.a(charge_animation.o)
.bss 0x0400fd48 0x0 common/libcommon.a(flash.o)
.bss 0x0400fd48 0x558 common/libcommon.a(hush.o)
0x04010178 last_return_code
0x0401029c nesting_level
.bss 0x040102a0 0x0 common/libcommon.a(lists.o)
.bss 0x040102a0 0xc common/libcommon.a(miiphyutil.o)
.bss 0x040102ac 0xaa9c common/libcommon.a(usb.o)
0x0401ac40 usb_started
.bss 0x0401ad48 0x5a0 common/libcommon.a(usb_storage.o)
*fill* 0x0401b2e8 0x18 00
.bss 0x0401b300 0x3e0 common/libcommon.a(cmd_fastboot.o)
0x0401b69c sig_size
0x0401b6a8 mmc_controller_no
0x0401b6b8 detect_mptool
0x0401b6bc g_fb_param
0x0401b6c0 mmc_part_type
0x0401b6c1 rsa_check_flag
0x0401b6c2 logo_name
0x0401b6c3 sub_sys_lt_256M
.bss 0x0401b6e0 0x1c common/libcommon.a(sparse.o)
*fill* 0x0401b6fc 0x4 00
.bss 0x0401b700 0x4800 common/libcommon.a(mmc_ext4.o)
.bss 0x0401ff00 0x4 common/libcommon.a(wmt_cmd_check_fastboot.o)
.bss 0x0401ff04 0x4 common/libcommon.a(wmt_cmd_recovery_mode.o)
.bss 0x0401ff08 0x4 common/libcommon.a(wmt_cmd_ac_ok.o)
.bss 0x0401ff0c 0x0 common/libcommon.a(wmt_cmd_wmtfs.o)
.bss 0x0401ff0c 0x104 common/libcommon.a(wmt_cmd_addfwcenv.o)
0x0401ff0c modelname
.bss 0x04020010 0x4 common/libcommon.a(hw_recovery.o)
.bss 0x04020014 0x0 common/libcommon.a(enter_fastboot_mode.o)
.bss 0x04020014 0x0 common/libcommon.a(wmt_cmd_syncenv.o)
.bss 0x04020014 0x222c common/libcommon.a(aes.o)
.bss 0x04022240 0x0 common/libcommon.a(cmd_aes.o)
.bss 0x04022240 0x8 common/libcommon.a(wmt_efuse.o)
.bss 0x04022248 0x0 common/libcommon.a(wmt_cmd_efuse.o)
.bss 0x04022248 0x94 common/libcommon.a(wmt_dual_boot.o)
.bss 0x040222dc 0x0 common/libcommon.a(display_aligment.o)
.bss 0x040222dc 0x0 common/libcommon.a(rsa_verify.o)
.bss 0x040222dc 0x0 common/libcommon.a(bignum.o)
.bss 0x040222dc 0x10 common/libcommon.a(pwm.o)
.bss 0x040222ec 0x8 common/libcommon.a(scl.o)
0x040222ec p_scl
0x040222f0 p_sclw
.bss 0x040222f4 0xc common/libcommon.a(govrh.o)
0x040222f4 p_govrh2
0x040222f8 p_govrh
0x040222fc govrh_suspend_yaddr
.bss 0x04022300 0x30 common/libcommon.a(vout.o)
0x04022300 vout_array
0x04022308 vout_info
0x0402231c vout_inf_array
0x04022328 vout_dev_list
0x0402232c vout_board_info
.bss 0x04022330 0x34 common/libcommon.a(lcd.o)
0x04022330 p_lcd
0x04022334 lcd_type
0x04022338 lcd_device_array
0x04022360 lcd_pwm_enable
.bss 0x04022364 0x0 common/libcommon.a(lvds.o)
.bss 0x04022364 0xd4 common/libcommon.a(vpp.o)
0x04022364 vpp_mod_base_list
0x04022398 g_vpp
0x0402241c hdmi_cp
0x04022420 hdmi_ri_tm_cnt
0x04022424 hdmi_info
.bss 0x04022438 0x0 common/libcommon.a(hdmi.o)
.bss 0x04022438 0xa0 common/libcommon.a(parse-edid.o)
0x04022438 edid_msg_enable
0x0402243c edid_parsed
0x040224d4 edid_disable
.bss 0x040224d8 0x1c common/libcommon.a(vout-wmt.o)
0x040224d8 vo_lvds_init_flag
0x040224dc vo_plug_vout
0x040224e0 vo_plug_func
0x040224e4 hdmi_cur_plugin
0x040224e8 dvo_vout_mode
0x040224ec int_vout_mode
0x040224f0 vo_poll_vout
.bss 0x040224f4 0x4 common/libcommon.a(lcd-oem.o)
0x040224f4 lcd_bl_time
.bss 0x040224f8 0x0 common/libcommon.a(lcd-AUO-A080SN01.o)
.bss 0x040224f8 0x0 common/libcommon.a(lcd-INNOLUX-AT070TN83.o)
.bss 0x040224f8 0x0 common/libcommon.a(lcd-CHILIN-LW700at9003.o)
.bss 0x040224f8 0x0 common/libcommon.a(lcd-EKING-EK08009-70135.o)
.bss 0x040224f8 0x0 common/libcommon.a(lcd-HANNSTAR-HSD101PFW2.o)
.bss 0x040224f8 0x0 common/libcommon.a(lcd-lvds-1024x600.o)
.bss 0x040224f8 0x18 common/libcommon.a(vt1625.o)
0x040224f8 vt1625_out_mode
0x04022504 vt1625_tv_mode
0x04022508 vt1625_colfmt
0x0402250c vt1625_reg_t
.bss 0x04022510 0x4 common/libcommon.a(vt1632.o)
.bss 0x04022514 0x0 common/libcommon.a(sil902x.o)
.bss 0x04022514 0x0 common/libcommon.a(lcd-setup.o)
.bss 0x04022514 0x8 common/libcommon.a(vpp-osif.o)
0x04022514 vpp_i2c_lock
0x04022518 vpp_lock_cnt
.bss 0x0402251c 0x8 common/libcommon.a(sw_i2c.o)
0x0402251c swi2c_sda
0x04022520 swi2c_scl
.bss 0x04022524 0x0 lib_generic/libgeneric.a(crc32.o)
.bss 0x04022524 0x0 lib_generic/libgeneric.a(ctype.o)
.bss 0x04022524 0x0 lib_generic/libgeneric.a(display_options.o)
.bss 0x04022524 0x4 lib_generic/libgeneric.a(string.o)
0x04022524 ___strtok
.bss 0x04022528 0x0 lib_generic/libgeneric.a(vsprintf.o)
.bss 0x04022528 0x0 lib_generic/libgeneric.a(gunzip.o)
.bss 0x04022528 0x0 lib_generic/libgeneric.a(zlib.o)
.bss 0x04022528 0x0 board/wmt/libwmt.a(wmt.o)
.bss 0x04022528 0x82a0 board/wmt/libwmt.a(flash.o)
0x04022528 flash_info
0x04024d5c flash_info_nand
0x0402758c flash_info_spi
0x04027f98 flash_info_nor
.bss 0x0402a7c8 0x4 board/wmt/libwmt.a(main.o)
0x0402a7c8 chip_id
.bss 0x0402a7cc 0xc board/wmt/libwmt.a(spi_flash.o)
0x0402a7cc sfreg
.bss 0x0402a7d8 0x0 board/wmt/libwmt.a(nand_flash.o)
*fill* 0x0402a7d8 0x8 00
.bss 0x0402a7e0 0x1e0 board/wmt/libwmt.a(ehci-hcd.o)
0x0402a920 hcor
0x0402a924 rootdev
0x0402a92c hccr
0x0402a930 port_connect_status
0x0402a934 MaxDevice
0x0402a938 length_flag
0x0402a9a0 pipe_flag
0x0402a9a4 g_usb_param
0x0402a9a8 usb_flag
0x0402a9ac inquiry_flag
*fill* 0x0402a9c0 0x640 00
.bss 0x0402b000 0x7000 board/wmt/libwmt.a(usb_uhci.o)
0x0402b080 tmp_td
0x0402f080 qh_cntrl
0x0402f100 qh_bulk
0x0402f180 tmp_int_td
0x0402f580 td_int
0x04030000 framelist
0x04031000 td_last
0x04031080 qh_end
.bss 0x04032000 0x0 board/wmt/libwmt.a(snd-vt1603.o)
.bss 0x04032000 0x0 board/wmt/libwmt.a(spi_flash_lock.o)
.bss 0x04032000 0x0 cpu/arm920t/libarm920t.a(cpu.o)
.bss 0x04032000 0x0 cpu/arm920t/wmt/libwmt.a(serial.o)
.bss 0x04032000 0x168 cpu/arm920t/wmt/libwmt.a(dma.o)
.bss 0x04032168 0x9600c cpu/arm920t/wmt/libwmt.a(cypherif.o)
0x04032168 Ciphertext
0x0407d169 Output_Plainttext
0x0407d16c Plaintext
0x040c8170 text_len
.bss 0x040c8174 0x840 cpu/arm920t/wmt/libwmt.a(mmc.o)
0x040c8174 SDDevInfo
0x040c8178 SD0DevInfo
0x040c843c SD1DevInfo
0x040c86f4 SD2DevInfo
.bss 0x040c89b4 0x73068 cpu/arm920t/wmt/libwmt.a(cypher.o)
0x040c89b4 cipher_int_flag
0x040c89b8 OUTPUT_buf
0x041139c0 in_table_buf
0x0413b9c0 out_table_buf
0x0413b9e8 KEY_buf
0x0413ba08 IV_buf
0x0413ba18 INC_buf
.bss 0x0413ba1c 0x0 lib_arm/libarm.a(memcpy.o)
.bss 0x0413ba1c 0x0 lib_arm/libarm.a(memset.o)
.bss 0x0413ba1c 0x4 lib_arm/libarm.a(armlinux.o)
.bss 0x0413ba20 0x0 lib_arm/libarm.a(cache.o)
.bss 0x0413ba20 0x0 lib_arm/libarm.a(qsort.o)
.bss 0x0413ba20 0x0 lib_arm/libarm.a(hashtable.o)
.bss 0x0413ba20 0x4 lib_arm/libarm.a(errno.o)
0x0413ba20 errno
*fill* 0x0413ba24 0x1c 00
.bss 0x0413ba40 0x30200 fs/fat/libfat.a(fat.o)
0x0413bac0 get_contents_vfatname_block
0x0414bac0 get_dentfromdir_block
0x0415bb00 do_fat_read_at_block
0x0416bb04 fat_fwc
.bss 0x0416bc40 0x0 disk/libdisk.a(part.o)
.bss 0x0416bc40 0x10 disk/libdisk.a(part_dos.o)
0x0416bc40 g_sectors
0x0416bc44 g_heads
0x0416bc48 g_cylinders
0x0416bc4c g_extendPart
.bss 0x0416bc50 0x10 drivers/libdrivers.a(usbdcore.o)
0x0416bc50 usb_strings
0x0416bc54 usb_devices
0x0416bc58 registered_functions
0x0416bc5c registered_devices
.bss 0x0416bc60 0x458 drivers/libdrivers.a(wmt_udc.o)
0x0416be2c udc_cmd_flag
0x0416be38 ControlState
0x0416be3c pSetupCommandBuf
0x0416be58 start_vendor_command
0x0416be5c control_buf
0x0416bf5c get
0x0416bf60 udc_config
0x0416bf64 udc_download_flag
0x0416bf68 udc_download_last_bytes
0x0416bf6c d_bytes
0x0416bf70 d_bytes_total
0x0416bf74 g_udc_connected
0x0416bf7c bulk_out_dma1
0x0416bf80 bulk_out_dma2
0x0416bf84 bulk_in_dma1
0x0416bf88 bulk_in_dma2
0x0416bf8c int_in_dma1
0x0416bfa0 pSetupCommand
0x0416bfa4 SetupBuf
0x0416bfa8 IntBuf
0x0416bfac pUSBMiscControlRegister5
0x0416bfdc EP0_INT
0x0416bfe0 DMA_INT
0x0416bfe4 SET_ADDR
0x0416bfe8 func_sel_length
0x0416bfec bulk_round
0x0416bff0 fw_upgrade
0x0416bff4 MP_execute
0x0416bff8 exec_at
0x0416bffc recive_setup
0x0416c000 csw_status
0x0416c004 recive_CBW
0x0416c008 direction
0x0416c00c reconnect
0x0416c010 reconnect_status
0x0416c014 to_get_reconnect
0x0416c018 bulk_in_stall
0x0416c01c data_transfer_complete
0x0416c020 N_dma_complete
0x0416c024 get_progress
0x0416c028 irq_tmp
0x0416c02c irq_zero
0x0416c030 chip_axid
0x0416c034 Global_Port_0_Reset_Count
0x0416c038 Global_Port_0_Suspend_Count
0x0416c03c Global_Port_0_Resume_Count
0x0416c040 Host_TD_Complete_Count
0x0416c044 Host_SOFInt_Count
0x0416c048 Device_SOF_Num
0x0416c04c Device_Babble_Count
0x0416c050 G_Rx0E
0x0416c054 H_Rx07
0x0416c058 D_Rx02
0x0416c05c MemoryBuffer
0x0416c060 pDescBase
0x0416c064 pCurDesc
0x0416c068 pNextDesc
0x0416c06c pHDataBase
0x0416c070 pCurHData
0x0416c074 pDDataBase
0x0416c078 pCurDData
0x0416c07c pDEp1Base
0x0416c080 pDEp2Base
0x0416c084 pDEp3Base
0x0416c088 pDEp4Base
0x0416c08c MemBufStr
0x0416c090 DescStr
0x0416c094 DbgHdr
0x0416c098 parking_high_speed
0x0416c09c EP0_DMA
0x0416c0a0 EP0_0_byte_DIR
0x0416c0a4 cbw_tag
0x0416c0a8 SF_stop
0x0416c0ac progress_length
0x0416c0b0 version_length
0x0416c0b4 toggle
.bss 0x0416c0b8 0x180 drivers/libdrivers.a(usb_ether.o)
.bss 0x0416c238 0x808 drivers/libdrivers.a(r8152.o)
0x0416ca38 tp
.bss 0x0416ca40 0x804 drivers/libdrivers.a(asix.o)
.bss 0x0416d244 0x0 cpu/arm920t/wmt/libwmt.a(zde.o)
.bss 0x0416d244 0x0 /mnt/backup/common/arm_201103_gcc4.5.2/bin/../lib/gcc/arm-none-linux-gnueabi/4.5.2/libgcc.a(_udivsi3.o)
.bss 0x0416d244 0x0 /mnt/backup/common/arm_201103_gcc4.5.2/bin/../lib/gcc/arm-none-linux-gnueabi/4.5.2/libgcc.a(_divsi3.o)
.bss 0x0416d244 0x0 /mnt/backup/common/arm_201103_gcc4.5.2/bin/../lib/gcc/arm-none-linux-gnueabi/4.5.2/libgcc.a(_lshrdi3.o)
.bss 0x0416d244 0x0 /mnt/backup/common/arm_201103_gcc4.5.2/bin/../lib/gcc/arm-none-linux-gnueabi/4.5.2/libgcc.a(_ashldi3.o)
.bss 0x0416d244 0x0 /mnt/backup/common/arm_201103_gcc4.5.2/bin/../lib/gcc/arm-none-linux-gnueabi/4.5.2/libgcc.a(_arm_addsubdf3.o)
.bss 0x0416d244 0x0 /mnt/backup/common/arm_201103_gcc4.5.2/bin/../lib/gcc/arm-none-linux-gnueabi/4.5.2/libgcc.a(_arm_cmpdf2.o)
.bss 0x0416d244 0x0 /mnt/backup/common/arm_201103_gcc4.5.2/bin/../lib/gcc/arm-none-linux-gnueabi/4.5.2/libgcc.a(_aeabi_uldivmod.o)
.bss 0x0416d244 0x0 /mnt/backup/common/arm_201103_gcc4.5.2/bin/../lib/gcc/arm-none-linux-gnueabi/4.5.2/libgcc.a(_dvmd_lnx.o)
.bss 0x0416d244 0x0 /mnt/backup/common/arm_201103_gcc4.5.2/bin/../lib/gcc/arm-none-linux-gnueabi/4.5.2/libgcc.a(bpabi.o)
.bss 0x0416d244 0x0 /mnt/backup/common/arm_201103_gcc4.5.2/bin/../lib/gcc/arm-none-linux-gnueabi/4.5.2/libgcc.a(_divdi3.o)
.bss 0x0416d244 0x0 /mnt/backup/common/arm_201103_gcc4.5.2/bin/../lib/gcc/arm-none-linux-gnueabi/4.5.2/libgcc.a(_udivdi3.o)
0x0416d244 _end = .
.stab
*(.stab)
.stabstr
*(.stabstr)
.stab.excl
*(.stab.excl)
.stab.exclstr
*(.stab.exclstr)
.stab.index
*(.stab.index)
.stab.indexstr
*(.stab.indexstr)
.ARM.attributes
0x00000000 0x2b
.ARM.attributes
0x00000000 0x1f cpu/arm920t/start.o
.ARM.attributes
0x0000001f 0x2f board/wmt/libwmt.a(poweroff.o)
.ARM.attributes
0x0000004e 0x2f board/wmt/libwmt.a(wmt_battery.o)
.ARM.attributes
0x0000007d 0x2f board/wmt/libwmt.a(g2214_charger.o)
.ARM.attributes
0x000000ac 0x2f board/wmt/libwmt.a(mp2625_charger.o)
.ARM.attributes
0x000000db 0x2f board/wmt/libwmt.a(ug31xx_boot.o)
.ARM.attributes
0x0000010a 0x2f board/wmt/libwmt.a(ug31xx_boot_i2c.o)
.ARM.attributes
0x00000139 0x2f board/wmt/libwmt.a(vt1603_battery.o)
.ARM.attributes
0x00000168 0x2f board/wmt/libwmt.a(sp2541_battery.o)
.ARM.attributes
0x00000197 0x2f board/wmt/libwmt.a(bq_battery_i2c.o)
.ARM.attributes
0x000001c6 0x1f board/wmt/libwmt.a(lowlevel_init.o)
.ARM.attributes
0x000001e5 0x2f board/wmt/libwmt.a(wmt_clk.o)
.ARM.attributes
0x00000214 0x2f board/wmt/libwmt.a(wmt_i2c.o)
.ARM.attributes
0x00000243 0x2f board/wmt/libwmt.a(wmt_i2c_1.o)
.ARM.attributes
0x00000272 0x2f board/wmt/libwmt.a(wmt_i2c_2.o)
.ARM.attributes
0x000002a1 0x2f board/wmt/libwmt.a(wmt_i2c_3.o)
.ARM.attributes
0x000002d0 0x2f board/wmt/libwmt.a(wmt_spi_0.o)
.ARM.attributes
0x000002ff 0x2f board/wmt/libwmt.a(wmt_gpio.o)
.ARM.attributes
0x0000032e 0x2f board/wmt/libwmt.a(uG31xx_API_Measurement.o)
.ARM.attributes
0x0000035d 0x2f board/wmt/libwmt.a(uG31xx_API_Otp.o)
.ARM.attributes
0x0000038c 0x2f board/wmt/libwmt.a(uG31xx_API_System.o)
.ARM.attributes
0x000003bb 0x2f board/wmt/libwmt.a(wmt_ost.o)
.ARM.attributes
0x000003ea 0x2f cpu/arm920t/libarm920t.a(interrupts.o)
.ARM.attributes
0x00000419 0x2f cpu/arm920t/wmt/libwmt.a(interrupts.o)
.ARM.attributes
0x00000448 0x2f lib_arm/libarm.a(board.o)
.ARM.attributes
0x00000477 0x2f net/libnet.a(net.o)
.ARM.attributes
0x000004a6 0x2f net/libnet.a(tftp.o)
.ARM.attributes
0x000004d5 0x2f net/libnet.a(bootp.o)
.ARM.attributes
0x00000504 0x2f net/libnet.a(rarp.o)
.ARM.attributes
0x00000533 0x2f net/libnet.a(eth.o)
.ARM.attributes
0x00000562 0x2f common/libcommon.a(main.o)
.ARM.attributes
0x00000591 0x2f common/libcommon.a(cmd_autoscript.o)
.ARM.attributes
0x000005c0 0x2f common/libcommon.a(cmd_bdinfo.o)
.ARM.attributes
0x000005ef 0x2f common/libcommon.a(cmd_boot.o)
.ARM.attributes
0x0000061e 0x2f common/libcommon.a(cmd_bootm.o)
.ARM.attributes
0x0000064d 0x2f common/libcommon.a(cmd_console.o)
.ARM.attributes
0x0000067c 0x2f common/libcommon.a(cmd_mkfsfat.o)
.ARM.attributes
0x000006ab 0x2f common/libcommon.a(cmd_fat.o)
.ARM.attributes
0x000006da 0x2f common/libcommon.a(cmd_flash.o)
.ARM.attributes
0x00000709 0x2f common/libcommon.a(cmd_load.o)
.ARM.attributes
0x00000738 0x2f common/libcommon.a(cmd_mem.o)
.ARM.attributes
0x00000767 0x2f common/libcommon.a(cmd_mii.o)
.ARM.attributes
0x00000796 0x2f common/libcommon.a(cmd_misc.o)
.ARM.attributes
0x000007c5 0x2f common/libcommon.a(cmd_mmc.o)
.ARM.attributes
0x000007f4 0x2f common/libcommon.a(cmd_dma.o)
.ARM.attributes
0x00000823 0x2f common/libcommon.a(cmd_nand.o)
.ARM.attributes
0x00000852 0x2f common/libcommon.a(cmd_net.o)
.ARM.attributes
0x00000881 0x2f common/libcommon.a(cmd_nvedit.o)
.ARM.attributes
0x000008b0 0x2f common/libcommon.a(cmd_usb.o)
.ARM.attributes
0x000008df 0x2f common/libcommon.a(cmd_rsa.o)
.ARM.attributes
0x0000090e 0x2f common/libcommon.a(command.o)
.ARM.attributes
0x0000093d 0x2f common/libcommon.a(console.o)
.ARM.attributes
0x0000096c 0x2f common/libcommon.a(devices.o)
.ARM.attributes
0x0000099b 0x2f common/libcommon.a(dlmalloc.o)
.ARM.attributes
0x000009ca 0x2f common/libcommon.a(env_common.o)
.ARM.attributes
0x000009f9 0x2f common/libcommon.a(env_flash.o)
.ARM.attributes
0x00000a28 0x2f common/libcommon.a(exports.o)
.ARM.attributes
0x00000a57 0x2f common/libcommon.a(env_otp.o)
.ARM.attributes
0x00000a86 0x2f common/libcommon.a(wmt-ost.o)
.ARM.attributes
0x00000ab5 0x2f common/libcommon.a(lcd-mipi-ssd2828.o)
.ARM.attributes
0x00000ae4 0x2f common/libcommon.a(wmt_cmd_display.o)
.ARM.attributes
0x00000b13 0x2f common/libcommon.a(minivgui.o)
.ARM.attributes
0x00000b42 0x2f common/libcommon.a(uboot-vpp.o)
.ARM.attributes
0x00000b71 0x2f common/libcommon.a(cmd_mbit.o)
.ARM.attributes
0x00000ba0 0x2f common/libcommon.a(cmd_textout.o)
.ARM.attributes
0x00000bcf 0x2f common/libcommon.a(env_parse.o)
.ARM.attributes
0x00000bfe 0x2f common/libcommon.a(charge_animation.o)
.ARM.attributes
0x00000c2d 0x2f common/libcommon.a(flash.o)
.ARM.attributes
0x00000c5c 0x2f common/libcommon.a(hush.o)
.ARM.attributes
0x00000c8b 0x2f common/libcommon.a(lists.o)
.ARM.attributes
0x00000cba 0x2f common/libcommon.a(miiphyutil.o)
.ARM.attributes
0x00000ce9 0x2f common/libcommon.a(usb.o)
.ARM.attributes
0x00000d18 0x2f common/libcommon.a(usb_storage.o)
.ARM.attributes
0x00000d47 0x2f common/libcommon.a(cmd_fastboot.o)
.ARM.attributes
0x00000d76 0x2f common/libcommon.a(sparse.o)
.ARM.attributes
0x00000da5 0x2f common/libcommon.a(mmc_ext4.o)
.ARM.attributes
0x00000dd4 0x2f common/libcommon.a(wmt_cmd_check_fastboot.o)
.ARM.attributes
0x00000e03 0x2f common/libcommon.a(wmt_cmd_recovery_mode.o)
.ARM.attributes
0x00000e32 0x2f common/libcommon.a(wmt_cmd_ac_ok.o)
.ARM.attributes
0x00000e61 0x2f common/libcommon.a(wmt_cmd_wmtfs.o)
.ARM.attributes
0x00000e90 0x2f common/libcommon.a(wmt_cmd_addfwcenv.o)
.ARM.attributes
0x00000ebf 0x2f common/libcommon.a(hw_recovery.o)
.ARM.attributes
0x00000eee 0x2f common/libcommon.a(enter_fastboot_mode.o)
.ARM.attributes
0x00000f1d 0x2f common/libcommon.a(wmt_cmd_syncenv.o)
.ARM.attributes
0x00000f4c 0x2f common/libcommon.a(aes.o)
.ARM.attributes
0x00000f7b 0x2f common/libcommon.a(cmd_aes.o)
.ARM.attributes
0x00000faa 0x2f common/libcommon.a(wmt_efuse.o)
.ARM.attributes
0x00000fd9 0x2f common/libcommon.a(wmt_cmd_efuse.o)
.ARM.attributes
0x00001008 0x2f common/libcommon.a(wmt_dual_boot.o)
.ARM.attributes
0x00001037 0x1f common/libcommon.a(display_aligment.o)
.ARM.attributes
0x00001056 0x2f common/libcommon.a(rsa_verify.o)
.ARM.attributes
0x00001085 0x2f common/libcommon.a(bignum.o)
.ARM.attributes
0x000010b4 0x2f common/libcommon.a(pwm.o)
.ARM.attributes
0x000010e3 0x2f common/libcommon.a(scl.o)
.ARM.attributes
0x00001112 0x2f common/libcommon.a(govrh.o)
.ARM.attributes
0x00001141 0x2f common/libcommon.a(vout.o)
.ARM.attributes
0x00001170 0x2f common/libcommon.a(lcd.o)
.ARM.attributes
0x0000119f 0x2f common/libcommon.a(lvds.o)
.ARM.attributes
0x000011ce 0x2f common/libcommon.a(vpp.o)
.ARM.attributes
0x000011fd 0x2f common/libcommon.a(hdmi.o)
.ARM.attributes
0x0000122c 0x2f common/libcommon.a(parse-edid.o)
.ARM.attributes
0x0000125b 0x2f common/libcommon.a(vout-wmt.o)
.ARM.attributes
0x0000128a 0x2f common/libcommon.a(lcd-oem.o)
.ARM.attributes
0x000012b9 0x2f common/libcommon.a(lcd-AUO-A080SN01.o)
.ARM.attributes
0x000012e8 0x2f common/libcommon.a(lcd-INNOLUX-AT070TN83.o)
.ARM.attributes
0x00001317 0x2f common/libcommon.a(lcd-CHILIN-LW700at9003.o)
.ARM.attributes
0x00001346 0x2f common/libcommon.a(lcd-EKING-EK08009-70135.o)
.ARM.attributes
0x00001375 0x2f common/libcommon.a(lcd-HANNSTAR-HSD101PFW2.o)
.ARM.attributes
0x000013a4 0x2f common/libcommon.a(lcd-lvds-1024x600.o)
.ARM.attributes
0x000013d3 0x2f common/libcommon.a(vt1625.o)
.ARM.attributes
0x00001402 0x2f common/libcommon.a(vt1632.o)
.ARM.attributes
0x00001431 0x2f common/libcommon.a(sil902x.o)
.ARM.attributes
0x00001460 0x2f common/libcommon.a(lcd-setup.o)
.ARM.attributes
0x0000148f 0x2f common/libcommon.a(vpp-osif.o)
.ARM.attributes
0x000014be 0x2f common/libcommon.a(sw_i2c.o)
.ARM.attributes
0x000014ed 0x2f lib_generic/libgeneric.a(crc32.o)
.ARM.attributes
0x0000151c 0x2f lib_generic/libgeneric.a(ctype.o)
.ARM.attributes
0x0000154b 0x2f lib_generic/libgeneric.a(display_options.o)
.ARM.attributes
0x0000157a 0x2f lib_generic/libgeneric.a(string.o)
.ARM.attributes
0x000015a9 0x2f lib_generic/libgeneric.a(vsprintf.o)
.ARM.attributes
0x000015d8 0x2f lib_generic/libgeneric.a(gunzip.o)
.ARM.attributes
0x00001607 0x2f lib_generic/libgeneric.a(zlib.o)
.ARM.attributes
0x00001636 0x2f board/wmt/libwmt.a(wmt.o)
.ARM.attributes
0x00001665 0x2f board/wmt/libwmt.a(flash.o)
.ARM.attributes
0x00001694 0x2f board/wmt/libwmt.a(main.o)
.ARM.attributes
0x000016c3 0x2f board/wmt/libwmt.a(spi_flash.o)
.ARM.attributes
0x000016f2 0x2f board/wmt/libwmt.a(nand_flash.o)
.ARM.attributes
0x00001721 0x2f board/wmt/libwmt.a(ehci-hcd.o)
.ARM.attributes
0x00001750 0x2f board/wmt/libwmt.a(usb_uhci.o)
.ARM.attributes
0x0000177f 0x2f board/wmt/libwmt.a(snd-vt1603.o)
.ARM.attributes
0x000017ae 0x2f board/wmt/libwmt.a(spi_flash_lock.o)
.ARM.attributes
0x000017dd 0x2f cpu/arm920t/libarm920t.a(cpu.o)
.ARM.attributes
0x0000180c 0x2f cpu/arm920t/wmt/libwmt.a(serial.o)
.ARM.attributes
0x0000183b 0x2f cpu/arm920t/wmt/libwmt.a(dma.o)
.ARM.attributes
0x0000186a 0x2f cpu/arm920t/wmt/libwmt.a(cypherif.o)
.ARM.attributes
0x00001899 0x2f cpu/arm920t/wmt/libwmt.a(mmc.o)
.ARM.attributes
0x000018c8 0x2f cpu/arm920t/wmt/libwmt.a(cypher.o)
.ARM.attributes
0x000018f7 0x1f lib_arm/libarm.a(memcpy.o)
.ARM.attributes
0x00001916 0x1f lib_arm/libarm.a(memset.o)
.ARM.attributes
0x00001935 0x2f lib_arm/libarm.a(armlinux.o)
.ARM.attributes
0x00001964 0x2f lib_arm/libarm.a(cache.o)
.ARM.attributes
0x00001993 0x2f lib_arm/libarm.a(qsort.o)
.ARM.attributes
0x000019c2 0x2f lib_arm/libarm.a(hashtable.o)
.ARM.attributes
0x000019f1 0x2f lib_arm/libarm.a(errno.o)
.ARM.attributes
0x00001a20 0x2f fs/fat/libfat.a(fat.o)
.ARM.attributes
0x00001a4f 0x2f disk/libdisk.a(part.o)
.ARM.attributes
0x00001a7e 0x2f disk/libdisk.a(part_dos.o)
.ARM.attributes
0x00001aad 0x2f drivers/libdrivers.a(usbdcore.o)
.ARM.attributes
0x00001adc 0x2f drivers/libdrivers.a(wmt_udc.o)
.ARM.attributes
0x00001b0b 0x2f drivers/libdrivers.a(usb_ether.o)
.ARM.attributes
0x00001b3a 0x2f drivers/libdrivers.a(r8152.o)
.ARM.attributes
0x00001b69 0x2f drivers/libdrivers.a(asix.o)
.ARM.attributes
0x00001b98 0x2f cpu/arm920t/wmt/libwmt.a(zde.o)
.ARM.attributes
0x00001bc7 0x1f /mnt/backup/common/arm_201103_gcc4.5.2/bin/../lib/gcc/arm-none-linux-gnueabi/4.5.2/libgcc.a(_udivsi3.o)
.ARM.attributes
0x00001be6 0x1f /mnt/backup/common/arm_201103_gcc4.5.2/bin/../lib/gcc/arm-none-linux-gnueabi/4.5.2/libgcc.a(_divsi3.o)
.ARM.attributes
0x00001c05 0x1f /mnt/backup/common/arm_201103_gcc4.5.2/bin/../lib/gcc/arm-none-linux-gnueabi/4.5.2/libgcc.a(_lshrdi3.o)
.ARM.attributes
0x00001c24 0x1f /mnt/backup/common/arm_201103_gcc4.5.2/bin/../lib/gcc/arm-none-linux-gnueabi/4.5.2/libgcc.a(_ashldi3.o)
.ARM.attributes
0x00001c43 0x1f /mnt/backup/common/arm_201103_gcc4.5.2/bin/../lib/gcc/arm-none-linux-gnueabi/4.5.2/libgcc.a(_arm_addsubdf3.o)
.ARM.attributes
0x00001c62 0x1f /mnt/backup/common/arm_201103_gcc4.5.2/bin/../lib/gcc/arm-none-linux-gnueabi/4.5.2/libgcc.a(_arm_cmpdf2.o)
.ARM.attributes
0x00001c81 0x1f /mnt/backup/common/arm_201103_gcc4.5.2/bin/../lib/gcc/arm-none-linux-gnueabi/4.5.2/libgcc.a(_aeabi_uldivmod.o)
.ARM.attributes
0x00001ca0 0x1f /mnt/backup/common/arm_201103_gcc4.5.2/bin/../lib/gcc/arm-none-linux-gnueabi/4.5.2/libgcc.a(_dvmd_lnx.o)
.ARM.attributes
0x00001cbf 0x2d /mnt/backup/common/arm_201103_gcc4.5.2/bin/../lib/gcc/arm-none-linux-gnueabi/4.5.2/libgcc.a(bpabi.o)
.ARM.attributes
0x00001cec 0x2d /mnt/backup/common/arm_201103_gcc4.5.2/bin/../lib/gcc/arm-none-linux-gnueabi/4.5.2/libgcc.a(_divdi3.o)
.ARM.attributes
0x00001d19 0x2d /mnt/backup/common/arm_201103_gcc4.5.2/bin/../lib/gcc/arm-none-linux-gnueabi/4.5.2/libgcc.a(_udivdi3.o)
.note.GNU-stack
0x00000000 0x0
.note.GNU-stack
0x00000000 0x0 board/wmt/libwmt.a(poweroff.o)
.note.GNU-stack
0x00000000 0x0 board/wmt/libwmt.a(wmt_battery.o)
.note.GNU-stack
0x00000000 0x0 board/wmt/libwmt.a(g2214_charger.o)
.note.GNU-stack
0x00000000 0x0 board/wmt/libwmt.a(mp2625_charger.o)
.note.GNU-stack
0x00000000 0x0 board/wmt/libwmt.a(ug31xx_boot.o)
.note.GNU-stack
0x00000000 0x0 board/wmt/libwmt.a(ug31xx_boot_i2c.o)
.note.GNU-stack
0x00000000 0x0 board/wmt/libwmt.a(vt1603_battery.o)
.note.GNU-stack
0x00000000 0x0 board/wmt/libwmt.a(sp2541_battery.o)
.note.GNU-stack
0x00000000 0x0 board/wmt/libwmt.a(bq_battery_i2c.o)
.note.GNU-stack
0x00000000 0x0 board/wmt/libwmt.a(wmt_clk.o)
.note.GNU-stack
0x00000000 0x0 board/wmt/libwmt.a(wmt_i2c.o)
.note.GNU-stack
0x00000000 0x0 board/wmt/libwmt.a(wmt_i2c_1.o)
.note.GNU-stack
0x00000000 0x0 board/wmt/libwmt.a(wmt_i2c_2.o)
.note.GNU-stack
0x00000000 0x0 board/wmt/libwmt.a(wmt_i2c_3.o)
.note.GNU-stack
0x00000000 0x0 board/wmt/libwmt.a(wmt_spi_0.o)
.note.GNU-stack
0x00000000 0x0 board/wmt/libwmt.a(wmt_gpio.o)
.note.GNU-stack
0x00000000 0x0 board/wmt/libwmt.a(uG31xx_API_Measurement.o)
.note.GNU-stack
0x00000000 0x0 board/wmt/libwmt.a(uG31xx_API_Otp.o)
.note.GNU-stack
0x00000000 0x0 board/wmt/libwmt.a(uG31xx_API_System.o)
.note.GNU-stack
0x00000000 0x0 board/wmt/libwmt.a(wmt_ost.o)
.note.GNU-stack
0x00000000 0x0 cpu/arm920t/libarm920t.a(interrupts.o)
.note.GNU-stack
0x00000000 0x0 cpu/arm920t/wmt/libwmt.a(interrupts.o)
.note.GNU-stack
0x00000000 0x0 lib_arm/libarm.a(board.o)
.note.GNU-stack
0x00000000 0x0 net/libnet.a(net.o)
.note.GNU-stack
0x00000000 0x0 net/libnet.a(tftp.o)
.note.GNU-stack
0x00000000 0x0 net/libnet.a(bootp.o)
.note.GNU-stack
0x00000000 0x0 net/libnet.a(rarp.o)
.note.GNU-stack
0x00000000 0x0 net/libnet.a(eth.o)
.note.GNU-stack
0x00000000 0x0 common/libcommon.a(main.o)
.note.GNU-stack
0x00000000 0x0 common/libcommon.a(cmd_autoscript.o)
.note.GNU-stack
0x00000000 0x0 common/libcommon.a(cmd_bdinfo.o)
.note.GNU-stack
0x00000000 0x0 common/libcommon.a(cmd_boot.o)
.note.GNU-stack
0x00000000 0x0 common/libcommon.a(cmd_bootm.o)
.note.GNU-stack
0x00000000 0x0 common/libcommon.a(cmd_console.o)
.note.GNU-stack
0x00000000 0x0 common/libcommon.a(cmd_mkfsfat.o)
.note.GNU-stack
0x00000000 0x0 common/libcommon.a(cmd_fat.o)
.note.GNU-stack
0x00000000 0x0 common/libcommon.a(cmd_flash.o)
.note.GNU-stack
0x00000000 0x0 common/libcommon.a(cmd_load.o)
.note.GNU-stack
0x00000000 0x0 common/libcommon.a(cmd_mem.o)
.note.GNU-stack
0x00000000 0x0 common/libcommon.a(cmd_mii.o)
.note.GNU-stack
0x00000000 0x0 common/libcommon.a(cmd_misc.o)
.note.GNU-stack
0x00000000 0x0 common/libcommon.a(cmd_mmc.o)
.note.GNU-stack
0x00000000 0x0 common/libcommon.a(cmd_dma.o)
.note.GNU-stack
0x00000000 0x0 common/libcommon.a(cmd_nand.o)
.note.GNU-stack
0x00000000 0x0 common/libcommon.a(cmd_net.o)
.note.GNU-stack
0x00000000 0x0 common/libcommon.a(cmd_nvedit.o)
.note.GNU-stack
0x00000000 0x0 common/libcommon.a(cmd_usb.o)
.note.GNU-stack
0x00000000 0x0 common/libcommon.a(cmd_rsa.o)
.note.GNU-stack
0x00000000 0x0 common/libcommon.a(command.o)
.note.GNU-stack
0x00000000 0x0 common/libcommon.a(console.o)
.note.GNU-stack
0x00000000 0x0 common/libcommon.a(devices.o)
.note.GNU-stack
0x00000000 0x0 common/libcommon.a(dlmalloc.o)
.note.GNU-stack
0x00000000 0x0 common/libcommon.a(env_common.o)
.note.GNU-stack
0x00000000 0x0 common/libcommon.a(env_flash.o)
.note.GNU-stack
0x00000000 0x0 common/libcommon.a(exports.o)
.note.GNU-stack
0x00000000 0x0 common/libcommon.a(env_otp.o)
.note.GNU-stack
0x00000000 0x0 common/libcommon.a(wmt-ost.o)
.note.GNU-stack
0x00000000 0x0 common/libcommon.a(lcd-mipi-ssd2828.o)
.note.GNU-stack
0x00000000 0x0 common/libcommon.a(wmt_cmd_display.o)
.note.GNU-stack
0x00000000 0x0 common/libcommon.a(minivgui.o)
.note.GNU-stack
0x00000000 0x0 common/libcommon.a(uboot-vpp.o)
.note.GNU-stack
0x00000000 0x0 common/libcommon.a(cmd_mbit.o)
.note.GNU-stack
0x00000000 0x0 common/libcommon.a(cmd_textout.o)
.note.GNU-stack
0x00000000 0x0 common/libcommon.a(env_parse.o)
.note.GNU-stack
0x00000000 0x0 common/libcommon.a(charge_animation.o)
.note.GNU-stack
0x00000000 0x0 common/libcommon.a(flash.o)
.note.GNU-stack
0x00000000 0x0 common/libcommon.a(hush.o)
.note.GNU-stack
0x00000000 0x0 common/libcommon.a(lists.o)
.note.GNU-stack
0x00000000 0x0 common/libcommon.a(miiphyutil.o)
.note.GNU-stack
0x00000000 0x0 common/libcommon.a(usb.o)
.note.GNU-stack
0x00000000 0x0 common/libcommon.a(usb_storage.o)
.note.GNU-stack
0x00000000 0x0 common/libcommon.a(cmd_fastboot.o)
.note.GNU-stack
0x00000000 0x0 common/libcommon.a(sparse.o)
.note.GNU-stack
0x00000000 0x0 common/libcommon.a(mmc_ext4.o)
.note.GNU-stack
0x00000000 0x0 common/libcommon.a(wmt_cmd_check_fastboot.o)
.note.GNU-stack
0x00000000 0x0 common/libcommon.a(wmt_cmd_recovery_mode.o)
.note.GNU-stack
0x00000000 0x0 common/libcommon.a(wmt_cmd_ac_ok.o)
.note.GNU-stack
0x00000000 0x0 common/libcommon.a(wmt_cmd_wmtfs.o)
.note.GNU-stack
0x00000000 0x0 common/libcommon.a(wmt_cmd_addfwcenv.o)
.note.GNU-stack
0x00000000 0x0 common/libcommon.a(hw_recovery.o)
.note.GNU-stack
0x00000000 0x0 common/libcommon.a(enter_fastboot_mode.o)
.note.GNU-stack
0x00000000 0x0 common/libcommon.a(wmt_cmd_syncenv.o)
.note.GNU-stack
0x00000000 0x0 common/libcommon.a(aes.o)
.note.GNU-stack
0x00000000 0x0 common/libcommon.a(cmd_aes.o)
.note.GNU-stack
0x00000000 0x0 common/libcommon.a(wmt_efuse.o)
.note.GNU-stack
0x00000000 0x0 common/libcommon.a(wmt_cmd_efuse.o)
.note.GNU-stack
0x00000000 0x0 common/libcommon.a(wmt_dual_boot.o)
.note.GNU-stack
0x00000000 0x0 common/libcommon.a(rsa_verify.o)
.note.GNU-stack
0x00000000 0x0 common/libcommon.a(bignum.o)
.note.GNU-stack
0x00000000 0x0 common/libcommon.a(pwm.o)
.note.GNU-stack
0x00000000 0x0 common/libcommon.a(scl.o)
.note.GNU-stack
0x00000000 0x0 common/libcommon.a(govrh.o)
.note.GNU-stack
0x00000000 0x0 common/libcommon.a(vout.o)
.note.GNU-stack
0x00000000 0x0 common/libcommon.a(lcd.o)
.note.GNU-stack
0x00000000 0x0 common/libcommon.a(lvds.o)
.note.GNU-stack
0x00000000 0x0 common/libcommon.a(vpp.o)
.note.GNU-stack
0x00000000 0x0 common/libcommon.a(hdmi.o)
.note.GNU-stack
0x00000000 0x0 common/libcommon.a(parse-edid.o)
.note.GNU-stack
0x00000000 0x0 common/libcommon.a(vout-wmt.o)
.note.GNU-stack
0x00000000 0x0 common/libcommon.a(lcd-oem.o)
.note.GNU-stack
0x00000000 0x0 common/libcommon.a(lcd-AUO-A080SN01.o)
.note.GNU-stack
0x00000000 0x0 common/libcommon.a(lcd-INNOLUX-AT070TN83.o)
.note.GNU-stack
0x00000000 0x0 common/libcommon.a(lcd-CHILIN-LW700at9003.o)
.note.GNU-stack
0x00000000 0x0 common/libcommon.a(lcd-EKING-EK08009-70135.o)
.note.GNU-stack
0x00000000 0x0 common/libcommon.a(lcd-HANNSTAR-HSD101PFW2.o)
.note.GNU-stack
0x00000000 0x0 common/libcommon.a(lcd-lvds-1024x600.o)
.note.GNU-stack
0x00000000 0x0 common/libcommon.a(vt1625.o)
.note.GNU-stack
0x00000000 0x0 common/libcommon.a(vt1632.o)
.note.GNU-stack
0x00000000 0x0 common/libcommon.a(sil902x.o)
.note.GNU-stack
0x00000000 0x0 common/libcommon.a(lcd-setup.o)
.note.GNU-stack
0x00000000 0x0 common/libcommon.a(vpp-osif.o)
.note.GNU-stack
0x00000000 0x0 common/libcommon.a(sw_i2c.o)
.note.GNU-stack
0x00000000 0x0 lib_generic/libgeneric.a(crc32.o)
.note.GNU-stack
0x00000000 0x0 lib_generic/libgeneric.a(ctype.o)
.note.GNU-stack
0x00000000 0x0 lib_generic/libgeneric.a(display_options.o)
.note.GNU-stack
0x00000000 0x0 lib_generic/libgeneric.a(string.o)
.note.GNU-stack
0x00000000 0x0 lib_generic/libgeneric.a(vsprintf.o)
.note.GNU-stack
0x00000000 0x0 lib_generic/libgeneric.a(gunzip.o)
.note.GNU-stack
0x00000000 0x0 lib_generic/libgeneric.a(zlib.o)
.note.GNU-stack
0x00000000 0x0 board/wmt/libwmt.a(wmt.o)
.note.GNU-stack
0x00000000 0x0 board/wmt/libwmt.a(flash.o)
.note.GNU-stack
0x00000000 0x0 board/wmt/libwmt.a(main.o)
.note.GNU-stack
0x00000000 0x0 board/wmt/libwmt.a(spi_flash.o)
.note.GNU-stack
0x00000000 0x0 board/wmt/libwmt.a(nand_flash.o)
.note.GNU-stack
0x00000000 0x0 board/wmt/libwmt.a(ehci-hcd.o)
.note.GNU-stack
0x00000000 0x0 board/wmt/libwmt.a(usb_uhci.o)
.note.GNU-stack
0x00000000 0x0 board/wmt/libwmt.a(snd-vt1603.o)
.note.GNU-stack
0x00000000 0x0 board/wmt/libwmt.a(spi_flash_lock.o)
.note.GNU-stack
0x00000000 0x0 cpu/arm920t/libarm920t.a(cpu.o)
.note.GNU-stack
0x00000000 0x0 cpu/arm920t/wmt/libwmt.a(serial.o)
.note.GNU-stack
0x00000000 0x0 cpu/arm920t/wmt/libwmt.a(dma.o)
.note.GNU-stack
0x00000000 0x0 cpu/arm920t/wmt/libwmt.a(cypherif.o)
.note.GNU-stack
0x00000000 0x0 cpu/arm920t/wmt/libwmt.a(mmc.o)
.note.GNU-stack
0x00000000 0x0 cpu/arm920t/wmt/libwmt.a(cypher.o)
.note.GNU-stack
0x00000000 0x0 lib_arm/libarm.a(armlinux.o)
.note.GNU-stack
0x00000000 0x0 lib_arm/libarm.a(cache.o)
.note.GNU-stack
0x00000000 0x0 lib_arm/libarm.a(qsort.o)
.note.GNU-stack
0x00000000 0x0 lib_arm/libarm.a(hashtable.o)
.note.GNU-stack
0x00000000 0x0 lib_arm/libarm.a(errno.o)
.note.GNU-stack
0x00000000 0x0 fs/fat/libfat.a(fat.o)
.note.GNU-stack
0x00000000 0x0 disk/libdisk.a(part.o)
.note.GNU-stack
0x00000000 0x0 disk/libdisk.a(part_dos.o)
.note.GNU-stack
0x00000000 0x0 drivers/libdrivers.a(usbdcore.o)
.note.GNU-stack
0x00000000 0x0 drivers/libdrivers.a(wmt_udc.o)
.note.GNU-stack
0x00000000 0x0 drivers/libdrivers.a(usb_ether.o)
.note.GNU-stack
0x00000000 0x0 drivers/libdrivers.a(r8152.o)
.note.GNU-stack
0x00000000 0x0 drivers/libdrivers.a(asix.o)
.note.GNU-stack
0x00000000 0x0 cpu/arm920t/wmt/libwmt.a(zde.o)
.note.GNU-stack
0x00000000 0x0 /mnt/backup/common/arm_201103_gcc4.5.2/bin/../lib/gcc/arm-none-linux-gnueabi/4.5.2/libgcc.a(_udivsi3.o)
.note.GNU-stack
0x00000000 0x0 /mnt/backup/common/arm_201103_gcc4.5.2/bin/../lib/gcc/arm-none-linux-gnueabi/4.5.2/libgcc.a(_divsi3.o)
.note.GNU-stack
0x00000000 0x0 /mnt/backup/common/arm_201103_gcc4.5.2/bin/../lib/gcc/arm-none-linux-gnueabi/4.5.2/libgcc.a(_lshrdi3.o)
.note.GNU-stack
0x00000000 0x0 /mnt/backup/common/arm_201103_gcc4.5.2/bin/../lib/gcc/arm-none-linux-gnueabi/4.5.2/libgcc.a(_ashldi3.o)
.note.GNU-stack
0x00000000 0x0 /mnt/backup/common/arm_201103_gcc4.5.2/bin/../lib/gcc/arm-none-linux-gnueabi/4.5.2/libgcc.a(_arm_addsubdf3.o)
.note.GNU-stack
0x00000000 0x0 /mnt/backup/common/arm_201103_gcc4.5.2/bin/../lib/gcc/arm-none-linux-gnueabi/4.5.2/libgcc.a(_arm_cmpdf2.o)
.note.GNU-stack
0x00000000 0x0 /mnt/backup/common/arm_201103_gcc4.5.2/bin/../lib/gcc/arm-none-linux-gnueabi/4.5.2/libgcc.a(_aeabi_uldivmod.o)
.note.GNU-stack
0x00000000 0x0 /mnt/backup/common/arm_201103_gcc4.5.2/bin/../lib/gcc/arm-none-linux-gnueabi/4.5.2/libgcc.a(_dvmd_lnx.o)
.note.GNU-stack
0x00000000 0x0 /mnt/backup/common/arm_201103_gcc4.5.2/bin/../lib/gcc/arm-none-linux-gnueabi/4.5.2/libgcc.a(bpabi.o)
.note.GNU-stack
0x00000000 0x0 /mnt/backup/common/arm_201103_gcc4.5.2/bin/../lib/gcc/arm-none-linux-gnueabi/4.5.2/libgcc.a(_divdi3.o)
.note.GNU-stack
0x00000000 0x0 /mnt/backup/common/arm_201103_gcc4.5.2/bin/../lib/gcc/arm-none-linux-gnueabi/4.5.2/libgcc.a(_udivdi3.o)
.comment 0x00000000 0x2a
*(.comment)
.comment 0x00000000 0x2a board/wmt/libwmt.a(poweroff.o)
0x2b (size before relaxing)
.comment 0x00000000 0x2b board/wmt/libwmt.a(wmt_battery.o)
.comment 0x00000000 0x2b board/wmt/libwmt.a(g2214_charger.o)
.comment 0x00000000 0x2b board/wmt/libwmt.a(mp2625_charger.o)
.comment 0x00000000 0x2b board/wmt/libwmt.a(ug31xx_boot.o)
.comment 0x00000000 0x2b board/wmt/libwmt.a(ug31xx_boot_i2c.o)
.comment 0x00000000 0x2b board/wmt/libwmt.a(vt1603_battery.o)
.comment 0x00000000 0x2b board/wmt/libwmt.a(sp2541_battery.o)
.comment 0x00000000 0x2b board/wmt/libwmt.a(bq_battery_i2c.o)
.comment 0x00000000 0x2b board/wmt/libwmt.a(wmt_clk.o)
.comment 0x00000000 0x2b board/wmt/libwmt.a(wmt_i2c.o)
.comment 0x00000000 0x2b board/wmt/libwmt.a(wmt_i2c_1.o)
.comment 0x00000000 0x2b board/wmt/libwmt.a(wmt_i2c_2.o)
.comment 0x00000000 0x2b board/wmt/libwmt.a(wmt_i2c_3.o)
.comment 0x00000000 0x2b board/wmt/libwmt.a(wmt_spi_0.o)
.comment 0x00000000 0x2b board/wmt/libwmt.a(wmt_gpio.o)
.comment 0x00000000 0x2b board/wmt/libwmt.a(uG31xx_API_Measurement.o)
.comment 0x00000000 0x2b board/wmt/libwmt.a(uG31xx_API_Otp.o)
.comment 0x00000000 0x2b board/wmt/libwmt.a(uG31xx_API_System.o)
.comment 0x00000000 0x2b board/wmt/libwmt.a(wmt_ost.o)
.comment 0x00000000 0x2b cpu/arm920t/libarm920t.a(interrupts.o)
.comment 0x00000000 0x2b cpu/arm920t/wmt/libwmt.a(interrupts.o)
.comment 0x00000000 0x2b lib_arm/libarm.a(board.o)
.comment 0x00000000 0x2b net/libnet.a(net.o)
.comment 0x00000000 0x2b net/libnet.a(tftp.o)
.comment 0x00000000 0x2b net/libnet.a(bootp.o)
.comment 0x00000000 0x2b net/libnet.a(rarp.o)
.comment 0x00000000 0x2b net/libnet.a(eth.o)
.comment 0x00000000 0x2b common/libcommon.a(main.o)
.comment 0x00000000 0x2b common/libcommon.a(cmd_autoscript.o)
.comment 0x00000000 0x2b common/libcommon.a(cmd_bdinfo.o)
.comment 0x00000000 0x2b common/libcommon.a(cmd_boot.o)
.comment 0x00000000 0x2b common/libcommon.a(cmd_bootm.o)
.comment 0x00000000 0x2b common/libcommon.a(cmd_console.o)
.comment 0x00000000 0x2b common/libcommon.a(cmd_mkfsfat.o)
.comment 0x00000000 0x2b common/libcommon.a(cmd_fat.o)
.comment 0x00000000 0x2b common/libcommon.a(cmd_flash.o)
.comment 0x00000000 0x2b common/libcommon.a(cmd_load.o)
.comment 0x00000000 0x2b common/libcommon.a(cmd_mem.o)
.comment 0x00000000 0x2b common/libcommon.a(cmd_mii.o)
.comment 0x00000000 0x2b common/libcommon.a(cmd_misc.o)
.comment 0x00000000 0x2b common/libcommon.a(cmd_mmc.o)
.comment 0x00000000 0x2b common/libcommon.a(cmd_dma.o)
.comment 0x00000000 0x2b common/libcommon.a(cmd_nand.o)
.comment 0x00000000 0x2b common/libcommon.a(cmd_net.o)
.comment 0x00000000 0x2b common/libcommon.a(cmd_nvedit.o)
.comment 0x00000000 0x2b common/libcommon.a(cmd_usb.o)
.comment 0x00000000 0x2b common/libcommon.a(cmd_rsa.o)
.comment 0x00000000 0x2b common/libcommon.a(command.o)
.comment 0x00000000 0x2b common/libcommon.a(console.o)
.comment 0x00000000 0x2b common/libcommon.a(devices.o)
.comment 0x00000000 0x2b common/libcommon.a(dlmalloc.o)
.comment 0x00000000 0x2b common/libcommon.a(env_common.o)
.comment 0x00000000 0x2b common/libcommon.a(env_flash.o)
.comment 0x00000000 0x2b common/libcommon.a(exports.o)
.comment 0x00000000 0x2b common/libcommon.a(env_otp.o)
.comment 0x00000000 0x2b common/libcommon.a(wmt-ost.o)
.comment 0x00000000 0x2b common/libcommon.a(lcd-mipi-ssd2828.o)
.comment 0x00000000 0x2b common/libcommon.a(wmt_cmd_display.o)
.comment 0x00000000 0x2b common/libcommon.a(minivgui.o)
.comment 0x00000000 0x2b common/libcommon.a(uboot-vpp.o)
.comment 0x00000000 0x2b common/libcommon.a(cmd_mbit.o)
.comment 0x00000000 0x2b common/libcommon.a(cmd_textout.o)
.comment 0x00000000 0x2b common/libcommon.a(env_parse.o)
.comment 0x00000000 0x2b common/libcommon.a(charge_animation.o)
.comment 0x00000000 0x2b common/libcommon.a(flash.o)
.comment 0x00000000 0x2b common/libcommon.a(hush.o)
.comment 0x00000000 0x2b common/libcommon.a(lists.o)
.comment 0x00000000 0x2b common/libcommon.a(miiphyutil.o)
.comment 0x00000000 0x2b common/libcommon.a(usb.o)
.comment 0x00000000 0x2b common/libcommon.a(usb_storage.o)
.comment 0x00000000 0x2b common/libcommon.a(cmd_fastboot.o)
.comment 0x00000000 0x2b common/libcommon.a(sparse.o)
.comment 0x00000000 0x2b common/libcommon.a(mmc_ext4.o)
.comment 0x00000000 0x2b common/libcommon.a(wmt_cmd_check_fastboot.o)
.comment 0x00000000 0x2b common/libcommon.a(wmt_cmd_recovery_mode.o)
.comment 0x00000000 0x2b common/libcommon.a(wmt_cmd_ac_ok.o)
.comment 0x00000000 0x2b common/libcommon.a(wmt_cmd_wmtfs.o)
.comment 0x00000000 0x2b common/libcommon.a(wmt_cmd_addfwcenv.o)
.comment 0x00000000 0x2b common/libcommon.a(hw_recovery.o)
.comment 0x00000000 0x2b common/libcommon.a(enter_fastboot_mode.o)
.comment 0x00000000 0x2b common/libcommon.a(wmt_cmd_syncenv.o)
.comment 0x00000000 0x2b common/libcommon.a(aes.o)
.comment 0x00000000 0x2b common/libcommon.a(cmd_aes.o)
.comment 0x00000000 0x2b common/libcommon.a(wmt_efuse.o)
.comment 0x00000000 0x2b common/libcommon.a(wmt_cmd_efuse.o)
.comment 0x00000000 0x2b common/libcommon.a(wmt_dual_boot.o)
.comment 0x00000000 0x2b common/libcommon.a(rsa_verify.o)
.comment 0x00000000 0x2b common/libcommon.a(bignum.o)
.comment 0x00000000 0x2b common/libcommon.a(pwm.o)
.comment 0x00000000 0x2b common/libcommon.a(scl.o)
.comment 0x00000000 0x2b common/libcommon.a(govrh.o)
.comment 0x00000000 0x2b common/libcommon.a(vout.o)
.comment 0x00000000 0x2b common/libcommon.a(lcd.o)
.comment 0x00000000 0x2b common/libcommon.a(lvds.o)
.comment 0x00000000 0x2b common/libcommon.a(vpp.o)
.comment 0x00000000 0x2b common/libcommon.a(hdmi.o)
.comment 0x00000000 0x2b common/libcommon.a(parse-edid.o)
.comment 0x00000000 0x2b common/libcommon.a(vout-wmt.o)
.comment 0x00000000 0x2b common/libcommon.a(lcd-oem.o)
.comment 0x00000000 0x2b common/libcommon.a(lcd-AUO-A080SN01.o)
.comment 0x00000000 0x2b common/libcommon.a(lcd-INNOLUX-AT070TN83.o)
.comment 0x00000000 0x2b common/libcommon.a(lcd-CHILIN-LW700at9003.o)
.comment 0x00000000 0x2b common/libcommon.a(lcd-EKING-EK08009-70135.o)
.comment 0x00000000 0x2b common/libcommon.a(lcd-HANNSTAR-HSD101PFW2.o)
.comment 0x00000000 0x2b common/libcommon.a(lcd-lvds-1024x600.o)
.comment 0x00000000 0x2b common/libcommon.a(vt1625.o)
.comment 0x00000000 0x2b common/libcommon.a(vt1632.o)
.comment 0x00000000 0x2b common/libcommon.a(sil902x.o)
.comment 0x00000000 0x2b common/libcommon.a(lcd-setup.o)
.comment 0x00000000 0x2b common/libcommon.a(vpp-osif.o)
.comment 0x00000000 0x2b common/libcommon.a(sw_i2c.o)
.comment 0x00000000 0x2b lib_generic/libgeneric.a(crc32.o)
.comment 0x00000000 0x2b lib_generic/libgeneric.a(ctype.o)
.comment 0x00000000 0x2b lib_generic/libgeneric.a(display_options.o)
.comment 0x00000000 0x2b lib_generic/libgeneric.a(string.o)
.comment 0x00000000 0x2b lib_generic/libgeneric.a(vsprintf.o)
.comment 0x00000000 0x2b lib_generic/libgeneric.a(gunzip.o)
.comment 0x00000000 0x2b lib_generic/libgeneric.a(zlib.o)
.comment 0x00000000 0x2b board/wmt/libwmt.a(wmt.o)
.comment 0x00000000 0x2b board/wmt/libwmt.a(flash.o)
.comment 0x00000000 0x2b board/wmt/libwmt.a(main.o)
.comment 0x00000000 0x2b board/wmt/libwmt.a(spi_flash.o)
.comment 0x00000000 0x2b board/wmt/libwmt.a(nand_flash.o)
.comment 0x00000000 0x2b board/wmt/libwmt.a(ehci-hcd.o)
.comment 0x00000000 0x2b board/wmt/libwmt.a(usb_uhci.o)
.comment 0x00000000 0x2b board/wmt/libwmt.a(snd-vt1603.o)
.comment 0x00000000 0x2b board/wmt/libwmt.a(spi_flash_lock.o)
.comment 0x00000000 0x2b cpu/arm920t/libarm920t.a(cpu.o)
.comment 0x00000000 0x2b cpu/arm920t/wmt/libwmt.a(serial.o)
.comment 0x00000000 0x2b cpu/arm920t/wmt/libwmt.a(dma.o)
.comment 0x00000000 0x2b cpu/arm920t/wmt/libwmt.a(cypherif.o)
.comment 0x00000000 0x2b cpu/arm920t/wmt/libwmt.a(mmc.o)
.comment 0x00000000 0x2b cpu/arm920t/wmt/libwmt.a(cypher.o)
.comment 0x00000000 0x2b lib_arm/libarm.a(armlinux.o)
.comment 0x00000000 0x2b lib_arm/libarm.a(cache.o)
.comment 0x00000000 0x2b lib_arm/libarm.a(qsort.o)
.comment 0x00000000 0x2b lib_arm/libarm.a(hashtable.o)
.comment 0x00000000 0x2b lib_arm/libarm.a(errno.o)
.comment 0x00000000 0x2b fs/fat/libfat.a(fat.o)
.comment 0x00000000 0x2b disk/libdisk.a(part.o)
.comment 0x00000000 0x2b disk/libdisk.a(part_dos.o)
.comment 0x00000000 0x2b drivers/libdrivers.a(usbdcore.o)
.comment 0x00000000 0x2b drivers/libdrivers.a(wmt_udc.o)
.comment 0x00000000 0x2b drivers/libdrivers.a(usb_ether.o)
.comment 0x00000000 0x2b drivers/libdrivers.a(r8152.o)
.comment 0x00000000 0x2b drivers/libdrivers.a(asix.o)
.comment 0x00000000 0x2b cpu/arm920t/wmt/libwmt.a(zde.o)
.debug
*(.debug)
.line
*(.line)
.debug_srcinfo
*(.debug_srcinfo)
.debug_sfnames
*(.debug_sfnames)
.debug_aranges 0x00000000 0x12e0
*(.debug_aranges)
.debug_aranges
0x00000000 0x20 cpu/arm920t/start.o
.debug_aranges
0x00000020 0x20 board/wmt/libwmt.a(poweroff.o)
.debug_aranges
0x00000040 0x20 board/wmt/libwmt.a(wmt_battery.o)
.debug_aranges
0x00000060 0x20 board/wmt/libwmt.a(g2214_charger.o)
.debug_aranges
0x00000080 0x20 board/wmt/libwmt.a(mp2625_charger.o)
.debug_aranges
0x000000a0 0x20 board/wmt/libwmt.a(ug31xx_boot.o)
.debug_aranges
0x000000c0 0x20 board/wmt/libwmt.a(ug31xx_boot_i2c.o)
.debug_aranges
0x000000e0 0x20 board/wmt/libwmt.a(vt1603_battery.o)
.debug_aranges
0x00000100 0x20 board/wmt/libwmt.a(sp2541_battery.o)
.debug_aranges
0x00000120 0x20 board/wmt/libwmt.a(bq_battery_i2c.o)
.debug_aranges
0x00000140 0x20 board/wmt/libwmt.a(lowlevel_init.o)
.debug_aranges
0x00000160 0x20 board/wmt/libwmt.a(wmt_clk.o)
.debug_aranges
0x00000180 0x20 board/wmt/libwmt.a(wmt_i2c.o)
.debug_aranges
0x000001a0 0x20 board/wmt/libwmt.a(wmt_i2c_1.o)
.debug_aranges
0x000001c0 0x20 board/wmt/libwmt.a(wmt_i2c_2.o)
.debug_aranges
0x000001e0 0x20 board/wmt/libwmt.a(wmt_i2c_3.o)
.debug_aranges
0x00000200 0x20 board/wmt/libwmt.a(wmt_spi_0.o)
.debug_aranges
0x00000220 0x20 board/wmt/libwmt.a(wmt_gpio.o)
.debug_aranges
0x00000240 0x20 board/wmt/libwmt.a(uG31xx_API_Measurement.o)
.debug_aranges
0x00000260 0x20 board/wmt/libwmt.a(uG31xx_API_Otp.o)
.debug_aranges
0x00000280 0x20 board/wmt/libwmt.a(uG31xx_API_System.o)
.debug_aranges
0x000002a0 0x20 board/wmt/libwmt.a(wmt_ost.o)
.debug_aranges
0x000002c0 0x20 cpu/arm920t/libarm920t.a(interrupts.o)
.debug_aranges
0x000002e0 0x20 cpu/arm920t/wmt/libwmt.a(interrupts.o)
.debug_aranges
0x00000300 0x20 lib_arm/libarm.a(board.o)
.debug_aranges
0x00000320 0x20 net/libnet.a(net.o)
.debug_aranges
0x00000340 0x20 net/libnet.a(tftp.o)
.debug_aranges
0x00000360 0x20 net/libnet.a(bootp.o)
.debug_aranges
0x00000380 0x20 net/libnet.a(rarp.o)
.debug_aranges
0x000003a0 0x20 net/libnet.a(eth.o)
.debug_aranges
0x000003c0 0x20 common/libcommon.a(main.o)
.debug_aranges
0x000003e0 0x20 common/libcommon.a(cmd_autoscript.o)
.debug_aranges
0x00000400 0x20 common/libcommon.a(cmd_bdinfo.o)
.debug_aranges
0x00000420 0x20 common/libcommon.a(cmd_boot.o)
.debug_aranges
0x00000440 0x20 common/libcommon.a(cmd_bootm.o)
.debug_aranges
0x00000460 0x20 common/libcommon.a(cmd_console.o)
.debug_aranges
0x00000480 0x20 common/libcommon.a(cmd_mkfsfat.o)
.debug_aranges
0x000004a0 0x20 common/libcommon.a(cmd_fat.o)
.debug_aranges
0x000004c0 0x20 common/libcommon.a(cmd_flash.o)
.debug_aranges
0x000004e0 0x20 common/libcommon.a(cmd_load.o)
.debug_aranges
0x00000500 0x20 common/libcommon.a(cmd_mem.o)
.debug_aranges
0x00000520 0x20 common/libcommon.a(cmd_mii.o)
.debug_aranges
0x00000540 0x20 common/libcommon.a(cmd_misc.o)
.debug_aranges
0x00000560 0x20 common/libcommon.a(cmd_mmc.o)
.debug_aranges
0x00000580 0x20 common/libcommon.a(cmd_dma.o)
.debug_aranges
0x000005a0 0x20 common/libcommon.a(cmd_nand.o)
.debug_aranges
0x000005c0 0x20 common/libcommon.a(cmd_net.o)
.debug_aranges
0x000005e0 0x20 common/libcommon.a(cmd_nvedit.o)
.debug_aranges
0x00000600 0x20 common/libcommon.a(cmd_usb.o)
.debug_aranges
0x00000620 0x20 common/libcommon.a(cmd_rsa.o)
.debug_aranges
0x00000640 0x20 common/libcommon.a(command.o)
.debug_aranges
0x00000660 0x20 common/libcommon.a(console.o)
.debug_aranges
0x00000680 0x20 common/libcommon.a(devices.o)
.debug_aranges
0x000006a0 0x20 common/libcommon.a(dlmalloc.o)
.debug_aranges
0x000006c0 0x20 common/libcommon.a(env_common.o)
.debug_aranges
0x000006e0 0x20 common/libcommon.a(env_flash.o)
.debug_aranges
0x00000700 0x20 common/libcommon.a(exports.o)
.debug_aranges
0x00000720 0x20 common/libcommon.a(env_otp.o)
.debug_aranges
0x00000740 0x20 common/libcommon.a(wmt-ost.o)
.debug_aranges
0x00000760 0x20 common/libcommon.a(lcd-mipi-ssd2828.o)
.debug_aranges
0x00000780 0x20 common/libcommon.a(wmt_cmd_display.o)
.debug_aranges
0x000007a0 0x20 common/libcommon.a(minivgui.o)
.debug_aranges
0x000007c0 0x20 common/libcommon.a(uboot-vpp.o)
.debug_aranges
0x000007e0 0x20 common/libcommon.a(cmd_mbit.o)
.debug_aranges
0x00000800 0x20 common/libcommon.a(cmd_textout.o)
.debug_aranges
0x00000820 0x20 common/libcommon.a(env_parse.o)
.debug_aranges
0x00000840 0x20 common/libcommon.a(charge_animation.o)
.debug_aranges
0x00000860 0x20 common/libcommon.a(flash.o)
.debug_aranges
0x00000880 0x20 common/libcommon.a(hush.o)
.debug_aranges
0x000008a0 0x20 common/libcommon.a(lists.o)
.debug_aranges
0x000008c0 0x20 common/libcommon.a(miiphyutil.o)
.debug_aranges
0x000008e0 0x20 common/libcommon.a(usb.o)
.debug_aranges
0x00000900 0x20 common/libcommon.a(usb_storage.o)
.debug_aranges
0x00000920 0x20 common/libcommon.a(cmd_fastboot.o)
.debug_aranges
0x00000940 0x20 common/libcommon.a(sparse.o)
.debug_aranges
0x00000960 0x20 common/libcommon.a(mmc_ext4.o)
.debug_aranges
0x00000980 0x20 common/libcommon.a(wmt_cmd_check_fastboot.o)
.debug_aranges
0x000009a0 0x20 common/libcommon.a(wmt_cmd_recovery_mode.o)
.debug_aranges
0x000009c0 0x20 common/libcommon.a(wmt_cmd_ac_ok.o)
.debug_aranges
0x000009e0 0x20 common/libcommon.a(wmt_cmd_wmtfs.o)
.debug_aranges
0x00000a00 0x20 common/libcommon.a(wmt_cmd_addfwcenv.o)
.debug_aranges
0x00000a20 0x20 common/libcommon.a(hw_recovery.o)
.debug_aranges
0x00000a40 0x20 common/libcommon.a(enter_fastboot_mode.o)
.debug_aranges
0x00000a60 0x20 common/libcommon.a(wmt_cmd_syncenv.o)
.debug_aranges
0x00000a80 0x20 common/libcommon.a(aes.o)
.debug_aranges
0x00000aa0 0x20 common/libcommon.a(cmd_aes.o)
.debug_aranges
0x00000ac0 0x20 common/libcommon.a(wmt_efuse.o)
.debug_aranges
0x00000ae0 0x20 common/libcommon.a(wmt_cmd_efuse.o)
.debug_aranges
0x00000b00 0x20 common/libcommon.a(wmt_dual_boot.o)
.debug_aranges
0x00000b20 0x20 common/libcommon.a(display_aligment.o)
.debug_aranges
0x00000b40 0x20 common/libcommon.a(rsa_verify.o)
.debug_aranges
0x00000b60 0x20 common/libcommon.a(bignum.o)
.debug_aranges
0x00000b80 0x20 common/libcommon.a(pwm.o)
.debug_aranges
0x00000ba0 0x20 common/libcommon.a(scl.o)
.debug_aranges
0x00000bc0 0x20 common/libcommon.a(govrh.o)
.debug_aranges
0x00000be0 0x20 common/libcommon.a(vout.o)
.debug_aranges
0x00000c00 0x20 common/libcommon.a(lcd.o)
.debug_aranges
0x00000c20 0x20 common/libcommon.a(lvds.o)
.debug_aranges
0x00000c40 0x20 common/libcommon.a(vpp.o)
.debug_aranges
0x00000c60 0x20 common/libcommon.a(hdmi.o)
.debug_aranges
0x00000c80 0x20 common/libcommon.a(parse-edid.o)
.debug_aranges
0x00000ca0 0x20 common/libcommon.a(vout-wmt.o)
.debug_aranges
0x00000cc0 0x20 common/libcommon.a(lcd-oem.o)
.debug_aranges
0x00000ce0 0x20 common/libcommon.a(lcd-AUO-A080SN01.o)
.debug_aranges
0x00000d00 0x20 common/libcommon.a(lcd-INNOLUX-AT070TN83.o)
.debug_aranges
0x00000d20 0x20 common/libcommon.a(lcd-CHILIN-LW700at9003.o)
.debug_aranges
0x00000d40 0x20 common/libcommon.a(lcd-EKING-EK08009-70135.o)
.debug_aranges
0x00000d60 0x20 common/libcommon.a(lcd-HANNSTAR-HSD101PFW2.o)
.debug_aranges
0x00000d80 0x20 common/libcommon.a(lcd-lvds-1024x600.o)
.debug_aranges
0x00000da0 0x20 common/libcommon.a(vt1625.o)
.debug_aranges
0x00000dc0 0x20 common/libcommon.a(vt1632.o)
.debug_aranges
0x00000de0 0x20 common/libcommon.a(sil902x.o)
.debug_aranges
0x00000e00 0x20 common/libcommon.a(lcd-setup.o)
.debug_aranges
0x00000e20 0x20 common/libcommon.a(vpp-osif.o)
.debug_aranges
0x00000e40 0x20 common/libcommon.a(sw_i2c.o)
.debug_aranges
0x00000e60 0x20 lib_generic/libgeneric.a(crc32.o)
.debug_aranges
0x00000e80 0x20 lib_generic/libgeneric.a(display_options.o)
.debug_aranges
0x00000ea0 0x20 lib_generic/libgeneric.a(string.o)
.debug_aranges
0x00000ec0 0x20 lib_generic/libgeneric.a(vsprintf.o)
.debug_aranges
0x00000ee0 0x20 lib_generic/libgeneric.a(gunzip.o)
.debug_aranges
0x00000f00 0x20 lib_generic/libgeneric.a(zlib.o)
.debug_aranges
0x00000f20 0x20 board/wmt/libwmt.a(wmt.o)
.debug_aranges
0x00000f40 0x20 board/wmt/libwmt.a(flash.o)
.debug_aranges
0x00000f60 0x20 board/wmt/libwmt.a(main.o)
.debug_aranges
0x00000f80 0x20 board/wmt/libwmt.a(spi_flash.o)
.debug_aranges
0x00000fa0 0x20 board/wmt/libwmt.a(nand_flash.o)
.debug_aranges
0x00000fc0 0x20 board/wmt/libwmt.a(ehci-hcd.o)
.debug_aranges
0x00000fe0 0x20 board/wmt/libwmt.a(usb_uhci.o)
.debug_aranges
0x00001000 0x20 board/wmt/libwmt.a(snd-vt1603.o)
.debug_aranges
0x00001020 0x20 board/wmt/libwmt.a(spi_flash_lock.o)
.debug_aranges
0x00001040 0x20 cpu/arm920t/libarm920t.a(cpu.o)
.debug_aranges
0x00001060 0x20 cpu/arm920t/wmt/libwmt.a(serial.o)
.debug_aranges
0x00001080 0x20 cpu/arm920t/wmt/libwmt.a(dma.o)
.debug_aranges
0x000010a0 0x20 cpu/arm920t/wmt/libwmt.a(cypherif.o)
.debug_aranges
0x000010c0 0x20 cpu/arm920t/wmt/libwmt.a(mmc.o)
.debug_aranges
0x000010e0 0x20 cpu/arm920t/wmt/libwmt.a(cypher.o)
.debug_aranges
0x00001100 0x20 lib_arm/libarm.a(memcpy.o)
.debug_aranges
0x00001120 0x20 lib_arm/libarm.a(memset.o)
.debug_aranges
0x00001140 0x20 lib_arm/libarm.a(armlinux.o)
.debug_aranges
0x00001160 0x20 lib_arm/libarm.a(cache.o)
.debug_aranges
0x00001180 0x20 lib_arm/libarm.a(qsort.o)
.debug_aranges
0x000011a0 0x20 lib_arm/libarm.a(hashtable.o)
.debug_aranges
0x000011c0 0x20 fs/fat/libfat.a(fat.o)
.debug_aranges
0x000011e0 0x20 disk/libdisk.a(part.o)
.debug_aranges
0x00001200 0x20 disk/libdisk.a(part_dos.o)
.debug_aranges
0x00001220 0x20 drivers/libdrivers.a(usbdcore.o)
.debug_aranges
0x00001240 0x20 drivers/libdrivers.a(wmt_udc.o)
.debug_aranges
0x00001260 0x20 drivers/libdrivers.a(usb_ether.o)
.debug_aranges
0x00001280 0x20 drivers/libdrivers.a(r8152.o)
.debug_aranges
0x000012a0 0x20 drivers/libdrivers.a(asix.o)
.debug_aranges
0x000012c0 0x20 cpu/arm920t/wmt/libwmt.a(zde.o)
.debug_pubnames
0x00000000 0xa1ce
*(.debug_pubnames)
.debug_pubnames
0x00000000 0x40 board/wmt/libwmt.a(poweroff.o)
.debug_pubnames
0x00000040 0x151 board/wmt/libwmt.a(wmt_battery.o)
.debug_pubnames
0x00000191 0x66 board/wmt/libwmt.a(g2214_charger.o)
.debug_pubnames
0x000001f7 0x29 board/wmt/libwmt.a(mp2625_charger.o)
.debug_pubnames
0x00000220 0x238 board/wmt/libwmt.a(ug31xx_boot.o)
.debug_pubnames
0x00000458 0x74 board/wmt/libwmt.a(ug31xx_boot_i2c.o)
.debug_pubnames
0x000004cc 0x98 board/wmt/libwmt.a(vt1603_battery.o)
.debug_pubnames
0x00000564 0x41 board/wmt/libwmt.a(sp2541_battery.o)
.debug_pubnames
0x000005a5 0x25 board/wmt/libwmt.a(bq_battery_i2c.o)
.debug_pubnames
0x000005ca 0x7c board/wmt/libwmt.a(wmt_clk.o)
.debug_pubnames
0x00000646 0xa3 board/wmt/libwmt.a(wmt_i2c.o)
.debug_pubnames
0x000006e9 0x83 board/wmt/libwmt.a(wmt_i2c_1.o)
.debug_pubnames
0x0000076c 0x83 board/wmt/libwmt.a(wmt_i2c_2.o)
.debug_pubnames
0x000007ef 0x83 board/wmt/libwmt.a(wmt_i2c_3.o)
.debug_pubnames
0x00000872 0xe4 board/wmt/libwmt.a(wmt_spi_0.o)
.debug_pubnames
0x00000956 0xa1 board/wmt/libwmt.a(wmt_gpio.o)
.debug_pubnames
0x000009f7 0x210 board/wmt/libwmt.a(uG31xx_API_Measurement.o)
.debug_pubnames
0x00000c07 0x1a0 board/wmt/libwmt.a(uG31xx_API_Otp.o)
.debug_pubnames
0x00000da7 0x241 board/wmt/libwmt.a(uG31xx_API_System.o)
.debug_pubnames
0x00000fe8 0x49 board/wmt/libwmt.a(wmt_ost.o)
.debug_pubnames
0x00001031 0xdf cpu/arm920t/libarm920t.a(interrupts.o)
.debug_pubnames
0x00001110 0xc4 cpu/arm920t/wmt/libwmt.a(interrupts.o)
.debug_pubnames
0x000011d4 0xf1 lib_arm/libarm.a(board.o)
.debug_pubnames
0x000012c5 0x40c net/libnet.a(net.o)
.debug_pubnames
0x000016d1 0x20 net/libnet.a(tftp.o)
.debug_pubnames
0x000016f1 0x3c net/libnet.a(bootp.o)
.debug_pubnames
0x0000172d 0x2e net/libnet.a(rarp.o)
.debug_pubnames
0x0000175b 0x172 net/libnet.a(eth.o)
.debug_pubnames
0x000018cd 0xa1 common/libcommon.a(main.o)
.debug_pubnames
0x0000196e 0x4c common/libcommon.a(cmd_autoscript.o)
.debug_pubnames
0x000019ba 0x3f common/libcommon.a(cmd_bdinfo.o)
.debug_pubnames
0x000019f9 0x47 common/libcommon.a(cmd_boot.o)
.debug_pubnames
0x00001a40 0xa4 common/libcommon.a(cmd_bootm.o)
.debug_pubnames
0x00001ae4 0x3a common/libcommon.a(cmd_console.o)
.debug_pubnames
0x00001b1e 0x99 common/libcommon.a(cmd_mkfsfat.o)
.debug_pubnames
0x00001bb7 0xc6 common/libcommon.a(cmd_fat.o)
.debug_pubnames
0x00001c7d 0xc0 common/libcommon.a(cmd_flash.o)
.debug_pubnames
0x00001d3d 0x18f common/libcommon.a(cmd_load.o)
.debug_pubnames
0x00001ecc 0x1e7 common/libcommon.a(cmd_mem.o)
.debug_pubnames
0x000020b3 0x13e common/libcommon.a(cmd_mii.o)
.debug_pubnames
0x000021f1 0x36 common/libcommon.a(cmd_misc.o)
.debug_pubnames
0x00002227 0x18a common/libcommon.a(cmd_mmc.o)
.debug_pubnames
0x000023b1 0x64 common/libcommon.a(cmd_dma.o)
.debug_pubnames
0x00002415 0xe12 common/libcommon.a(cmd_nand.o)
.debug_pubnames
0x00003227 0xa6 common/libcommon.a(cmd_net.o)
.debug_pubnames
0x000032cd 0xe6 common/libcommon.a(cmd_nvedit.o)
.debug_pubnames
0x000033b3 0x142 common/libcommon.a(cmd_usb.o)
.debug_pubnames
0x000034f5 0x46 common/libcommon.a(cmd_rsa.o)
.debug_pubnames
0x0000353b 0x13d common/libcommon.a(command.o)
.debug_pubnames
0x00003678 0x115 common/libcommon.a(console.o)
.debug_pubnames
0x0000378d 0x76 common/libcommon.a(devices.o)
.debug_pubnames
0x00003803 0xba common/libcommon.a(dlmalloc.o)
.debug_pubnames
0x000038bd 0xd0 common/libcommon.a(env_common.o)
.debug_pubnames
0x0000398d 0xa8 common/libcommon.a(env_flash.o)
.debug_pubnames
0x00003a35 0x3c common/libcommon.a(exports.o)
.debug_pubnames
0x00003a71 0x90 common/libcommon.a(env_otp.o)
.debug_pubnames
0x00003b01 0x58 common/libcommon.a(wmt-ost.o)
.debug_pubnames
0x00003b59 0x3b common/libcommon.a(lcd-mipi-ssd2828.o)
.debug_pubnames
0x00003b94 0xa9 common/libcommon.a(wmt_cmd_display.o)
.debug_pubnames
0x00003c3d 0x24e common/libcommon.a(minivgui.o)
.debug_pubnames
0x00003e8b 0x116 common/libcommon.a(uboot-vpp.o)
.debug_pubnames
0x00003fa1 0x3a common/libcommon.a(cmd_mbit.o)
.debug_pubnames
0x00003fdb 0x50 common/libcommon.a(cmd_textout.o)
.debug_pubnames
0x0000402b 0x70 common/libcommon.a(env_parse.o)
.debug_pubnames
0x0000409b 0x98 common/libcommon.a(charge_animation.o)
.debug_pubnames
0x00004133 0x53 common/libcommon.a(flash.o)
.debug_pubnames
0x00004186 0xcf common/libcommon.a(hush.o)
.debug_pubnames
0x00004255 0x116 common/libcommon.a(lists.o)
.debug_pubnames
0x0000436b 0xe4 common/libcommon.a(miiphyutil.o)
.debug_pubnames
0x0000444f 0x35a common/libcommon.a(usb.o)
.debug_pubnames
0x000047a9 0x15e common/libcommon.a(usb_storage.o)
.debug_pubnames
0x00004907 0x31e common/libcommon.a(cmd_fastboot.o)
.debug_pubnames
0x00004c25 0x30 common/libcommon.a(sparse.o)
.debug_pubnames
0x00004c55 0x90 common/libcommon.a(mmc_ext4.o)
.debug_pubnames
0x00004ce5 0x32 common/libcommon.a(wmt_cmd_check_fastboot.o)
.debug_pubnames
0x00004d17 0x37 common/libcommon.a(wmt_cmd_recovery_mode.o)
.debug_pubnames
0x00004d4e 0x2f common/libcommon.a(wmt_cmd_ac_ok.o)
.debug_pubnames
0x00004d7d 0x66 common/libcommon.a(wmt_cmd_wmtfs.o)
.debug_pubnames
0x00004de3 0x66 common/libcommon.a(wmt_cmd_addfwcenv.o)
.debug_pubnames
0x00004e49 0x43 common/libcommon.a(hw_recovery.o)
.debug_pubnames
0x00004e8c 0x66 common/libcommon.a(enter_fastboot_mode.o)
.debug_pubnames
0x00004ef2 0x3a common/libcommon.a(wmt_cmd_syncenv.o)
.debug_pubnames
0x00004f2c 0x5c common/libcommon.a(aes.o)
.debug_pubnames
0x00004f88 0x38 common/libcommon.a(cmd_aes.o)
.debug_pubnames
0x00004fc0 0x112 common/libcommon.a(wmt_efuse.o)
.debug_pubnames
0x000050d2 0x29 common/libcommon.a(wmt_cmd_efuse.o)
.debug_pubnames
0x000050fb 0x5e common/libcommon.a(wmt_dual_boot.o)
.debug_pubnames
0x00005159 0xda common/libcommon.a(rsa_verify.o)
.debug_pubnames
0x00005233 0x237 common/libcommon.a(bignum.o)
.debug_pubnames
0x0000546a 0x11c common/libcommon.a(pwm.o)
.debug_pubnames
0x00005586 0x6b1 common/libcommon.a(scl.o)
.debug_pubnames
0x00005c37 0x8b8 common/libcommon.a(govrh.o)
.debug_pubnames
0x000064ef 0x370 common/libcommon.a(vout.o)
.debug_pubnames
0x0000685f 0x222 common/libcommon.a(lcd.o)
.debug_pubnames
0x00006a81 0xda common/libcommon.a(lvds.o)
.debug_pubnames
0x00006b5b 0x2d9 common/libcommon.a(vpp.o)
.debug_pubnames
0x00006e34 0x468 common/libcommon.a(hdmi.o)
.debug_pubnames
0x0000729c 0x131 common/libcommon.a(parse-edid.o)
.debug_pubnames
0x000073cd 0x21f common/libcommon.a(vout-wmt.o)
.debug_pubnames
0x000075ec 0x15b common/libcommon.a(lcd-oem.o)
.debug_pubnames
0x00007747 0x58 common/libcommon.a(lcd-AUO-A080SN01.o)
.debug_pubnames
0x0000779f 0x5b common/libcommon.a(lcd-INNOLUX-AT070TN83.o)
.debug_pubnames
0x000077fa 0x61 common/libcommon.a(lcd-CHILIN-LW700at9003.o)
.debug_pubnames
0x0000785b 0x55 common/libcommon.a(lcd-EKING-EK08009-70135.o)
.debug_pubnames
0x000078b0 0x5e common/libcommon.a(lcd-HANNSTAR-HSD101PFW2.o)
.debug_pubnames
0x0000790e 0x67 common/libcommon.a(lcd-lvds-1024x600.o)
.debug_pubnames
0x00007975 0x9f common/libcommon.a(vt1625.o)
.debug_pubnames
0x00007a14 0xd2 common/libcommon.a(vt1632.o)
.debug_pubnames
0x00007ae6 0x2a common/libcommon.a(sil902x.o)
.debug_pubnames
0x00007b10 0x24 common/libcommon.a(lcd-setup.o)
.debug_pubnames
0x00007b34 0x22f common/libcommon.a(vpp-osif.o)
.debug_pubnames
0x00007d63 0x1d7 common/libcommon.a(sw_i2c.o)
.debug_pubnames
0x00007f3a 0x1c lib_generic/libgeneric.a(crc32.o)
.debug_pubnames
0x00007f56 0x1d lib_generic/libgeneric.a(ctype.o)
.debug_pubnames
0x00007f73 0x35 lib_generic/libgeneric.a(display_options.o)
.debug_pubnames
0x00007fa8 0x13d lib_generic/libgeneric.a(string.o)
.debug_pubnames
0x000080e5 0x6e lib_generic/libgeneric.a(vsprintf.o)
.debug_pubnames
0x00008153 0x3d lib_generic/libgeneric.a(gunzip.o)
.debug_pubnames
0x00008190 0xb4 lib_generic/libgeneric.a(zlib.o)
.debug_pubnames
0x00008244 0x61 board/wmt/libwmt.a(wmt.o)
.debug_pubnames
0x000082a5 0x130 board/wmt/libwmt.a(flash.o)
.debug_pubnames
0x000083d5 0x2b board/wmt/libwmt.a(main.o)
.debug_pubnames
0x00008400 0xdc board/wmt/libwmt.a(spi_flash.o)
.debug_pubnames
0x000084dc 0x85 board/wmt/libwmt.a(nand_flash.o)
.debug_pubnames
0x00008561 0x222 board/wmt/libwmt.a(ehci-hcd.o)
.debug_pubnames
0x00008783 0x206 board/wmt/libwmt.a(usb_uhci.o)
.debug_pubnames
0x00008989 0x26 board/wmt/libwmt.a(snd-vt1603.o)
.debug_pubnames
0x000089af 0x2c board/wmt/libwmt.a(spi_flash_lock.o)
.debug_pubnames
0x000089db 0x7c cpu/arm920t/libarm920t.a(cpu.o)
.debug_pubnames
0x00008a57 0x96 cpu/arm920t/wmt/libwmt.a(serial.o)
.debug_pubnames
0x00008aed 0x197 cpu/arm920t/wmt/libwmt.a(dma.o)
.debug_pubnames
0x00008c84 0xe0 cpu/arm920t/wmt/libwmt.a(cypherif.o)
.debug_pubnames
0x00008d64 0x37d cpu/arm920t/wmt/libwmt.a(mmc.o)
.debug_pubnames
0x000090e1 0x15e cpu/arm920t/wmt/libwmt.a(cypher.o)
.debug_pubnames
0x0000923f 0x2c lib_arm/libarm.a(armlinux.o)
.debug_pubnames
0x0000926b 0x22 lib_arm/libarm.a(cache.o)
.debug_pubnames
0x0000928d 0x2e lib_arm/libarm.a(qsort.o)
.debug_pubnames
0x000092bb 0x82 lib_arm/libarm.a(hashtable.o)
.debug_pubnames
0x0000933d 0x1c lib_arm/libarm.a(errno.o)
.debug_pubnames
0x00009359 0x15a fs/fat/libfat.a(fat.o)
.debug_pubnames
0x000094b3 0x78 disk/libdisk.a(part.o)
.debug_pubnames
0x0000952b 0xdf disk/libdisk.a(part_dos.o)
.debug_pubnames
0x0000960a 0x317 drivers/libdrivers.a(usbdcore.o)
.debug_pubnames
0x00009921 0x78a drivers/libdrivers.a(wmt_udc.o)
.debug_pubnames
0x0000a0ab 0x43 drivers/libdrivers.a(usb_ether.o)
.debug_pubnames
0x0000a0ee 0x65 drivers/libdrivers.a(r8152.o)
.debug_pubnames
0x0000a153 0x55 drivers/libdrivers.a(asix.o)
.debug_pubnames
0x0000a1a8 0x26 cpu/arm920t/wmt/libwmt.a(zde.o)
.debug_info 0x00000000 0x79c6d
*(.debug_info)
.debug_info 0x00000000 0x77 cpu/arm920t/start.o
.debug_info 0x00000077 0x181 board/wmt/libwmt.a(poweroff.o)
.debug_info 0x000001f8 0xf7f board/wmt/libwmt.a(wmt_battery.o)
.debug_info 0x00001177 0xbd9 board/wmt/libwmt.a(g2214_charger.o)
.debug_info 0x00001d50 0x834 board/wmt/libwmt.a(mp2625_charger.o)
.debug_info 0x00002584 0x16ee board/wmt/libwmt.a(ug31xx_boot.o)
.debug_info 0x00003c72 0x336 board/wmt/libwmt.a(ug31xx_boot_i2c.o)
.debug_info 0x00003fa8 0xd08 board/wmt/libwmt.a(vt1603_battery.o)
.debug_info 0x00004cb0 0x6e3 board/wmt/libwmt.a(sp2541_battery.o)
.debug_info 0x00005393 0x458 board/wmt/libwmt.a(bq_battery_i2c.o)
.debug_info 0x000057eb 0x87 board/wmt/libwmt.a(lowlevel_init.o)
.debug_info 0x00005872 0xbbf board/wmt/libwmt.a(wmt_clk.o)
.debug_info 0x00006431 0xae4 board/wmt/libwmt.a(wmt_i2c.o)
.debug_info 0x00006f15 0xa7a board/wmt/libwmt.a(wmt_i2c_1.o)
.debug_info 0x0000798f 0xa7a board/wmt/libwmt.a(wmt_i2c_2.o)
.debug_info 0x00008409 0xa7a board/wmt/libwmt.a(wmt_i2c_3.o)
.debug_info 0x00008e83 0x83a board/wmt/libwmt.a(wmt_spi_0.o)
.debug_info 0x000096bd 0x96c board/wmt/libwmt.a(wmt_gpio.o)
.debug_info 0x0000a029 0x1716 board/wmt/libwmt.a(uG31xx_API_Measurement.o)
.debug_info 0x0000b73f 0x827 board/wmt/libwmt.a(uG31xx_API_Otp.o)
.debug_info 0x0000bf66 0x1340 board/wmt/libwmt.a(uG31xx_API_System.o)
.debug_info 0x0000d2a6 0x212 board/wmt/libwmt.a(wmt_ost.o)
.debug_info 0x0000d4b8 0x260 cpu/arm920t/libarm920t.a(interrupts.o)
.debug_info 0x0000d718 0xe0c cpu/arm920t/wmt/libwmt.a(interrupts.o)
.debug_info 0x0000e524 0xce2 lib_arm/libarm.a(board.o)
.debug_info 0x0000f206 0x15b1 net/libnet.a(net.o)
.debug_info 0x000107b7 0x4a6 net/libnet.a(tftp.o)
.debug_info 0x00010c5d 0x98c net/libnet.a(bootp.o)
.debug_info 0x000115e9 0x2b2 net/libnet.a(rarp.o)
.debug_info 0x0001189b 0x9f5 net/libnet.a(eth.o)
.debug_info 0x00012290 0xb3c common/libcommon.a(main.o)
.debug_info 0x00012dcc 0x3f6 common/libcommon.a(cmd_autoscript.o)
.debug_info 0x000131c2 0x3e3 common/libcommon.a(cmd_bdinfo.o)
.debug_info 0x000135a5 0x223 common/libcommon.a(cmd_boot.o)
.debug_info 0x000137c8 0xa5c common/libcommon.a(cmd_bootm.o)
.debug_info 0x00014224 0x3ee common/libcommon.a(cmd_console.o)
.debug_info 0x00014612 0x5e0 common/libcommon.a(cmd_mkfsfat.o)
.debug_info 0x00014bf2 0x694 common/libcommon.a(cmd_fat.o)
.debug_info 0x00015286 0x991 common/libcommon.a(cmd_flash.o)
.debug_info 0x00015c17 0xa51 common/libcommon.a(cmd_load.o)
.debug_info 0x00016668 0xce9 common/libcommon.a(cmd_mem.o)
.debug_info 0x00017351 0x881 common/libcommon.a(cmd_mii.o)
.debug_info 0x00017bd2 0x1f4 common/libcommon.a(cmd_misc.o)
.debug_info 0x00017dc6 0x1070 common/libcommon.a(cmd_mmc.o)
.debug_info 0x00018e36 0x479 common/libcommon.a(cmd_dma.o)
.debug_info 0x000192af 0x81dc common/libcommon.a(cmd_nand.o)
.debug_info 0x0002148b 0x5f6 common/libcommon.a(cmd_net.o)
.debug_info 0x00021a81 0xb8b common/libcommon.a(cmd_nvedit.o)
.debug_info 0x0002260c 0xf4c common/libcommon.a(cmd_usb.o)
.debug_info 0x00023558 0x358 common/libcommon.a(cmd_rsa.o)
.debug_info 0x000238b0 0xc24 common/libcommon.a(command.o)
.debug_info 0x000244d4 0x985 common/libcommon.a(console.o)
.debug_info 0x00024e59 0x304 common/libcommon.a(devices.o)
.debug_info 0x0002515d 0xc90 common/libcommon.a(dlmalloc.o)
.debug_info 0x00025ded 0x6b1 common/libcommon.a(env_common.o)
.debug_info 0x0002649e 0x411 common/libcommon.a(env_flash.o)
.debug_info 0x000268af 0x2e2 common/libcommon.a(exports.o)
.debug_info 0x00026b91 0xccd common/libcommon.a(env_otp.o)
.debug_info 0x0002785e 0x59d common/libcommon.a(wmt-ost.o)
.debug_info 0x00027dfb 0x1039 common/libcommon.a(lcd-mipi-ssd2828.o)
.debug_info 0x00028e34 0x1b5c common/libcommon.a(wmt_cmd_display.o)
.debug_info 0x0002a990 0x1ebc common/libcommon.a(minivgui.o)
.debug_info 0x0002c84c 0x1bcb common/libcommon.a(uboot-vpp.o)
.debug_info 0x0002e417 0x5ef common/libcommon.a(cmd_mbit.o)
.debug_info 0x0002ea06 0x7e7 common/libcommon.a(cmd_textout.o)
.debug_info 0x0002f1ed 0x670 common/libcommon.a(env_parse.o)
.debug_info 0x0002f85d 0x1088 common/libcommon.a(charge_animation.o)
.debug_info 0x000308e5 0x367 common/libcommon.a(flash.o)
.debug_info 0x00030c4c 0x1905 common/libcommon.a(hush.o)
.debug_info 0x00032551 0x529 common/libcommon.a(lists.o)
.debug_info 0x00032a7a 0x630 common/libcommon.a(miiphyutil.o)
.debug_info 0x000330aa 0x19f2 common/libcommon.a(usb.o)
.debug_info 0x00034a9c 0x163a common/libcommon.a(usb_storage.o)
.debug_info 0x000360d6 0x35a5 common/libcommon.a(cmd_fastboot.o)
.debug_info 0x0003967b 0x361 common/libcommon.a(sparse.o)
.debug_info 0x000399dc 0xaae common/libcommon.a(mmc_ext4.o)
.debug_info 0x0003a48a 0x1eb common/libcommon.a(wmt_cmd_check_fastboot.o)
.debug_info 0x0003a675 0x1eb common/libcommon.a(wmt_cmd_recovery_mode.o)
.debug_info 0x0003a860 0x266 common/libcommon.a(wmt_cmd_ac_ok.o)
.debug_info 0x0003aac6 0x2b8 common/libcommon.a(wmt_cmd_wmtfs.o)
.debug_info 0x0003ad7e 0x3bc common/libcommon.a(wmt_cmd_addfwcenv.o)
.debug_info 0x0003b13a 0x11a1 common/libcommon.a(hw_recovery.o)
.debug_info 0x0003c2db 0xba2 common/libcommon.a(enter_fastboot_mode.o)
.debug_info 0x0003ce7d 0xc43 common/libcommon.a(wmt_cmd_syncenv.o)
.debug_info 0x0003dac0 0x585 common/libcommon.a(aes.o)
.debug_info 0x0003e045 0x342 common/libcommon.a(cmd_aes.o)
.debug_info 0x0003e387 0x107a common/libcommon.a(wmt_efuse.o)
.debug_info 0x0003f401 0x49f common/libcommon.a(wmt_cmd_efuse.o)
.debug_info 0x0003f8a0 0x178e common/libcommon.a(wmt_dual_boot.o)
.debug_info 0x0004102e 0x90 common/libcommon.a(display_aligment.o)
.debug_info 0x000410be 0x9fc common/libcommon.a(rsa_verify.o)
.debug_info 0x00041aba 0x1547 common/libcommon.a(bignum.o)
.debug_info 0x00043001 0xb05 common/libcommon.a(pwm.o)
.debug_info 0x00043b06 0x3b38 common/libcommon.a(scl.o)
.debug_info 0x0004763e 0x390c common/libcommon.a(govrh.o)
.debug_info 0x0004af4a 0x2241 common/libcommon.a(vout.o)
.debug_info 0x0004d18b 0x1dcd common/libcommon.a(lcd.o)
.debug_info 0x0004ef58 0xb86 common/libcommon.a(lvds.o)
.debug_info 0x0004fade 0x1bf1 common/libcommon.a(vpp.o)
.debug_info 0x000516cf 0x2d1c common/libcommon.a(hdmi.o)
.debug_info 0x000543eb 0x1ee9 common/libcommon.a(parse-edid.o)
.debug_info 0x000562d4 0x28b4 common/libcommon.a(vout-wmt.o)
.debug_info 0x00058b88 0x7ff common/libcommon.a(lcd-oem.o)
.debug_info 0x00059387 0x644 common/libcommon.a(lcd-AUO-A080SN01.o)
.debug_info 0x000599cb 0x657 common/libcommon.a(lcd-INNOLUX-AT070TN83.o)
.debug_info 0x0005a022 0x657 common/libcommon.a(lcd-CHILIN-LW700at9003.o)
.debug_info 0x0005a679 0x657 common/libcommon.a(lcd-EKING-EK08009-70135.o)
.debug_info 0x0005acd0 0x657 common/libcommon.a(lcd-HANNSTAR-HSD101PFW2.o)
.debug_info 0x0005b327 0x644 common/libcommon.a(lcd-lvds-1024x600.o)
.debug_info 0x0005b96b 0x1d79 common/libcommon.a(vt1625.o)
.debug_info 0x0005d6e4 0x15ac common/libcommon.a(vt1632.o)
.debug_info 0x0005ec90 0x2ca common/libcommon.a(sil902x.o)
.debug_info 0x0005ef5a 0xe91 common/libcommon.a(lcd-setup.o)
.debug_info 0x0005fdeb 0xeee common/libcommon.a(vpp-osif.o)
.debug_info 0x00060cd9 0xb04 common/libcommon.a(sw_i2c.o)
.debug_info 0x000617dd 0x126 lib_generic/libgeneric.a(crc32.o)
.debug_info 0x00061903 0x63 lib_generic/libgeneric.a(ctype.o)
.debug_info 0x00061966 0x136 lib_generic/libgeneric.a(display_options.o)
.debug_info 0x00061a9c 0x990 lib_generic/libgeneric.a(string.o)
.debug_info 0x0006242c 0x4d4 lib_generic/libgeneric.a(vsprintf.o)
.debug_info 0x00062900 0x3fd lib_generic/libgeneric.a(gunzip.o)
.debug_info 0x00062cfd 0x10b4 lib_generic/libgeneric.a(zlib.o)
.debug_info 0x00063db1 0x28a board/wmt/libwmt.a(wmt.o)
.debug_info 0x0006403b 0x52b board/wmt/libwmt.a(flash.o)
.debug_info 0x00064566 0x87 board/wmt/libwmt.a(main.o)
.debug_info 0x000645ed 0xce7 board/wmt/libwmt.a(spi_flash.o)
.debug_info 0x000652d4 0x26c board/wmt/libwmt.a(nand_flash.o)
.debug_info 0x00065540 0x1bc3 board/wmt/libwmt.a(ehci-hcd.o)
.debug_info 0x00067103 0x118b board/wmt/libwmt.a(usb_uhci.o)
.debug_info 0x0006828e 0x4c0 board/wmt/libwmt.a(snd-vt1603.o)
.debug_info 0x0006874e 0x192 board/wmt/libwmt.a(spi_flash_lock.o)
.debug_info 0x000688e0 0x2e0 cpu/arm920t/libarm920t.a(cpu.o)
.debug_info 0x00068bc0 0x7c2 cpu/arm920t/wmt/libwmt.a(serial.o)
.debug_info 0x00069382 0xcbb cpu/arm920t/wmt/libwmt.a(dma.o)
.debug_info 0x0006a03d 0x571 cpu/arm920t/wmt/libwmt.a(cypherif.o)
.debug_info 0x0006a5ae 0x2024 cpu/arm920t/wmt/libwmt.a(mmc.o)
.debug_info 0x0006c5d2 0x5a5 cpu/arm920t/wmt/libwmt.a(cypher.o)
.debug_info 0x0006cb77 0x8b lib_arm/libarm.a(memcpy.o)
.debug_info 0x0006cc02 0x84 lib_arm/libarm.a(memset.o)
.debug_info 0x0006cc86 0xb67 lib_arm/libarm.a(armlinux.o)
.debug_info 0x0006d7ed 0xa2 lib_arm/libarm.a(cache.o)
.debug_info 0x0006d88f 0x1c6 lib_arm/libarm.a(qsort.o)
.debug_info 0x0006da55 0x787 lib_arm/libarm.a(hashtable.o)
.debug_info 0x0006e1dc 0x3f lib_arm/libarm.a(errno.o)
.debug_info 0x0006e21b 0x29fc fs/fat/libfat.a(fat.o)
.debug_info 0x00070c17 0x4a2 disk/libdisk.a(part.o)
.debug_info 0x000710b9 0xc6f disk/libdisk.a(part_dos.o)
.debug_info 0x00071d28 0x12b9 drivers/libdrivers.a(usbdcore.o)
.debug_info 0x00072fe1 0x323f drivers/libdrivers.a(wmt_udc.o)
.debug_info 0x00076220 0x9db drivers/libdrivers.a(usb_ether.o)
.debug_info 0x00076bfb 0x1db4 drivers/libdrivers.a(r8152.o)
.debug_info 0x000789af 0x110b drivers/libdrivers.a(asix.o)
.debug_info 0x00079aba 0x1b3 cpu/arm920t/wmt/libwmt.a(zde.o)
.debug_abbrev 0x00000000 0x1443c
*(.debug_abbrev)
.debug_abbrev 0x00000000 0x14 cpu/arm920t/start.o
.debug_abbrev 0x00000014 0xb6 board/wmt/libwmt.a(poweroff.o)
.debug_abbrev 0x000000ca 0x2c4 board/wmt/libwmt.a(wmt_battery.o)
.debug_abbrev 0x0000038e 0x326 board/wmt/libwmt.a(g2214_charger.o)
.debug_abbrev 0x000006b4 0x203 board/wmt/libwmt.a(mp2625_charger.o)
.debug_abbrev 0x000008b7 0x379 board/wmt/libwmt.a(ug31xx_boot.o)
.debug_abbrev 0x00000c30 0x112 board/wmt/libwmt.a(ug31xx_boot_i2c.o)
.debug_abbrev 0x00000d42 0x3d0 board/wmt/libwmt.a(vt1603_battery.o)
.debug_abbrev 0x00001112 0x1d7 board/wmt/libwmt.a(sp2541_battery.o)
.debug_abbrev 0x000012e9 0x195 board/wmt/libwmt.a(bq_battery_i2c.o)
.debug_abbrev 0x0000147e 0x14 board/wmt/libwmt.a(lowlevel_init.o)
.debug_abbrev 0x00001492 0x2ac board/wmt/libwmt.a(wmt_clk.o)
.debug_abbrev 0x0000173e 0x310 board/wmt/libwmt.a(wmt_i2c.o)
.debug_abbrev 0x00001a4e 0x2df board/wmt/libwmt.a(wmt_i2c_1.o)
.debug_abbrev 0x00001d2d 0x2df board/wmt/libwmt.a(wmt_i2c_2.o)
.debug_abbrev 0x0000200c 0x2df board/wmt/libwmt.a(wmt_i2c_3.o)
.debug_abbrev 0x000022eb 0x238 board/wmt/libwmt.a(wmt_spi_0.o)
.debug_abbrev 0x00002523 0x16b board/wmt/libwmt.a(wmt_gpio.o)
.debug_abbrev 0x0000268e 0x249 board/wmt/libwmt.a(uG31xx_API_Measurement.o)
.debug_abbrev 0x000028d7 0x15f board/wmt/libwmt.a(uG31xx_API_Otp.o)
.debug_abbrev 0x00002a36 0x271 board/wmt/libwmt.a(uG31xx_API_System.o)
.debug_abbrev 0x00002ca7 0xfc board/wmt/libwmt.a(wmt_ost.o)
.debug_abbrev 0x00002da3 0xf5 cpu/arm920t/libarm920t.a(interrupts.o)
.debug_abbrev 0x00002e98 0x1be cpu/arm920t/wmt/libwmt.a(interrupts.o)
.debug_abbrev 0x00003056 0x31e lib_arm/libarm.a(board.o)
.debug_abbrev 0x00003374 0x3f7 net/libnet.a(net.o)
.debug_abbrev 0x0000376b 0x192 net/libnet.a(tftp.o)
.debug_abbrev 0x000038fd 0x335 net/libnet.a(bootp.o)
.debug_abbrev 0x00003c32 0x11b net/libnet.a(rarp.o)
.debug_abbrev 0x00003d4d 0x331 net/libnet.a(eth.o)
.debug_abbrev 0x0000407e 0x2b0 common/libcommon.a(main.o)
.debug_abbrev 0x0000432e 0x15e common/libcommon.a(cmd_autoscript.o)
.debug_abbrev 0x0000448c 0x15b common/libcommon.a(cmd_bdinfo.o)
.debug_abbrev 0x000045e7 0xe7 common/libcommon.a(cmd_boot.o)
.debug_abbrev 0x000046ce 0x307 common/libcommon.a(cmd_bootm.o)
.debug_abbrev 0x000049d5 0x132 common/libcommon.a(cmd_console.o)
.debug_abbrev 0x00004b07 0x136 common/libcommon.a(cmd_mkfsfat.o)
.debug_abbrev 0x00004c3d 0x16b common/libcommon.a(cmd_fat.o)
.debug_abbrev 0x00004da8 0x1f4 common/libcommon.a(cmd_flash.o)
.debug_abbrev 0x00004f9c 0x2ce common/libcommon.a(cmd_load.o)
.debug_abbrev 0x0000526a 0x24a common/libcommon.a(cmd_mem.o)
.debug_abbrev 0x000054b4 0x257 common/libcommon.a(cmd_mii.o)
.debug_abbrev 0x0000570b 0xe7 common/libcommon.a(cmd_misc.o)
.debug_abbrev 0x000057f2 0x272 common/libcommon.a(cmd_mmc.o)
.debug_abbrev 0x00005a64 0x18a common/libcommon.a(cmd_dma.o)
.debug_abbrev 0x00005bee 0x466 common/libcommon.a(cmd_nand.o)
.debug_abbrev 0x00006054 0x1c5 common/libcommon.a(cmd_net.o)
.debug_abbrev 0x00006219 0x2c6 common/libcommon.a(cmd_nvedit.o)
.debug_abbrev 0x000064df 0x23f common/libcommon.a(cmd_usb.o)
.debug_abbrev 0x0000671e 0x129 common/libcommon.a(cmd_rsa.o)
.debug_abbrev 0x00006847 0x2bb common/libcommon.a(command.o)
.debug_abbrev 0x00006b02 0x2e6 common/libcommon.a(console.o)
.debug_abbrev 0x00006de8 0x153 common/libcommon.a(devices.o)
.debug_abbrev 0x00006f3b 0x29e common/libcommon.a(dlmalloc.o)
.debug_abbrev 0x000071d9 0x28a common/libcommon.a(env_common.o)
.debug_abbrev 0x00007463 0x1b8 common/libcommon.a(env_flash.o)
.debug_abbrev 0x0000761b 0x12b common/libcommon.a(exports.o)
.debug_abbrev 0x00007746 0x38a common/libcommon.a(env_otp.o)
.debug_abbrev 0x00007ad0 0x119 common/libcommon.a(wmt-ost.o)
.debug_abbrev 0x00007be9 0x368 common/libcommon.a(lcd-mipi-ssd2828.o)
.debug_abbrev 0x00007f51 0x294 common/libcommon.a(wmt_cmd_display.o)
.debug_abbrev 0x000081e5 0x347 common/libcommon.a(minivgui.o)
.debug_abbrev 0x0000852c 0x27b common/libcommon.a(uboot-vpp.o)
.debug_abbrev 0x000087a7 0x171 common/libcommon.a(cmd_mbit.o)
.debug_abbrev 0x00008918 0x192 common/libcommon.a(cmd_textout.o)
.debug_abbrev 0x00008aaa 0x197 common/libcommon.a(env_parse.o)
.debug_abbrev 0x00008c41 0x29d common/libcommon.a(charge_animation.o)
.debug_abbrev 0x00008ede 0x160 common/libcommon.a(flash.o)
.debug_abbrev 0x0000903e 0x3c6 common/libcommon.a(hush.o)
.debug_abbrev 0x00009404 0x1f4 common/libcommon.a(lists.o)
.debug_abbrev 0x000095f8 0x1bf common/libcommon.a(miiphyutil.o)
.debug_abbrev 0x000097b7 0x3da common/libcommon.a(usb.o)
.debug_abbrev 0x00009b91 0x376 common/libcommon.a(usb_storage.o)
.debug_abbrev 0x00009f07 0x43c common/libcommon.a(cmd_fastboot.o)
.debug_abbrev 0x0000a343 0x13d common/libcommon.a(sparse.o)
.debug_abbrev 0x0000a480 0x347 common/libcommon.a(mmc_ext4.o)
.debug_abbrev 0x0000a7c7 0xfb common/libcommon.a(wmt_cmd_check_fastboot.o)
.debug_abbrev 0x0000a8c2 0xfb common/libcommon.a(wmt_cmd_recovery_mode.o)
.debug_abbrev 0x0000a9bd 0x15a common/libcommon.a(wmt_cmd_ac_ok.o)
.debug_abbrev 0x0000ab17 0xf6 common/libcommon.a(wmt_cmd_wmtfs.o)
.debug_abbrev 0x0000ac0d 0x13d common/libcommon.a(wmt_cmd_addfwcenv.o)
.debug_abbrev 0x0000ad4a 0x22c common/libcommon.a(hw_recovery.o)
.debug_abbrev 0x0000af76 0x248 common/libcommon.a(enter_fastboot_mode.o)
.debug_abbrev 0x0000b1be 0x3d0 common/libcommon.a(wmt_cmd_syncenv.o)
.debug_abbrev 0x0000b58e 0x134 common/libcommon.a(aes.o)
.debug_abbrev 0x0000b6c2 0x161 common/libcommon.a(cmd_aes.o)
.debug_abbrev 0x0000b823 0x2d9 common/libcommon.a(wmt_efuse.o)
.debug_abbrev 0x0000bafc 0x1f1 common/libcommon.a(wmt_cmd_efuse.o)
.debug_abbrev 0x0000bced 0x30d common/libcommon.a(wmt_dual_boot.o)
.debug_abbrev 0x0000bffa 0x14 common/libcommon.a(display_aligment.o)
.debug_abbrev 0x0000c00e 0x249 common/libcommon.a(rsa_verify.o)
.debug_abbrev 0x0000c257 0x2ba common/libcommon.a(bignum.o)
.debug_abbrev 0x0000c511 0x236 common/libcommon.a(pwm.o)
.debug_abbrev 0x0000c747 0x431 common/libcommon.a(scl.o)
.debug_abbrev 0x0000cb78 0x40d common/libcommon.a(govrh.o)
.debug_abbrev 0x0000cf85 0x329 common/libcommon.a(vout.o)
.debug_abbrev 0x0000d2ae 0x3e2 common/libcommon.a(lcd.o)
.debug_abbrev 0x0000d690 0x1f8 common/libcommon.a(lvds.o)
.debug_abbrev 0x0000d888 0x31b common/libcommon.a(vpp.o)
.debug_abbrev 0x0000dba3 0x479 common/libcommon.a(hdmi.o)
.debug_abbrev 0x0000e01c 0x35e common/libcommon.a(parse-edid.o)
.debug_abbrev 0x0000e37a 0x3eb common/libcommon.a(vout-wmt.o)
.debug_abbrev 0x0000e765 0x18c common/libcommon.a(lcd-oem.o)
.debug_abbrev 0x0000e8f1 0x113 common/libcommon.a(lcd-AUO-A080SN01.o)
.debug_abbrev 0x0000ea04 0x113 common/libcommon.a(lcd-INNOLUX-AT070TN83.o)
.debug_abbrev 0x0000eb17 0x113 common/libcommon.a(lcd-CHILIN-LW700at9003.o)
.debug_abbrev 0x0000ec2a 0x113 common/libcommon.a(lcd-EKING-EK08009-70135.o)
.debug_abbrev 0x0000ed3d 0x113 common/libcommon.a(lcd-HANNSTAR-HSD101PFW2.o)
.debug_abbrev 0x0000ee50 0x113 common/libcommon.a(lcd-lvds-1024x600.o)
.debug_abbrev 0x0000ef63 0x33b common/libcommon.a(vt1625.o)
.debug_abbrev 0x0000f29e 0x240 common/libcommon.a(vt1632.o)
.debug_abbrev 0x0000f4de 0xa3 common/libcommon.a(sil902x.o)
.debug_abbrev 0x0000f581 0x23a common/libcommon.a(lcd-setup.o)
.debug_abbrev 0x0000f7bb 0x32a common/libcommon.a(vpp-osif.o)
.debug_abbrev 0x0000fae5 0x237 common/libcommon.a(sw_i2c.o)
.debug_abbrev 0x0000fd1c 0x90 lib_generic/libgeneric.a(crc32.o)
.debug_abbrev 0x0000fdac 0x53 lib_generic/libgeneric.a(ctype.o)
.debug_abbrev 0x0000fdff 0xc3 lib_generic/libgeneric.a(display_options.o)
.debug_abbrev 0x0000fec2 0x1d7 lib_generic/libgeneric.a(string.o)
.debug_abbrev 0x00010099 0x1b4 lib_generic/libgeneric.a(vsprintf.o)
.debug_abbrev 0x0001024d 0x17b lib_generic/libgeneric.a(gunzip.o)
.debug_abbrev 0x000103c8 0x2ed lib_generic/libgeneric.a(zlib.o)
.debug_abbrev 0x000106b5 0x108 board/wmt/libwmt.a(wmt.o)
.debug_abbrev 0x000107bd 0x205 board/wmt/libwmt.a(flash.o)
.debug_abbrev 0x000109c2 0x63 board/wmt/libwmt.a(main.o)
.debug_abbrev 0x00010a25 0x302 board/wmt/libwmt.a(spi_flash.o)
.debug_abbrev 0x00010d27 0x100 board/wmt/libwmt.a(nand_flash.o)
.debug_abbrev 0x00010e27 0x398 board/wmt/libwmt.a(ehci-hcd.o)
.debug_abbrev 0x000111bf 0x327 board/wmt/libwmt.a(usb_uhci.o)
.debug_abbrev 0x000114e6 0x17e board/wmt/libwmt.a(snd-vt1603.o)
.debug_abbrev 0x00011664 0xc3 board/wmt/libwmt.a(spi_flash_lock.o)
.debug_abbrev 0x00011727 0x161 cpu/arm920t/libarm920t.a(cpu.o)
.debug_abbrev 0x00011888 0x17e cpu/arm920t/wmt/libwmt.a(serial.o)
.debug_abbrev 0x00011a06 0x23c cpu/arm920t/wmt/libwmt.a(dma.o)
.debug_abbrev 0x00011c42 0x15f cpu/arm920t/wmt/libwmt.a(cypherif.o)
.debug_abbrev 0x00011da1 0x3d7 cpu/arm920t/wmt/libwmt.a(mmc.o)
.debug_abbrev 0x00012178 0x245 cpu/arm920t/wmt/libwmt.a(cypher.o)
.debug_abbrev 0x000123bd 0x14 lib_arm/libarm.a(memcpy.o)
.debug_abbrev 0x000123d1 0x14 lib_arm/libarm.a(memset.o)
.debug_abbrev 0x000123e5 0x2c6 lib_arm/libarm.a(armlinux.o)
.debug_abbrev 0x000126ab 0x4e lib_arm/libarm.a(cache.o)
.debug_abbrev 0x000126f9 0xf5 lib_arm/libarm.a(qsort.o)
.debug_abbrev 0x000127ee 0x271 lib_arm/libarm.a(hashtable.o)
.debug_abbrev 0x00012a5f 0x30 lib_arm/libarm.a(errno.o)
.debug_abbrev 0x00012a8f 0x42e fs/fat/libfat.a(fat.o)
.debug_abbrev 0x00012ebd 0x183 disk/libdisk.a(part.o)
.debug_abbrev 0x00013040 0x342 disk/libdisk.a(part_dos.o)
.debug_abbrev 0x00013382 0x2ad drivers/libdrivers.a(usbdcore.o)
.debug_abbrev 0x0001362f 0x453 drivers/libdrivers.a(wmt_udc.o)
.debug_abbrev 0x00013a82 0x195 drivers/libdrivers.a(usb_ether.o)
.debug_abbrev 0x00013c17 0x3f2 drivers/libdrivers.a(r8152.o)
.debug_abbrev 0x00014009 0x30f drivers/libdrivers.a(asix.o)
.debug_abbrev 0x00014318 0x124 cpu/arm920t/wmt/libwmt.a(zde.o)
.debug_line 0x00000000 0x19958
*(.debug_line)
.debug_line 0x00000000 0xf8 cpu/arm920t/start.o
.debug_line 0x000000f8 0x76 board/wmt/libwmt.a(poweroff.o)
.debug_line 0x0000016e 0x24e board/wmt/libwmt.a(wmt_battery.o)
.debug_line 0x000003bc 0x280 board/wmt/libwmt.a(g2214_charger.o)
.debug_line 0x0000063c 0x1a1 board/wmt/libwmt.a(mp2625_charger.o)
.debug_line 0x000007dd 0x498 board/wmt/libwmt.a(ug31xx_boot.o)
.debug_line 0x00000c75 0x13a board/wmt/libwmt.a(ug31xx_boot_i2c.o)
.debug_line 0x00000daf 0x308 board/wmt/libwmt.a(vt1603_battery.o)
.debug_line 0x000010b7 0x1f4 board/wmt/libwmt.a(sp2541_battery.o)
.debug_line 0x000012ab 0x16f board/wmt/libwmt.a(bq_battery_i2c.o)
.debug_line 0x0000141a 0x66 board/wmt/libwmt.a(lowlevel_init.o)
.debug_line 0x00001480 0x2b1 board/wmt/libwmt.a(wmt_clk.o)
.debug_line 0x00001731 0x23d board/wmt/libwmt.a(wmt_i2c.o)
.debug_line 0x0000196e 0x219 board/wmt/libwmt.a(wmt_i2c_1.o)
.debug_line 0x00001b87 0x219 board/wmt/libwmt.a(wmt_i2c_2.o)
.debug_line 0x00001da0 0x219 board/wmt/libwmt.a(wmt_i2c_3.o)
.debug_line 0x00001fb9 0x25b board/wmt/libwmt.a(wmt_spi_0.o)
.debug_line 0x00002214 0x159 board/wmt/libwmt.a(wmt_gpio.o)
.debug_line 0x0000236d 0x393 board/wmt/libwmt.a(uG31xx_API_Measurement.o)
.debug_line 0x00002700 0x132 board/wmt/libwmt.a(uG31xx_API_Otp.o)
.debug_line 0x00002832 0x37a board/wmt/libwmt.a(uG31xx_API_System.o)
.debug_line 0x00002bac 0x79 board/wmt/libwmt.a(wmt_ost.o)
.debug_line 0x00002c25 0xbd cpu/arm920t/libarm920t.a(interrupts.o)
.debug_line 0x00002ce2 0xf3 cpu/arm920t/wmt/libwmt.a(interrupts.o)
.debug_line 0x00002dd5 0x36c lib_arm/libarm.a(board.o)
.debug_line 0x00003141 0x493 net/libnet.a(net.o)
.debug_line 0x000035d4 0x23e net/libnet.a(tftp.o)
.debug_line 0x00003812 0x28a net/libnet.a(bootp.o)
.debug_line 0x00003a9c 0x11f net/libnet.a(rarp.o)
.debug_line 0x00003bbb 0x2b5 net/libnet.a(eth.o)
.debug_line 0x00003e70 0x283 common/libcommon.a(main.o)
.debug_line 0x000040f3 0x191 common/libcommon.a(cmd_autoscript.o)
.debug_line 0x00004284 0xfd common/libcommon.a(cmd_bdinfo.o)
.debug_line 0x00004381 0xbe common/libcommon.a(cmd_boot.o)
.debug_line 0x0000443f 0x2c0 common/libcommon.a(cmd_bootm.o)
.debug_line 0x000046ff 0xa4 common/libcommon.a(cmd_console.o)
.debug_line 0x000047a3 0x10a common/libcommon.a(cmd_mkfsfat.o)
.debug_line 0x000048ad 0x17b common/libcommon.a(cmd_fat.o)
.debug_line 0x00004a28 0x351 common/libcommon.a(cmd_flash.o)
.debug_line 0x00004d79 0x2a3 common/libcommon.a(cmd_load.o)
.debug_line 0x0000501c 0x335 common/libcommon.a(cmd_mem.o)
.debug_line 0x00005351 0x225 common/libcommon.a(cmd_mii.o)
.debug_line 0x00005576 0xb7 common/libcommon.a(cmd_misc.o)
.debug_line 0x0000562d 0x35f common/libcommon.a(cmd_mmc.o)
.debug_line 0x0000598c 0xf1 common/libcommon.a(cmd_dma.o)
.debug_line 0x00005a7d 0x2924 common/libcommon.a(cmd_nand.o)
.debug_line 0x000083a1 0x138 common/libcommon.a(cmd_net.o)
.debug_line 0x000084d9 0x361 common/libcommon.a(cmd_nvedit.o)
.debug_line 0x0000883a 0x3d8 common/libcommon.a(cmd_usb.o)
.debug_line 0x00008c12 0x1d2 common/libcommon.a(cmd_rsa.o)
.debug_line 0x00008de4 0x2f9 common/libcommon.a(command.o)
.debug_line 0x000090dd 0x284 common/libcommon.a(console.o)
.debug_line 0x00009361 0xa9 common/libcommon.a(devices.o)
.debug_line 0x0000940a 0x4a5 common/libcommon.a(dlmalloc.o)
.debug_line 0x000098af 0x198 common/libcommon.a(env_common.o)
.debug_line 0x00009a47 0x123 common/libcommon.a(env_flash.o)
.debug_line 0x00009b6a 0xfc common/libcommon.a(exports.o)
.debug_line 0x00009c66 0x2ed common/libcommon.a(env_otp.o)
.debug_line 0x00009f53 0xc1 common/libcommon.a(wmt-ost.o)
.debug_line 0x0000a014 0x27c common/libcommon.a(lcd-mipi-ssd2828.o)
.debug_line 0x0000a290 0x235 common/libcommon.a(wmt_cmd_display.o)
.debug_line 0x0000a4c5 0x984 common/libcommon.a(minivgui.o)
.debug_line 0x0000ae49 0x1b0 common/libcommon.a(uboot-vpp.o)
.debug_line 0x0000aff9 0xf0 common/libcommon.a(cmd_mbit.o)
.debug_line 0x0000b0e9 0x18b common/libcommon.a(cmd_textout.o)
.debug_line 0x0000b274 0x141 common/libcommon.a(env_parse.o)
.debug_line 0x0000b3b5 0x606 common/libcommon.a(charge_animation.o)
.debug_line 0x0000b9bb 0x173 common/libcommon.a(flash.o)
.debug_line 0x0000bb2e 0x67a common/libcommon.a(hush.o)
.debug_line 0x0000c1a8 0x123 common/libcommon.a(lists.o)
.debug_line 0x0000c2cb 0x187 common/libcommon.a(miiphyutil.o)
.debug_line 0x0000c452 0x552 common/libcommon.a(usb.o)
.debug_line 0x0000c9a4 0x502 common/libcommon.a(usb_storage.o)
.debug_line 0x0000cea6 0xb13 common/libcommon.a(cmd_fastboot.o)
.debug_line 0x0000d9b9 0x155 common/libcommon.a(sparse.o)
.debug_line 0x0000db0e 0x265 common/libcommon.a(mmc_ext4.o)
.debug_line 0x0000dd73 0x7d common/libcommon.a(wmt_cmd_check_fastboot.o)
.debug_line 0x0000ddf0 0x7c common/libcommon.a(wmt_cmd_recovery_mode.o)
.debug_line 0x0000de6c 0x9a common/libcommon.a(wmt_cmd_ac_ok.o)
.debug_line 0x0000df06 0xd7 common/libcommon.a(wmt_cmd_wmtfs.o)
.debug_line 0x0000dfdd 0x100 common/libcommon.a(wmt_cmd_addfwcenv.o)
.debug_line 0x0000e0dd 0x1e3 common/libcommon.a(hw_recovery.o)
.debug_line 0x0000e2c0 0x162 common/libcommon.a(enter_fastboot_mode.o)
.debug_line 0x0000e422 0x1f7 common/libcommon.a(wmt_cmd_syncenv.o)
.debug_line 0x0000e619 0x5b9 common/libcommon.a(aes.o)
.debug_line 0x0000ebd2 0x140 common/libcommon.a(cmd_aes.o)
.debug_line 0x0000ed12 0x523 common/libcommon.a(wmt_efuse.o)
.debug_line 0x0000f235 0x12c common/libcommon.a(wmt_cmd_efuse.o)
.debug_line 0x0000f361 0x4b3 common/libcommon.a(wmt_dual_boot.o)
.debug_line 0x0000f814 0x1c1 common/libcommon.a(display_aligment.o)
.debug_line 0x0000f9d5 0x392 common/libcommon.a(rsa_verify.o)
.debug_line 0x0000fd67 0x91e common/libcommon.a(bignum.o)
.debug_line 0x00010685 0x18a common/libcommon.a(pwm.o)
.debug_line 0x0001080f 0x681 common/libcommon.a(scl.o)
.debug_line 0x00010e90 0x5d4 common/libcommon.a(govrh.o)
.debug_line 0x00011464 0x3ee common/libcommon.a(vout.o)
.debug_line 0x00011852 0x20f common/libcommon.a(lcd.o)
.debug_line 0x00011a61 0xff common/libcommon.a(lvds.o)
.debug_line 0x00011b60 0x28b common/libcommon.a(vpp.o)
.debug_line 0x00011deb 0x5d8 common/libcommon.a(hdmi.o)
.debug_line 0x000123c3 0x4e0 common/libcommon.a(parse-edid.o)
.debug_line 0x000128a3 0x445 common/libcommon.a(vout-wmt.o)
.debug_line 0x00012ce8 0xca common/libcommon.a(lcd-oem.o)
.debug_line 0x00012db2 0xb0 common/libcommon.a(lcd-AUO-A080SN01.o)
.debug_line 0x00012e62 0xb5 common/libcommon.a(lcd-INNOLUX-AT070TN83.o)
.debug_line 0x00012f17 0xbd common/libcommon.a(lcd-CHILIN-LW700at9003.o)
.debug_line 0x00012fd4 0xbd common/libcommon.a(lcd-EKING-EK08009-70135.o)
.debug_line 0x00013091 0xbd common/libcommon.a(lcd-HANNSTAR-HSD101PFW2.o)
.debug_line 0x0001314e 0xb1 common/libcommon.a(lcd-lvds-1024x600.o)
.debug_line 0x000131ff 0x2a3 common/libcommon.a(vt1625.o)
.debug_line 0x000134a2 0x124 common/libcommon.a(vt1632.o)
.debug_line 0x000135c6 0x6f common/libcommon.a(sil902x.o)
.debug_line 0x00013635 0x19a common/libcommon.a(lcd-setup.o)
.debug_line 0x000137cf 0x257 common/libcommon.a(vpp-osif.o)
.debug_line 0x00013a26 0x1a2 common/libcommon.a(sw_i2c.o)
.debug_line 0x00013bc8 0x95 lib_generic/libgeneric.a(crc32.o)
.debug_line 0x00013c5d 0x5e lib_generic/libgeneric.a(ctype.o)
.debug_line 0x00013cbb 0x96 lib_generic/libgeneric.a(display_options.o)
.debug_line 0x00013d51 0x2d1 lib_generic/libgeneric.a(string.o)
.debug_line 0x00014022 0x2e3 lib_generic/libgeneric.a(vsprintf.o)
.debug_line 0x00014305 0xd1 lib_generic/libgeneric.a(gunzip.o)
.debug_line 0x000143d6 0x9b3 lib_generic/libgeneric.a(zlib.o)
.debug_line 0x00014d89 0xbd board/wmt/libwmt.a(wmt.o)
.debug_line 0x00014e46 0x137 board/wmt/libwmt.a(flash.o)
.debug_line 0x00014f7d 0x4f board/wmt/libwmt.a(main.o)
.debug_line 0x00014fcc 0x2d7 board/wmt/libwmt.a(spi_flash.o)
.debug_line 0x000152a3 0xc1 board/wmt/libwmt.a(nand_flash.o)
.debug_line 0x00015364 0x45c board/wmt/libwmt.a(ehci-hcd.o)
.debug_line 0x000157c0 0x471 board/wmt/libwmt.a(usb_uhci.o)
.debug_line 0x00015c31 0x160 board/wmt/libwmt.a(snd-vt1603.o)
.debug_line 0x00015d91 0xe8 board/wmt/libwmt.a(spi_flash_lock.o)
.debug_line 0x00015e79 0xd3 cpu/arm920t/libarm920t.a(cpu.o)
.debug_line 0x00015f4c 0x131 cpu/arm920t/wmt/libwmt.a(serial.o)
.debug_line 0x0001607d 0x30c cpu/arm920t/wmt/libwmt.a(dma.o)
.debug_line 0x00016389 0xd8 cpu/arm920t/wmt/libwmt.a(cypherif.o)
.debug_line 0x00016461 0x80d cpu/arm920t/wmt/libwmt.a(mmc.o)
.debug_line 0x00016c6e 0x130 cpu/arm920t/wmt/libwmt.a(cypher.o)
.debug_line 0x00016d9e 0xb6 lib_arm/libarm.a(memcpy.o)
.debug_line 0x00016e54 0x8e lib_arm/libarm.a(memset.o)
.debug_line 0x00016ee2 0x23c lib_arm/libarm.a(armlinux.o)
.debug_line 0x0001711e 0x38 lib_arm/libarm.a(cache.o)
.debug_line 0x00017156 0xee lib_arm/libarm.a(qsort.o)
.debug_line 0x00017244 0x368 lib_arm/libarm.a(hashtable.o)
.debug_line 0x000175ac 0x28 lib_arm/libarm.a(errno.o)
.debug_line 0x000175d4 0xbee fs/fat/libfat.a(fat.o)
.debug_line 0x000181c2 0x130 disk/libdisk.a(part.o)
.debug_line 0x000182f2 0x48e disk/libdisk.a(part_dos.o)
.debug_line 0x00018780 0x1d0 drivers/libdrivers.a(usbdcore.o)
.debug_line 0x00018950 0x5ab drivers/libdrivers.a(wmt_udc.o)
.debug_line 0x00018efb 0x169 drivers/libdrivers.a(usb_ether.o)
.debug_line 0x00019064 0x5fb drivers/libdrivers.a(r8152.o)
.debug_line 0x0001965f 0x2a8 drivers/libdrivers.a(asix.o)
.debug_line 0x00019907 0x51 cpu/arm920t/wmt/libwmt.a(zde.o)
.debug_frame 0x00000000 0xc83c
*(.debug_frame)
.debug_frame 0x00000000 0x20 board/wmt/libwmt.a(poweroff.o)
.debug_frame 0x00000020 0x1a0 board/wmt/libwmt.a(wmt_battery.o)
.debug_frame 0x000001c0 0x14c board/wmt/libwmt.a(g2214_charger.o)
.debug_frame 0x0000030c 0xb4 board/wmt/libwmt.a(mp2625_charger.o)
.debug_frame 0x000003c0 0x1e8 board/wmt/libwmt.a(ug31xx_boot.o)
.debug_frame 0x000005a8 0xa8 board/wmt/libwmt.a(ug31xx_boot_i2c.o)
.debug_frame 0x00000650 0x1c0 board/wmt/libwmt.a(vt1603_battery.o)
.debug_frame 0x00000810 0xf8 board/wmt/libwmt.a(sp2541_battery.o)
.debug_frame 0x00000908 0xbc board/wmt/libwmt.a(bq_battery_i2c.o)
.debug_frame 0x000009c4 0xcc board/wmt/libwmt.a(wmt_clk.o)
.debug_frame 0x00000a90 0x114 board/wmt/libwmt.a(wmt_i2c.o)
.debug_frame 0x00000ba4 0xfc board/wmt/libwmt.a(wmt_i2c_1.o)
.debug_frame 0x00000ca0 0xfc board/wmt/libwmt.a(wmt_i2c_2.o)
.debug_frame 0x00000d9c 0xfc board/wmt/libwmt.a(wmt_i2c_3.o)
.debug_frame 0x00000e98 0x108 board/wmt/libwmt.a(wmt_spi_0.o)
.debug_frame 0x00000fa0 0x134 board/wmt/libwmt.a(wmt_gpio.o)
.debug_frame 0x000010d4 0x2c8 board/wmt/libwmt.a(uG31xx_API_Measurement.o)
.debug_frame 0x0000139c 0x1bc board/wmt/libwmt.a(uG31xx_API_Otp.o)
.debug_frame 0x00001558 0x350 board/wmt/libwmt.a(uG31xx_API_System.o)
.debug_frame 0x000018a8 0x60 board/wmt/libwmt.a(wmt_ost.o)
.debug_frame 0x00001908 0x110 cpu/arm920t/libarm920t.a(interrupts.o)
.debug_frame 0x00001a18 0x10c cpu/arm920t/wmt/libwmt.a(interrupts.o)
.debug_frame 0x00001b24 0x114 lib_arm/libarm.a(board.o)
.debug_frame 0x00001c38 0x33c net/libnet.a(net.o)
.debug_frame 0x00001f74 0x98 net/libnet.a(tftp.o)
.debug_frame 0x0000200c 0xfc net/libnet.a(bootp.o)
.debug_frame 0x00002108 0x60 net/libnet.a(rarp.o)
.debug_frame 0x00002168 0x210 net/libnet.a(eth.o)
.debug_frame 0x00002378 0xbc common/libcommon.a(main.o)
.debug_frame 0x00002434 0x58 common/libcommon.a(cmd_autoscript.o)
.debug_frame 0x0000248c 0x38 common/libcommon.a(cmd_bdinfo.o)
.debug_frame 0x000024c4 0x2c common/libcommon.a(cmd_boot.o)
.debug_frame 0x000024f0 0x80 common/libcommon.a(cmd_bootm.o)
.debug_frame 0x00002570 0x30 common/libcommon.a(cmd_console.o)
.debug_frame 0x000025a0 0x64 common/libcommon.a(cmd_mkfsfat.o)
.debug_frame 0x00002604 0xc0 common/libcommon.a(cmd_fat.o)
.debug_frame 0x000026c4 0x14c common/libcommon.a(cmd_flash.o)
.debug_frame 0x00002810 0x154 common/libcommon.a(cmd_load.o)
.debug_frame 0x00002964 0x19c common/libcommon.a(cmd_mem.o)
.debug_frame 0x00002b00 0x80 common/libcommon.a(cmd_mii.o)
.debug_frame 0x00002b80 0x30 common/libcommon.a(cmd_misc.o)
.debug_frame 0x00002bb0 0x154 common/libcommon.a(cmd_mmc.o)
.debug_frame 0x00002d04 0x4c common/libcommon.a(cmd_dma.o)
.debug_frame 0x00002d50 0x12bc common/libcommon.a(cmd_nand.o)
.debug_frame 0x0000400c 0x80 common/libcommon.a(cmd_net.o)
.debug_frame 0x0000408c 0x148 common/libcommon.a(cmd_nvedit.o)
.debug_frame 0x000041d4 0x184 common/libcommon.a(cmd_usb.o)
.debug_frame 0x00004358 0x58 common/libcommon.a(cmd_rsa.o)
.debug_frame 0x000043b0 0x154 common/libcommon.a(command.o)
.debug_frame 0x00004504 0x228 common/libcommon.a(console.o)
.debug_frame 0x0000472c 0x58 common/libcommon.a(devices.o)
.debug_frame 0x00004784 0x130 common/libcommon.a(dlmalloc.o)
.debug_frame 0x000048b4 0xdc common/libcommon.a(env_common.o)
.debug_frame 0x00004990 0x58 common/libcommon.a(env_flash.o)
.debug_frame 0x000049e8 0x48 common/libcommon.a(exports.o)
.debug_frame 0x00004a30 0x16c common/libcommon.a(env_otp.o)
.debug_frame 0x00004b9c 0x78 common/libcommon.a(wmt-ost.o)
.debug_frame 0x00004c14 0x130 common/libcommon.a(lcd-mipi-ssd2828.o)
.debug_frame 0x00004d44 0xfc common/libcommon.a(wmt_cmd_display.o)
.debug_frame 0x00004e40 0x39c common/libcommon.a(minivgui.o)
.debug_frame 0x000051dc 0x68 common/libcommon.a(uboot-vpp.o)
.debug_frame 0x00005244 0x4c common/libcommon.a(cmd_mbit.o)
.debug_frame 0x00005290 0x4c common/libcommon.a(cmd_textout.o)
.debug_frame 0x000052dc 0x8c common/libcommon.a(env_parse.o)
.debug_frame 0x00005368 0x1d8 common/libcommon.a(charge_animation.o)
.debug_frame 0x00005540 0x84 common/libcommon.a(flash.o)
.debug_frame 0x000055c4 0x334 common/libcommon.a(hush.o)
.debug_frame 0x000058f8 0x138 common/libcommon.a(lists.o)
.debug_frame 0x00005a30 0x150 common/libcommon.a(miiphyutil.o)
.debug_frame 0x00005b80 0x4e4 common/libcommon.a(usb.o)
.debug_frame 0x00006064 0x23c common/libcommon.a(usb_storage.o)
.debug_frame 0x000062a0 0x454 common/libcommon.a(cmd_fastboot.o)
.debug_frame 0x000066f4 0x5c common/libcommon.a(sparse.o)
.debug_frame 0x00006750 0xfc common/libcommon.a(mmc_ext4.o)
.debug_frame 0x0000684c 0x20 common/libcommon.a(wmt_cmd_check_fastboot.o)
.debug_frame 0x0000686c 0x20 common/libcommon.a(wmt_cmd_recovery_mode.o)
.debug_frame 0x0000688c 0x28 common/libcommon.a(wmt_cmd_ac_ok.o)
.debug_frame 0x000068b4 0x50 common/libcommon.a(wmt_cmd_wmtfs.o)
.debug_frame 0x00006904 0x74 common/libcommon.a(wmt_cmd_addfwcenv.o)
.debug_frame 0x00006978 0x7c common/libcommon.a(hw_recovery.o)
.debug_frame 0x000069f4 0x7c common/libcommon.a(enter_fastboot_mode.o)
.debug_frame 0x00006a70 0xec common/libcommon.a(wmt_cmd_syncenv.o)
.debug_frame 0x00006b5c 0xd0 common/libcommon.a(aes.o)
.debug_frame 0x00006c2c 0x38 common/libcommon.a(cmd_aes.o)
.debug_frame 0x00006c64 0x1e4 common/libcommon.a(wmt_efuse.o)
.debug_frame 0x00006e48 0x54 common/libcommon.a(wmt_cmd_efuse.o)
.debug_frame 0x00006e9c 0x150 common/libcommon.a(wmt_dual_boot.o)
.debug_frame 0x00006fec 0x190 common/libcommon.a(rsa_verify.o)
.debug_frame 0x0000717c 0x510 common/libcommon.a(bignum.o)
.debug_frame 0x0000768c 0x138 common/libcommon.a(pwm.o)
.debug_frame 0x000077c4 0x604 common/libcommon.a(scl.o)
.debug_frame 0x00007dc8 0x6b4 common/libcommon.a(govrh.o)
.debug_frame 0x0000847c 0x320 common/libcommon.a(vout.o)
.debug_frame 0x0000879c 0x1bc common/libcommon.a(lcd.o)
.debug_frame 0x00008958 0xbc common/libcommon.a(lvds.o)
.debug_frame 0x00008a14 0x264 common/libcommon.a(vpp.o)
.debug_frame 0x00008c78 0x420 common/libcommon.a(hdmi.o)
.debug_frame 0x00009098 0xf0 common/libcommon.a(parse-edid.o)
.debug_frame 0x00009188 0x32c common/libcommon.a(vout-wmt.o)
.debug_frame 0x000094b4 0x88 common/libcommon.a(lcd-oem.o)
.debug_frame 0x0000953c 0x40 common/libcommon.a(lcd-AUO-A080SN01.o)
.debug_frame 0x0000957c 0x50 common/libcommon.a(lcd-INNOLUX-AT070TN83.o)
.debug_frame 0x000095cc 0x50 common/libcommon.a(lcd-CHILIN-LW700at9003.o)
.debug_frame 0x0000961c 0x50 common/libcommon.a(lcd-EKING-EK08009-70135.o)
.debug_frame 0x0000966c 0x50 common/libcommon.a(lcd-HANNSTAR-HSD101PFW2.o)
.debug_frame 0x000096bc 0x40 common/libcommon.a(lcd-lvds-1024x600.o)
.debug_frame 0x000096fc 0x180 common/libcommon.a(vt1625.o)
.debug_frame 0x0000987c 0xdc common/libcommon.a(vt1632.o)
.debug_frame 0x00009958 0x20 common/libcommon.a(sil902x.o)
.debug_frame 0x00009978 0x68 common/libcommon.a(lcd-setup.o)
.debug_frame 0x000099e0 0x2d0 common/libcommon.a(vpp-osif.o)
.debug_frame 0x00009cb0 0x224 common/libcommon.a(sw_i2c.o)
.debug_frame 0x00009ed4 0x2c lib_generic/libgeneric.a(crc32.o)
.debug_frame 0x00009f00 0x48 lib_generic/libgeneric.a(display_options.o)
.debug_frame 0x00009f48 0x23c lib_generic/libgeneric.a(string.o)
.debug_frame 0x0000a184 0x12c lib_generic/libgeneric.a(vsprintf.o)
.debug_frame 0x0000a2b0 0x70 lib_generic/libgeneric.a(gunzip.o)
.debug_frame 0x0000a320 0x128 lib_generic/libgeneric.a(zlib.o)
.debug_frame 0x0000a448 0x58 board/wmt/libwmt.a(wmt.o)
.debug_frame 0x0000a4a0 0x9c board/wmt/libwmt.a(flash.o)
.debug_frame 0x0000a53c 0x20 board/wmt/libwmt.a(main.o)
.debug_frame 0x0000a55c 0x110 board/wmt/libwmt.a(spi_flash.o)
.debug_frame 0x0000a66c 0x60 board/wmt/libwmt.a(nand_flash.o)
.debug_frame 0x0000a6cc 0x254 board/wmt/libwmt.a(ehci-hcd.o)
.debug_frame 0x0000a920 0x22c board/wmt/libwmt.a(usb_uhci.o)
.debug_frame 0x0000ab4c 0x70 board/wmt/libwmt.a(snd-vt1603.o)
.debug_frame 0x0000abbc 0x30 board/wmt/libwmt.a(spi_flash_lock.o)
.debug_frame 0x0000abec 0xcc cpu/arm920t/libarm920t.a(cpu.o)
.debug_frame 0x0000acb8 0x80 cpu/arm920t/wmt/libwmt.a(serial.o)
.debug_frame 0x0000ad38 0x224 cpu/arm920t/wmt/libwmt.a(dma.o)
.debug_frame 0x0000af5c 0x94 cpu/arm920t/wmt/libwmt.a(cypherif.o)
.debug_frame 0x0000aff0 0x3f4 cpu/arm920t/wmt/libwmt.a(mmc.o)
.debug_frame 0x0000b3e4 0xf8 cpu/arm920t/wmt/libwmt.a(cypher.o)
.debug_frame 0x0000b4dc 0xa8 lib_arm/libarm.a(armlinux.o)
.debug_frame 0x0000b584 0x20 lib_arm/libarm.a(cache.o)
.debug_frame 0x0000b5a4 0x4c lib_arm/libarm.a(qsort.o)
.debug_frame 0x0000b5f0 0x138 lib_arm/libarm.a(hashtable.o)
.debug_frame 0x0000b728 0x430 fs/fat/libfat.a(fat.o)
.debug_frame 0x0000bb58 0xb8 disk/libdisk.a(part.o)
.debug_frame 0x0000bc10 0x1f4 disk/libdisk.a(part_dos.o)
.debug_frame 0x0000be04 0x200 drivers/libdrivers.a(usbdcore.o)
.debug_frame 0x0000c004 0x2c0 drivers/libdrivers.a(wmt_udc.o)
.debug_frame 0x0000c2c4 0x50 drivers/libdrivers.a(usb_ether.o)
.debug_frame 0x0000c314 0x1e4 drivers/libdrivers.a(r8152.o)
.debug_frame 0x0000c4f8 0x20c drivers/libdrivers.a(asix.o)
.debug_frame 0x0000c704 0x30 cpu/arm920t/wmt/libwmt.a(zde.o)
.debug_frame 0x0000c734 0x20 /mnt/backup/common/arm_201103_gcc4.5.2/bin/../lib/gcc/arm-none-linux-gnueabi/4.5.2/libgcc.a(_udivsi3.o)
.debug_frame 0x0000c754 0x20 /mnt/backup/common/arm_201103_gcc4.5.2/bin/../lib/gcc/arm-none-linux-gnueabi/4.5.2/libgcc.a(_divsi3.o)
.debug_frame 0x0000c774 0x50 /mnt/backup/common/arm_201103_gcc4.5.2/bin/../lib/gcc/arm-none-linux-gnueabi/4.5.2/libgcc.a(bpabi.o)
.debug_frame 0x0000c7c4 0x3c /mnt/backup/common/arm_201103_gcc4.5.2/bin/../lib/gcc/arm-none-linux-gnueabi/4.5.2/libgcc.a(_divdi3.o)
.debug_frame 0x0000c800 0x3c /mnt/backup/common/arm_201103_gcc4.5.2/bin/../lib/gcc/arm-none-linux-gnueabi/4.5.2/libgcc.a(_udivdi3.o)
.debug_str 0x00000000 0x1893d
*(.debug_str)
.debug_str 0x00000000 0xdb board/wmt/libwmt.a(poweroff.o)
0x12d (size before relaxing)
.debug_str 0x000000db 0x10e0 board/wmt/libwmt.a(wmt_battery.o)
0x12b9 (size before relaxing)
.debug_str 0x000011bb 0x27c board/wmt/libwmt.a(g2214_charger.o)
0x559 (size before relaxing)
.debug_str 0x00001437 0xc8 board/wmt/libwmt.a(mp2625_charger.o)
0x1058 (size before relaxing)
.debug_str 0x000014ff 0xe26 board/wmt/libwmt.a(ug31xx_boot.o)
0x1039 (size before relaxing)
.debug_str 0x00002325 0x93 board/wmt/libwmt.a(ug31xx_boot_i2c.o)
0x1ec (size before relaxing)
.debug_str 0x000023b8 0x5a3 board/wmt/libwmt.a(vt1603_battery.o)
0x777 (size before relaxing)
.debug_str 0x0000295b 0x100 board/wmt/libwmt.a(sp2541_battery.o)
0x2d9 (size before relaxing)
.debug_str 0x00002a5b 0xd0 board/wmt/libwmt.a(bq_battery_i2c.o)
0x245 (size before relaxing)
.debug_str 0x00002b2b 0x17c board/wmt/libwmt.a(wmt_clk.o)
0x579 (size before relaxing)
.debug_str 0x00002ca7 0x1e4 board/wmt/libwmt.a(wmt_i2c.o)
0x62e (size before relaxing)
.debug_str 0x00002e8b 0x61 board/wmt/libwmt.a(wmt_i2c_1.o)
0x61e (size before relaxing)
.debug_str 0x00002eec 0x61 board/wmt/libwmt.a(wmt_i2c_2.o)
0x61e (size before relaxing)
.debug_str 0x00002f4d 0x61 board/wmt/libwmt.a(wmt_i2c_3.o)
0x61e (size before relaxing)
.debug_str 0x00002fae 0x226 board/wmt/libwmt.a(wmt_spi_0.o)
0x654 (size before relaxing)
.debug_str 0x000031d4 0x143 board/wmt/libwmt.a(wmt_gpio.o)
0xf25 (size before relaxing)
.debug_str 0x00003317 0x375 board/wmt/libwmt.a(uG31xx_API_Measurement.o)
0xe78 (size before relaxing)
.debug_str 0x0000368c 0x167 board/wmt/libwmt.a(uG31xx_API_Otp.o)
0x3eb (size before relaxing)
.debug_str 0x000037f3 0x2ad board/wmt/libwmt.a(uG31xx_API_System.o)
0xb7a (size before relaxing)
.debug_str 0x00003aa0 0x92 board/wmt/libwmt.a(wmt_ost.o)
0x160 (size before relaxing)
.debug_str 0x00003b32 0xf5 cpu/arm920t/libarm920t.a(interrupts.o)
0x195 (size before relaxing)
.debug_str 0x00003c27 0xa1b cpu/arm920t/wmt/libwmt.a(interrupts.o)
0xb0d (size before relaxing)
.debug_str 0x00004642 0xaab lib_arm/libarm.a(board.o)
0xbde (size before relaxing)
.debug_str 0x000050ed 0x5f2 net/libnet.a(net.o)
0x80d (size before relaxing)
.debug_str 0x000056df 0xec net/libnet.a(tftp.o)
0x271 (size before relaxing)
.debug_str 0x000057cb 0x16e net/libnet.a(bootp.o)
0x3d6 (size before relaxing)
.debug_str 0x00005939 0x4c net/libnet.a(rarp.o)
0x193 (size before relaxing)
.debug_str 0x00005985 0x254 net/libnet.a(eth.o)
0x42b (size before relaxing)
.debug_str 0x00005bd9 0x123 common/libcommon.a(main.o)
0x99f (size before relaxing)
.debug_str 0x00005cfc 0xc2 common/libcommon.a(cmd_autoscript.o)
0x224 (size before relaxing)
.debug_str 0x00005dbe 0x35 common/libcommon.a(cmd_bdinfo.o)
0x21f (size before relaxing)
.debug_str 0x00005df3 0x34 common/libcommon.a(cmd_boot.o)
0x153 (size before relaxing)
.debug_str 0x00005e27 0xe1 common/libcommon.a(cmd_bootm.o)
0x3c5 (size before relaxing)
.debug_str 0x00005f08 0xad common/libcommon.a(cmd_console.o)
0x1f2 (size before relaxing)
.debug_str 0x00005fb5 0x13a common/libcommon.a(cmd_mkfsfat.o)
0x2a8 (size before relaxing)
.debug_str 0x000060ef 0xb6 common/libcommon.a(cmd_fat.o)
0x281 (size before relaxing)
.debug_str 0x000061a5 0x17e common/libcommon.a(cmd_flash.o)
0x2fa (size before relaxing)
.debug_str 0x00006323 0x261 common/libcommon.a(cmd_load.o)
0x4a3 (size before relaxing)
.debug_str 0x00006584 0x216 common/libcommon.a(cmd_mem.o)
0x39f (size before relaxing)
.debug_str 0x0000679a 0x1a1 common/libcommon.a(cmd_mii.o)
0x33d (size before relaxing)
.debug_str 0x0000693b 0x27 common/libcommon.a(cmd_misc.o)
0x147 (size before relaxing)
.debug_str 0x00006962 0x313 common/libcommon.a(cmd_mmc.o)
0x56b (size before relaxing)
.debug_str 0x00006c75 0x298 common/libcommon.a(cmd_dma.o)
0x3ed (size before relaxing)
.debug_str 0x00006f0d 0x1c19 common/libcommon.a(cmd_nand.o)
0x20fe (size before relaxing)
.debug_str 0x00008b26 0xab common/libcommon.a(cmd_net.o)
0x295 (size before relaxing)
.debug_str 0x00008bd1 0x14e common/libcommon.a(cmd_nvedit.o)
0x3b5 (size before relaxing)
.debug_str 0x00008d1f 0x442 common/libcommon.a(cmd_usb.o)
0x79e (size before relaxing)
.debug_str 0x00009161 0x62 common/libcommon.a(cmd_rsa.o)
0x1b5 (size before relaxing)
.debug_str 0x000091c3 0x1e6 common/libcommon.a(command.o)
0x33e (size before relaxing)
.debug_str 0x000093a9 0x18a common/libcommon.a(console.o)
0x42a (size before relaxing)
.debug_str 0x00009533 0x34 common/libcommon.a(devices.o)
0x1be (size before relaxing)
.debug_str 0x00009567 0x286 common/libcommon.a(dlmalloc.o)
0x4ac (size before relaxing)
.debug_str 0x000097ed 0xb3 common/libcommon.a(env_common.o)
0x2dc (size before relaxing)
.debug_str 0x000098a0 0x60 common/libcommon.a(env_flash.o)
0x26a (size before relaxing)
.debug_str 0x00009900 0x1f common/libcommon.a(exports.o)
0x257 (size before relaxing)
.debug_str 0x0000991f 0x119 common/libcommon.a(env_otp.o)
0x428 (size before relaxing)
.debug_str 0x00009a38 0x4c common/libcommon.a(wmt-ost.o)
0x866 (size before relaxing)
.debug_str 0x00009a84 0x2fa common/libcommon.a(lcd-mipi-ssd2828.o)
0x1899 (size before relaxing)
.debug_str 0x00009d7e 0xb1a common/libcommon.a(wmt_cmd_display.o)
0x1629 (size before relaxing)
.debug_str 0x0000a898 0x5b1 common/libcommon.a(minivgui.o)
0x10b0 (size before relaxing)
.debug_str 0x0000ae49 0x119 common/libcommon.a(uboot-vpp.o)
0x193e (size before relaxing)
.debug_str 0x0000af62 0x4d common/libcommon.a(cmd_mbit.o)
0x870 (size before relaxing)
.debug_str 0x0000afaf 0x61 common/libcommon.a(cmd_textout.o)
0x92b (size before relaxing)
.debug_str 0x0000b010 0x71 common/libcommon.a(env_parse.o)
0x414 (size before relaxing)
.debug_str 0x0000b081 0x3c0 common/libcommon.a(charge_animation.o)
0xd6a (size before relaxing)
.debug_str 0x0000b441 0x55 common/libcommon.a(flash.o)
0x191 (size before relaxing)
.debug_str 0x0000b496 0x4b2 common/libcommon.a(hush.o)
0x78d (size before relaxing)
.debug_str 0x0000b948 0x1d5 common/libcommon.a(lists.o)
0x30d (size before relaxing)
.debug_str 0x0000bb1d 0x127 common/libcommon.a(miiphyutil.o)
0x236 (size before relaxing)
.debug_str 0x0000bc44 0x59e common/libcommon.a(usb.o)
0xacd (size before relaxing)
.debug_str 0x0000c1e2 0x41a common/libcommon.a(usb_storage.o)
0x9b6 (size before relaxing)
.debug_str 0x0000c5fc 0xe20 common/libcommon.a(cmd_fastboot.o)
0x1aca (size before relaxing)
.debug_str 0x0000d41c 0x123 common/libcommon.a(sparse.o)
0x219 (size before relaxing)
.debug_str 0x0000d53f 0x276 common/libcommon.a(mmc_ext4.o)
0x405 (size before relaxing)
.debug_str 0x0000d7b5 0x50 common/libcommon.a(wmt_cmd_check_fastboot.o)
0x15e (size before relaxing)
.debug_str 0x0000d805 0x51 common/libcommon.a(wmt_cmd_recovery_mode.o)
0x167 (size before relaxing)
.debug_str 0x0000d856 0x55 common/libcommon.a(wmt_cmd_ac_ok.o)
0x17d (size before relaxing)
.debug_str 0x0000d8ab 0x54 common/libcommon.a(wmt_cmd_wmtfs.o)
0x174 (size before relaxing)
.debug_str 0x0000d8ff 0x7f common/libcommon.a(wmt_cmd_addfwcenv.o)
0x1f3 (size before relaxing)
.debug_str 0x0000d97e 0x148 common/libcommon.a(hw_recovery.o)
0x1494 (size before relaxing)
.debug_str 0x0000dac6 0x169 common/libcommon.a(enter_fastboot_mode.o)
0x12ce (size before relaxing)
.debug_str 0x0000dc2f 0x1d7 common/libcommon.a(wmt_cmd_syncenv.o)
0x3a2 (size before relaxing)
.debug_str 0x0000de06 0x64 common/libcommon.a(aes.o)
0x181 (size before relaxing)
.debug_str 0x0000de6a 0x3c common/libcommon.a(cmd_aes.o)
0x1a6 (size before relaxing)
.debug_str 0x0000dea6 0x323 common/libcommon.a(wmt_efuse.o)
0x11ab (size before relaxing)
.debug_str 0x0000e1c9 0xae common/libcommon.a(wmt_cmd_efuse.o)
0x246 (size before relaxing)
.debug_str 0x0000e277 0x4fa common/libcommon.a(wmt_dual_boot.o)
0x1cf7 (size before relaxing)
.debug_str 0x0000e771 0x168 common/libcommon.a(rsa_verify.o)
0x2b7 (size before relaxing)
.debug_str 0x0000e8d9 0x22c common/libcommon.a(bignum.o)
0x334 (size before relaxing)
.debug_str 0x0000eb05 0x115 common/libcommon.a(pwm.o)
0x7a6 (size before relaxing)
.debug_str 0x0000ec1a 0x116f common/libcommon.a(scl.o)
0x2380 (size before relaxing)
.debug_str 0x0000fd89 0xbba common/libcommon.a(govrh.o)
0x21f1 (size before relaxing)
.debug_str 0x00010943 0x3e0 common/libcommon.a(vout.o)
0x1767 (size before relaxing)
.debug_str 0x00010d23 0x230 common/libcommon.a(lcd.o)
0x18b2 (size before relaxing)
.debug_str 0x00010f53 0x1fa common/libcommon.a(lvds.o)
0xd03 (size before relaxing)
.debug_str 0x0001114d 0x256 common/libcommon.a(vpp.o)
0x16f2 (size before relaxing)
.debug_str 0x000113a3 0xc50 common/libcommon.a(hdmi.o)
0x1d6d (size before relaxing)
.debug_str 0x00011ff3 0x2b7 common/libcommon.a(parse-edid.o)
0x1575 (size before relaxing)
.debug_str 0x000122aa 0x346 common/libcommon.a(vout-wmt.o)
0x1ba5 (size before relaxing)
.debug_str 0x000125f0 0x12f common/libcommon.a(lcd-oem.o)
0xaa0 (size before relaxing)
.debug_str 0x0001271f 0x76 common/libcommon.a(lcd-AUO-A080SN01.o)
0x9cc (size before relaxing)
.debug_str 0x00012795 0x97 common/libcommon.a(lcd-INNOLUX-AT070TN83.o)
0x9ed (size before relaxing)
.debug_str 0x0001282c 0xa3 common/libcommon.a(lcd-CHILIN-LW700at9003.o)
0x9f9 (size before relaxing)
.debug_str 0x000128cf 0x90 common/libcommon.a(lcd-EKING-EK08009-70135.o)
0x9e6 (size before relaxing)
.debug_str 0x0001295f 0x9f common/libcommon.a(lcd-HANNSTAR-HSD101PFW2.o)
0x9f5 (size before relaxing)
.debug_str 0x000129fe 0x8b common/libcommon.a(lcd-lvds-1024x600.o)
0x9e1 (size before relaxing)
.debug_str 0x00012a89 0x820 common/libcommon.a(vt1625.o)
0x1af5 (size before relaxing)
.debug_str 0x000132a9 0xd1 common/libcommon.a(vt1632.o)
0x1365 (size before relaxing)
.debug_str 0x0001337a 0x32 common/libcommon.a(sil902x.o)
0x2f9 (size before relaxing)
.debug_str 0x000133ac 0xd6 common/libcommon.a(lcd-setup.o)
0x926 (size before relaxing)
.debug_str 0x00013482 0x1de common/libcommon.a(vpp-osif.o)
0xabe (size before relaxing)
.debug_str 0x00013660 0x1bb common/libcommon.a(sw_i2c.o)
0xa33 (size before relaxing)
.debug_str 0x0001381b 0x53 lib_generic/libgeneric.a(crc32.o)
0xf3 (size before relaxing)
.debug_str 0x0001386e 0x8 lib_generic/libgeneric.a(ctype.o)
0x5f (size before relaxing)
.debug_str 0x00013876 0x2d lib_generic/libgeneric.a(display_options.o)
0x105 (size before relaxing)
.debug_str 0x000138a3 0xd5 lib_generic/libgeneric.a(string.o)
0x1e6 (size before relaxing)
.debug_str 0x00013978 0x82 lib_generic/libgeneric.a(vsprintf.o)
0x1ba (size before relaxing)
.debug_str 0x000139fa 0xd5 lib_generic/libgeneric.a(gunzip.o)
0x1db (size before relaxing)
.debug_str 0x00013acf 0x2af lib_generic/libgeneric.a(zlib.o)
0x57f (size before relaxing)
.debug_str 0x00013d7e 0x38 board/wmt/libwmt.a(wmt.o)
0x1d0 (size before relaxing)
.debug_str 0x00013db6 0x123 board/wmt/libwmt.a(flash.o)
0x2e8 (size before relaxing)
.debug_str 0x00013ed9 0x11 board/wmt/libwmt.a(main.o)
0x90 (size before relaxing)
.debug_str 0x00013eea 0x2df board/wmt/libwmt.a(spi_flash.o)
0x771 (size before relaxing)
.debug_str 0x000141c9 0x79 board/wmt/libwmt.a(nand_flash.o)
0x1a9 (size before relaxing)
.debug_str 0x00014242 0x83c board/wmt/libwmt.a(ehci-hcd.o)
0xeb9 (size before relaxing)
.debug_str 0x00014a7e 0x29e board/wmt/libwmt.a(usb_uhci.o)
0x790 (size before relaxing)
.debug_str 0x00014d1c 0x2c board/wmt/libwmt.a(snd-vt1603.o)
0x49c (size before relaxing)
.debug_str 0x00014d48 0x2d board/wmt/libwmt.a(spi_flash_lock.o)
0x149 (size before relaxing)
.debug_str 0x00014d75 0x68 cpu/arm920t/libarm920t.a(cpu.o)
0x199 (size before relaxing)
.debug_str 0x00014ddd 0x2d3 cpu/arm920t/wmt/libwmt.a(serial.o)
0x484 (size before relaxing)
.debug_str 0x000150b0 0x3f8 cpu/arm920t/wmt/libwmt.a(dma.o)
0x788 (size before relaxing)
.debug_str 0x000154a8 0x1ad cpu/arm920t/wmt/libwmt.a(cypherif.o)
0x58d (size before relaxing)
.debug_str 0x00015655 0x745 cpu/arm920t/wmt/libwmt.a(mmc.o)
0xf69 (size before relaxing)
.debug_str 0x00015d9a 0x1bc cpu/arm920t/wmt/libwmt.a(cypher.o)
0x379 (size before relaxing)
.debug_str 0x00015f56 0x24e lib_arm/libarm.a(armlinux.o)
0x58c (size before relaxing)
.debug_str 0x000161a4 0x22 lib_arm/libarm.a(cache.o)
0xdc (size before relaxing)
.debug_str 0x000161c6 0x1b lib_arm/libarm.a(qsort.o)
0x10b (size before relaxing)
.debug_str 0x000161e1 0xb7 lib_arm/libarm.a(hashtable.o)
0x241 (size before relaxing)
.debug_str 0x00016298 0x8 lib_arm/libarm.a(errno.o)
0x3f (size before relaxing)
.debug_str 0x000162a0 0x79b fs/fat/libfat.a(fat.o)
0xae3 (size before relaxing)
.debug_str 0x00016a3b 0xae disk/libdisk.a(part.o)
0x234 (size before relaxing)
.debug_str 0x00016ae9 0x271 disk/libdisk.a(part_dos.o)
0x449 (size before relaxing)
.debug_str 0x00016d5a 0x2d8 drivers/libdrivers.a(usbdcore.o)
0xcac (size before relaxing)
.debug_str 0x00017032 0x1262 drivers/libdrivers.a(wmt_udc.o)
0x1e60 (size before relaxing)
.debug_str 0x00018294 0xc1 drivers/libdrivers.a(usb_ether.o)
0x610 (size before relaxing)
.debug_str 0x00018355 0x3bd drivers/libdrivers.a(r8152.o)
0x988 (size before relaxing)
.debug_str 0x00018712 0x17c drivers/libdrivers.a(asix.o)
0x750 (size before relaxing)
.debug_str 0x0001888e 0xaf cpu/arm920t/wmt/libwmt.a(zde.o)
0x19c (size before relaxing)
.debug_loc 0x00000000 0x51a97
*(.debug_loc)
.debug_loc 0x00000000 0x5c6 board/wmt/libwmt.a(wmt_battery.o)
.debug_loc 0x000005c6 0x43e board/wmt/libwmt.a(g2214_charger.o)
.debug_loc 0x00000a04 0x17f board/wmt/libwmt.a(mp2625_charger.o)
.debug_loc 0x00000b83 0x5e0 board/wmt/libwmt.a(ug31xx_boot.o)
.debug_loc 0x00001163 0x299 board/wmt/libwmt.a(ug31xx_boot_i2c.o)
.debug_loc 0x000013fc 0x71a board/wmt/libwmt.a(vt1603_battery.o)
.debug_loc 0x00001b16 0x488 board/wmt/libwmt.a(sp2541_battery.o)
.debug_loc 0x00001f9e 0x209 board/wmt/libwmt.a(bq_battery_i2c.o)
.debug_loc 0x000021a7 0x1242 board/wmt/libwmt.a(wmt_clk.o)
.debug_loc 0x000033e9 0x8b6 board/wmt/libwmt.a(wmt_i2c.o)
.debug_loc 0x00003c9f 0x7d9 board/wmt/libwmt.a(wmt_i2c_1.o)
.debug_loc 0x00004478 0x7d9 board/wmt/libwmt.a(wmt_i2c_2.o)
.debug_loc 0x00004c51 0x7d9 board/wmt/libwmt.a(wmt_i2c_3.o)
.debug_loc 0x0000542a 0x676 board/wmt/libwmt.a(wmt_spi_0.o)
.debug_loc 0x00005aa0 0x4d7 board/wmt/libwmt.a(wmt_gpio.o)
.debug_loc 0x00005f77 0xed7 board/wmt/libwmt.a(uG31xx_API_Measurement.o)
.debug_loc 0x00006e4e 0x11b board/wmt/libwmt.a(uG31xx_API_Otp.o)
.debug_loc 0x00006f69 0xc5f board/wmt/libwmt.a(uG31xx_API_System.o)
.debug_loc 0x00007bc8 0x126 board/wmt/libwmt.a(wmt_ost.o)
.debug_loc 0x00007cee 0x21d cpu/arm920t/libarm920t.a(interrupts.o)
.debug_loc 0x00007f0b 0x1f6 cpu/arm920t/wmt/libwmt.a(interrupts.o)
.debug_loc 0x00008101 0x65f lib_arm/libarm.a(board.o)
.debug_loc 0x00008760 0xe10 net/libnet.a(net.o)
.debug_loc 0x00009570 0x38c net/libnet.a(tftp.o)
.debug_loc 0x000098fc 0x44e net/libnet.a(bootp.o)
.debug_loc 0x00009d4a 0x12d net/libnet.a(rarp.o)
.debug_loc 0x00009e77 0x7e8 net/libnet.a(eth.o)
.debug_loc 0x0000a65f 0x97a common/libcommon.a(main.o)
.debug_loc 0x0000afd9 0x1fa common/libcommon.a(cmd_autoscript.o)
.debug_loc 0x0000b1d3 0xc8 common/libcommon.a(cmd_bdinfo.o)
.debug_loc 0x0000b29b 0x123 common/libcommon.a(cmd_boot.o)
.debug_loc 0x0000b3be 0x6d5 common/libcommon.a(cmd_bootm.o)
.debug_loc 0x0000ba93 0xc9 common/libcommon.a(cmd_console.o)
.debug_loc 0x0000bb5c 0x384 common/libcommon.a(cmd_mkfsfat.o)
.debug_loc 0x0000bee0 0x71a common/libcommon.a(cmd_fat.o)
.debug_loc 0x0000c5fa 0xeac common/libcommon.a(cmd_flash.o)
.debug_loc 0x0000d4a6 0x7bb common/libcommon.a(cmd_load.o)
.debug_loc 0x0000dc61 0x131b common/libcommon.a(cmd_mem.o)
.debug_loc 0x0000ef7c 0x905 common/libcommon.a(cmd_mii.o)
.debug_loc 0x0000f881 0xab common/libcommon.a(cmd_misc.o)
.debug_loc 0x0000f92c 0x1154 common/libcommon.a(cmd_mmc.o)
.debug_loc 0x00010a80 0x205 common/libcommon.a(cmd_dma.o)
.debug_loc 0x00010c85 0xc058 common/libcommon.a(cmd_nand.o)
.debug_loc 0x0001ccdd 0x24c common/libcommon.a(cmd_net.o)
.debug_loc 0x0001cf29 0x9f3 common/libcommon.a(cmd_nvedit.o)
.debug_loc 0x0001d91c 0xb2f common/libcommon.a(cmd_usb.o)
.debug_loc 0x0001e44b 0x3b7 common/libcommon.a(cmd_rsa.o)
.debug_loc 0x0001e802 0x110a common/libcommon.a(command.o)
.debug_loc 0x0001f90c 0x564 common/libcommon.a(console.o)
.debug_loc 0x0001fe70 0x8b common/libcommon.a(devices.o)
.debug_loc 0x0001fefb 0x14c4 common/libcommon.a(dlmalloc.o)
.debug_loc 0x000213bf 0x2ea common/libcommon.a(env_common.o)
.debug_loc 0x000216a9 0x33 common/libcommon.a(env_flash.o)
.debug_loc 0x000216dc 0x28 common/libcommon.a(exports.o)
.debug_loc 0x00021704 0x8a8 common/libcommon.a(env_otp.o)
.debug_loc 0x00021fac 0x174 common/libcommon.a(wmt-ost.o)
.debug_loc 0x00022120 0x3b1 common/libcommon.a(lcd-mipi-ssd2828.o)
.debug_loc 0x000224d1 0x4df common/libcommon.a(wmt_cmd_display.o)
.debug_loc 0x000229b0 0x297b common/libcommon.a(minivgui.o)
.debug_loc 0x0002532b 0x24d common/libcommon.a(uboot-vpp.o)
.debug_loc 0x00025578 0x164 common/libcommon.a(cmd_mbit.o)
.debug_loc 0x000256dc 0x2ac common/libcommon.a(cmd_textout.o)
.debug_loc 0x00025988 0x293 common/libcommon.a(env_parse.o)
.debug_loc 0x00025c1b 0x1439 common/libcommon.a(charge_animation.o)
.debug_loc 0x00027054 0x3be common/libcommon.a(flash.o)
.debug_loc 0x00027412 0x1cd0 common/libcommon.a(hush.o)
.debug_loc 0x000290e2 0x40e common/libcommon.a(lists.o)
.debug_loc 0x000294f0 0x6af common/libcommon.a(miiphyutil.o)
.debug_loc 0x00029b9f 0x1781 common/libcommon.a(usb.o)
.debug_loc 0x0002b320 0xe5f common/libcommon.a(usb_storage.o)
.debug_loc 0x0002c17f 0x1ff9 common/libcommon.a(cmd_fastboot.o)
.debug_loc 0x0002e178 0x2a5 common/libcommon.a(sparse.o)
.debug_loc 0x0002e41d 0x64c common/libcommon.a(mmc_ext4.o)
.debug_loc 0x0002ea69 0x39 common/libcommon.a(wmt_cmd_check_fastboot.o)
.debug_loc 0x0002eaa2 0x39 common/libcommon.a(wmt_cmd_recovery_mode.o)
.debug_loc 0x0002eadb 0xd9 common/libcommon.a(wmt_cmd_ac_ok.o)
.debug_loc 0x0002ebb4 0x237 common/libcommon.a(wmt_cmd_wmtfs.o)
.debug_loc 0x0002edeb 0x1f1 common/libcommon.a(wmt_cmd_addfwcenv.o)
.debug_loc 0x0002efdc 0x638 common/libcommon.a(hw_recovery.o)
.debug_loc 0x0002f614 0x273 common/libcommon.a(enter_fastboot_mode.o)
.debug_loc 0x0002f887 0xb2b common/libcommon.a(wmt_cmd_syncenv.o)
.debug_loc 0x000303b2 0xa25 common/libcommon.a(aes.o)
.debug_loc 0x00030dd7 0x1e0 common/libcommon.a(cmd_aes.o)
.debug_loc 0x00030fb7 0x10fc common/libcommon.a(wmt_efuse.o)
.debug_loc 0x000320b3 0x438 common/libcommon.a(wmt_cmd_efuse.o)
.debug_loc 0x000324eb 0xffc common/libcommon.a(wmt_dual_boot.o)
.debug_loc 0x000334e7 0xd59 common/libcommon.a(rsa_verify.o)
.debug_loc 0x00034240 0x28d2 common/libcommon.a(bignum.o)
.debug_loc 0x00036b12 0x514 common/libcommon.a(pwm.o)
.debug_loc 0x00037026 0xdfc common/libcommon.a(scl.o)
.debug_loc 0x00037e22 0x13ac common/libcommon.a(govrh.o)
.debug_loc 0x000391ce 0x1258 common/libcommon.a(vout.o)
.debug_loc 0x0003a426 0x464 common/libcommon.a(lcd.o)
.debug_loc 0x0003a88a 0x11f common/libcommon.a(lvds.o)
.debug_loc 0x0003a9a9 0x99e common/libcommon.a(vpp.o)
.debug_loc 0x0003b347 0x105a common/libcommon.a(hdmi.o)
.debug_loc 0x0003c3a1 0x108a common/libcommon.a(parse-edid.o)
.debug_loc 0x0003d42b 0xc47 common/libcommon.a(vout-wmt.o)
.debug_loc 0x0003e072 0x143 common/libcommon.a(lcd-oem.o)
.debug_loc 0x0003e1b5 0x13 common/libcommon.a(lcd-AUO-A080SN01.o)
.debug_loc 0x0003e1c8 0x13 common/libcommon.a(lcd-INNOLUX-AT070TN83.o)
.debug_loc 0x0003e1db 0x22 common/libcommon.a(lcd-CHILIN-LW700at9003.o)
.debug_loc 0x0003e1fd 0x13 common/libcommon.a(lcd-EKING-EK08009-70135.o)
.debug_loc 0x0003e210 0x13 common/libcommon.a(lcd-HANNSTAR-HSD101PFW2.o)
.debug_loc 0x0003e223 0x13 common/libcommon.a(lcd-lvds-1024x600.o)
.debug_loc 0x0003e236 0x572 common/libcommon.a(vt1625.o)
.debug_loc 0x0003e7a8 0x182 common/libcommon.a(vt1632.o)
.debug_loc 0x0003e92a 0x1c2 common/libcommon.a(lcd-setup.o)
.debug_loc 0x0003eaec 0xa18 common/libcommon.a(vpp-osif.o)
.debug_loc 0x0003f504 0x753 common/libcommon.a(sw_i2c.o)
.debug_loc 0x0003fc57 0x133 lib_generic/libgeneric.a(crc32.o)
.debug_loc 0x0003fd8a 0x106 lib_generic/libgeneric.a(display_options.o)
.debug_loc 0x0003fe90 0xc22 lib_generic/libgeneric.a(string.o)
.debug_loc 0x00040ab2 0xab7 lib_generic/libgeneric.a(vsprintf.o)
.debug_loc 0x00041569 0x264 lib_generic/libgeneric.a(gunzip.o)
.debug_loc 0x000417cd 0x25dd lib_generic/libgeneric.a(zlib.o)
.debug_loc 0x00043daa 0x20 board/wmt/libwmt.a(wmt.o)
.debug_loc 0x00043dca 0x351 board/wmt/libwmt.a(flash.o)
.debug_loc 0x0004411b 0x7fe board/wmt/libwmt.a(spi_flash.o)
.debug_loc 0x00044919 0x39 board/wmt/libwmt.a(nand_flash.o)
.debug_loc 0x00044952 0xdc8 board/wmt/libwmt.a(ehci-hcd.o)
.debug_loc 0x0004571a 0x10a4 board/wmt/libwmt.a(usb_uhci.o)
.debug_loc 0x000467be 0x1cc board/wmt/libwmt.a(snd-vt1603.o)
.debug_loc 0x0004698a 0x121 board/wmt/libwmt.a(spi_flash_lock.o)
.debug_loc 0x00046aab 0x198 cpu/arm920t/libarm920t.a(cpu.o)
.debug_loc 0x00046c43 0xf1 cpu/arm920t/wmt/libwmt.a(serial.o)
.debug_loc 0x00046d34 0xcbf cpu/arm920t/wmt/libwmt.a(dma.o)
.debug_loc 0x000479f3 0x13d cpu/arm920t/wmt/libwmt.a(cypherif.o)
.debug_loc 0x00047b30 0x1c4e cpu/arm920t/wmt/libwmt.a(mmc.o)
.debug_loc 0x0004977e 0x24f cpu/arm920t/wmt/libwmt.a(cypher.o)
.debug_loc 0x000499cd 0x2e7 lib_arm/libarm.a(armlinux.o)
.debug_loc 0x00049cb4 0x194 lib_arm/libarm.a(qsort.o)
.debug_loc 0x00049e48 0xa2e lib_arm/libarm.a(hashtable.o)
.debug_loc 0x0004a876 0x3705 fs/fat/libfat.a(fat.o)
.debug_loc 0x0004df7b 0x35d disk/libdisk.a(part.o)
.debug_loc 0x0004e2d8 0xcb9 disk/libdisk.a(part_dos.o)
.debug_loc 0x0004ef91 0x802 drivers/libdrivers.a(usbdcore.o)
.debug_loc 0x0004f793 0xd1e drivers/libdrivers.a(wmt_udc.o)
.debug_loc 0x000504b1 0xe7 drivers/libdrivers.a(usb_ether.o)
.debug_loc 0x00050598 0xd4b drivers/libdrivers.a(r8152.o)
.debug_loc 0x000512e3 0x788 drivers/libdrivers.a(asix.o)
.debug_loc 0x00051a6b 0x2c cpu/arm920t/wmt/libwmt.a(zde.o)
.debug_macinfo
*(.debug_macinfo)
.debug_weaknames
*(.debug_weaknames)
.debug_funcnames
*(.debug_funcnames)
.debug_typenames
*(.debug_typenames)
.debug_varnames
*(.debug_varnames)
Address of section .text set to 0x3f80000
LOAD cpu/arm920t/start.o
START GROUP
LOAD lib_generic/libgeneric.a
LOAD board/wmt/libwmt.a
LOAD cpu/arm920t/libarm920t.a
LOAD cpu/arm920t/wmt/libwmt.a
LOAD lib_arm/libarm.a
LOAD fs/cramfs/libcramfs.a
LOAD fs/fat/libfat.a
LOAD fs/fdos/libfdos.a
LOAD fs/reiserfs/libreiserfs.a
LOAD net/libnet.a
LOAD disk/libdisk.a
LOAD rtc/librtc.a
LOAD dtt/libdtt.a
LOAD drivers/libdrivers.a
LOAD drivers/sk98lin/libsk98lin.a
LOAD post/libpost.a
LOAD post/cpu/libcpu.a
LOAD common/libcommon.a
END GROUP
LOAD /mnt/backup/common/arm_201103_gcc4.5.2/bin/../lib/gcc/arm-none-linux-gnueabi/4.5.2/libgcc.a
OUTPUT(u-boot elf32-littlearm)
.debug_pubtypes
0x00000000 0x757d
.debug_pubtypes
0x00000000 0x2e board/wmt/libwmt.a(poweroff.o)
.debug_pubtypes
0x0000002e 0x9f board/wmt/libwmt.a(wmt_battery.o)
.debug_pubtypes
0x000000cd 0xa8 board/wmt/libwmt.a(g2214_charger.o)
.debug_pubtypes
0x00000175 0x79 board/wmt/libwmt.a(mp2625_charger.o)
.debug_pubtypes
0x000001ee 0x321 board/wmt/libwmt.a(ug31xx_boot.o)
.debug_pubtypes
0x0000050f 0x2f board/wmt/libwmt.a(ug31xx_boot_i2c.o)
.debug_pubtypes
0x0000053e 0x63 board/wmt/libwmt.a(vt1603_battery.o)
.debug_pubtypes
0x000005a1 0x5d board/wmt/libwmt.a(sp2541_battery.o)
.debug_pubtypes
0x000005fe 0x30 board/wmt/libwmt.a(bq_battery_i2c.o)
.debug_pubtypes
0x0000062e 0x35 board/wmt/libwmt.a(wmt_clk.o)
.debug_pubtypes
0x00000663 0x6f board/wmt/libwmt.a(wmt_i2c.o)
.debug_pubtypes
0x000006d2 0x6f board/wmt/libwmt.a(wmt_i2c_1.o)
.debug_pubtypes
0x00000741 0x6f board/wmt/libwmt.a(wmt_i2c_2.o)
.debug_pubtypes
0x000007b0 0x6f board/wmt/libwmt.a(wmt_i2c_3.o)
.debug_pubtypes
0x0000081f 0x46 board/wmt/libwmt.a(wmt_spi_0.o)
.debug_pubtypes
0x00000865 0x71 board/wmt/libwmt.a(wmt_gpio.o)
.debug_pubtypes
0x000008d6 0x2cd board/wmt/libwmt.a(uG31xx_API_Measurement.o)
.debug_pubtypes
0x00000ba3 0x6d board/wmt/libwmt.a(uG31xx_API_Otp.o)
.debug_pubtypes
0x00000c10 0x1fa board/wmt/libwmt.a(uG31xx_API_System.o)
.debug_pubtypes
0x00000e0a 0x22 board/wmt/libwmt.a(wmt_ost.o)
.debug_pubtypes
0x00000e2c 0x1e cpu/arm920t/libarm920t.a(interrupts.o)
.debug_pubtypes
0x00000e4a 0x36 cpu/arm920t/wmt/libwmt.a(interrupts.o)
.debug_pubtypes
0x00000e80 0xdb lib_arm/libarm.a(board.o)
.debug_pubtypes
0x00000f5b 0xfb net/libnet.a(net.o)
.debug_pubtypes
0x00001056 0x48 net/libnet.a(tftp.o)
.debug_pubtypes
0x0000109e 0x80 net/libnet.a(bootp.o)
.debug_pubtypes
0x0000111e 0x52 net/libnet.a(rarp.o)
.debug_pubtypes
0x00001170 0x80 net/libnet.a(eth.o)
.debug_pubtypes
0x000011f0 0x7a common/libcommon.a(main.o)
.debug_pubtypes
0x0000126a 0x92 common/libcommon.a(cmd_autoscript.o)
.debug_pubtypes
0x000012fc 0x66 common/libcommon.a(cmd_bdinfo.o)
.debug_pubtypes
0x00001362 0x38 common/libcommon.a(cmd_boot.o)
.debug_pubtypes
0x0000139a 0xdb common/libcommon.a(cmd_bootm.o)
.debug_pubtypes
0x00001475 0x58 common/libcommon.a(cmd_console.o)
.debug_pubtypes
0x000014cd 0x9f common/libcommon.a(cmd_mkfsfat.o)
.debug_pubtypes
0x0000156c 0x6d common/libcommon.a(cmd_fat.o)
.debug_pubtypes
0x000015d9 0x5e common/libcommon.a(cmd_flash.o)
.debug_pubtypes
0x00001637 0x66 common/libcommon.a(cmd_load.o)
.debug_pubtypes
0x0000169d 0x61 common/libcommon.a(cmd_mem.o)
.debug_pubtypes
0x000016fe 0xe3 common/libcommon.a(cmd_mii.o)
.debug_pubtypes
0x000017e1 0x38 common/libcommon.a(cmd_misc.o)
.debug_pubtypes
0x00001819 0xe7 common/libcommon.a(cmd_mmc.o)
.debug_pubtypes
0x00001900 0x66 common/libcommon.a(cmd_dma.o)
.debug_pubtypes
0x00001966 0x1f3 common/libcommon.a(cmd_nand.o)
.debug_pubtypes
0x00001b59 0x51 common/libcommon.a(cmd_net.o)
.debug_pubtypes
0x00001baa 0xd0 common/libcommon.a(cmd_nvedit.o)
.debug_pubtypes
0x00001c7a 0x1a2 common/libcommon.a(cmd_usb.o)
.debug_pubtypes
0x00001e1c 0x40 common/libcommon.a(cmd_rsa.o)
.debug_pubtypes
0x00001e5c 0x2e common/libcommon.a(command.o)
.debug_pubtypes
0x00001e8a 0xaa common/libcommon.a(console.o)
.debug_pubtypes
0x00001f34 0x3c common/libcommon.a(devices.o)
.debug_pubtypes
0x00001f70 0xa1 common/libcommon.a(dlmalloc.o)
.debug_pubtypes
0x00002011 0xac common/libcommon.a(env_common.o)
.debug_pubtypes
0x000020bd 0x70 common/libcommon.a(env_flash.o)
.debug_pubtypes
0x0000212d 0x4a common/libcommon.a(exports.o)
.debug_pubtypes
0x00002177 0x10d common/libcommon.a(env_otp.o)
.debug_pubtypes
0x00002284 0x6e common/libcommon.a(wmt-ost.o)
.debug_pubtypes
0x000022f2 0x108 common/libcommon.a(lcd-mipi-ssd2828.o)
.debug_pubtypes
0x000023fa 0x28d common/libcommon.a(wmt_cmd_display.o)
.debug_pubtypes
0x00002687 0x12e common/libcommon.a(minivgui.o)
.debug_pubtypes
0x000027b5 0x2a4 common/libcommon.a(uboot-vpp.o)
.debug_pubtypes
0x00002a59 0x84 common/libcommon.a(cmd_mbit.o)
.debug_pubtypes
0x00002add 0x95 common/libcommon.a(cmd_textout.o)
.debug_pubtypes
0x00002b72 0x90 common/libcommon.a(env_parse.o)
.debug_pubtypes
0x00002c02 0xd2 common/libcommon.a(charge_animation.o)
.debug_pubtypes
0x00002cd4 0x42 common/libcommon.a(flash.o)
.debug_pubtypes
0x00002d16 0x110 common/libcommon.a(hush.o)
.debug_pubtypes
0x00002e26 0x4b common/libcommon.a(lists.o)
.debug_pubtypes
0x00002e71 0x2c common/libcommon.a(miiphyutil.o)
.debug_pubtypes
0x00002e9d 0x178 common/libcommon.a(usb.o)
.debug_pubtypes
0x00003015 0x18f common/libcommon.a(usb_storage.o)
.debug_pubtypes
0x000031a4 0x43b common/libcommon.a(cmd_fastboot.o)
.debug_pubtypes
0x000035df 0x73 common/libcommon.a(sparse.o)
.debug_pubtypes
0x00003652 0xa2 common/libcommon.a(mmc_ext4.o)
.debug_pubtypes
0x000036f4 0x2e common/libcommon.a(wmt_cmd_check_fastboot.o)
.debug_pubtypes
0x00003722 0x2e common/libcommon.a(wmt_cmd_recovery_mode.o)
.debug_pubtypes
0x00003750 0x2e common/libcommon.a(wmt_cmd_ac_ok.o)
.debug_pubtypes
0x0000377e 0x2e common/libcommon.a(wmt_cmd_wmtfs.o)
.debug_pubtypes
0x000037ac 0x53 common/libcommon.a(wmt_cmd_addfwcenv.o)
.debug_pubtypes
0x000037ff 0x133 common/libcommon.a(hw_recovery.o)
.debug_pubtypes
0x00003932 0xc4 common/libcommon.a(enter_fastboot_mode.o)
.debug_pubtypes
0x000039f6 0x55 common/libcommon.a(wmt_cmd_syncenv.o)
.debug_pubtypes
0x00003a4b 0x58 common/libcommon.a(aes.o)
.debug_pubtypes
0x00003aa3 0x5f common/libcommon.a(cmd_aes.o)
.debug_pubtypes
0x00003b02 0x6e common/libcommon.a(wmt_efuse.o)
.debug_pubtypes
0x00003b70 0x49 common/libcommon.a(wmt_cmd_efuse.o)
.debug_pubtypes
0x00003bb9 0x1aa common/libcommon.a(wmt_dual_boot.o)
.debug_pubtypes
0x00003d63 0x93 common/libcommon.a(rsa_verify.o)
.debug_pubtypes
0x00003df6 0x4f common/libcommon.a(bignum.o)
.debug_pubtypes
0x00003e45 0x8d common/libcommon.a(pwm.o)
.debug_pubtypes
0x00003ed2 0x1f3 common/libcommon.a(scl.o)
.debug_pubtypes
0x000040c5 0x1b6 common/libcommon.a(govrh.o)
.debug_pubtypes
0x0000427b 0x233 common/libcommon.a(vout.o)
.debug_pubtypes
0x000044ae 0x246 common/libcommon.a(lcd.o)
.debug_pubtypes
0x000046f4 0xa2 common/libcommon.a(lvds.o)
.debug_pubtypes
0x00004796 0x1d2 common/libcommon.a(vpp.o)
.debug_pubtypes
0x00004968 0x1ac common/libcommon.a(hdmi.o)
.debug_pubtypes
0x00004b14 0x22a common/libcommon.a(parse-edid.o)
.debug_pubtypes
0x00004d3e 0x281 common/libcommon.a(vout-wmt.o)
.debug_pubtypes
0x00004fbf 0x8e common/libcommon.a(lcd-oem.o)
.debug_pubtypes
0x0000504d 0x8e common/libcommon.a(lcd-AUO-A080SN01.o)
.debug_pubtypes
0x000050db 0x8e common/libcommon.a(lcd-INNOLUX-AT070TN83.o)
.debug_pubtypes
0x00005169 0x8e common/libcommon.a(lcd-CHILIN-LW700at9003.o)
.debug_pubtypes
0x000051f7 0x8e common/libcommon.a(lcd-EKING-EK08009-70135.o)
.debug_pubtypes
0x00005285 0x8e common/libcommon.a(lcd-HANNSTAR-HSD101PFW2.o)
.debug_pubtypes
0x00005313 0x8e common/libcommon.a(lcd-lvds-1024x600.o)
.debug_pubtypes
0x000053a1 0x22b common/libcommon.a(vt1625.o)
.debug_pubtypes
0x000055cc 0x205 common/libcommon.a(vt1632.o)
.debug_pubtypes
0x000057d1 0x3a common/libcommon.a(sil902x.o)
.debug_pubtypes
0x0000580b 0x98 common/libcommon.a(lcd-setup.o)
.debug_pubtypes
0x000058a3 0x80 common/libcommon.a(vpp-osif.o)
.debug_pubtypes
0x00005923 0x94 common/libcommon.a(sw_i2c.o)
.debug_pubtypes
0x000059b7 0x43 lib_generic/libgeneric.a(crc32.o)
.debug_pubtypes
0x000059fa 0x1c lib_generic/libgeneric.a(display_options.o)
.debug_pubtypes
0x00005a16 0x3b lib_generic/libgeneric.a(string.o)
.debug_pubtypes
0x00005a51 0x3f lib_generic/libgeneric.a(vsprintf.o)
.debug_pubtypes
0x00005a90 0x9b lib_generic/libgeneric.a(gunzip.o)
.debug_pubtypes
0x00005b2b 0x11e lib_generic/libgeneric.a(zlib.o)
.debug_pubtypes
0x00005c49 0x4a board/wmt/libwmt.a(wmt.o)
.debug_pubtypes
0x00005c93 0x90 board/wmt/libwmt.a(flash.o)
.debug_pubtypes
0x00005d23 0x12 board/wmt/libwmt.a(main.o)
.debug_pubtypes
0x00005d35 0x81 board/wmt/libwmt.a(spi_flash.o)
.debug_pubtypes
0x00005db6 0x42 board/wmt/libwmt.a(nand_flash.o)
.debug_pubtypes
0x00005df8 0x33a board/wmt/libwmt.a(ehci-hcd.o)
.debug_pubtypes
0x00006132 0x102 board/wmt/libwmt.a(usb_uhci.o)
.debug_pubtypes
0x00006234 0x30 board/wmt/libwmt.a(snd-vt1603.o)
.debug_pubtypes
0x00006264 0x42 board/wmt/libwmt.a(spi_flash_lock.o)
.debug_pubtypes
0x000062a6 0x38 cpu/arm920t/libarm920t.a(cpu.o)
.debug_pubtypes
0x000062de 0x84 cpu/arm920t/wmt/libwmt.a(serial.o)
.debug_pubtypes
0x00006362 0xc8 cpu/arm920t/wmt/libwmt.a(dma.o)
.debug_pubtypes
0x0000642a 0x88 cpu/arm920t/wmt/libwmt.a(cypherif.o)
.debug_pubtypes
0x000064b2 0x142 cpu/arm920t/wmt/libwmt.a(mmc.o)
.debug_pubtypes
0x000065f4 0x71 cpu/arm920t/wmt/libwmt.a(cypher.o)
.debug_pubtypes
0x00006665 0x1ac lib_arm/libarm.a(armlinux.o)
.debug_pubtypes
0x00006811 0x12 lib_arm/libarm.a(cache.o)
.debug_pubtypes
0x00006823 0x31 lib_arm/libarm.a(qsort.o)
.debug_pubtypes
0x00006854 0x98 lib_arm/libarm.a(hashtable.o)
.debug_pubtypes
0x000068ec 0x1ad fs/fat/libfat.a(fat.o)
.debug_pubtypes
0x00006a99 0x83 disk/libdisk.a(part.o)
.debug_pubtypes
0x00006b1c 0xbe disk/libdisk.a(part_dos.o)
.debug_pubtypes
0x00006bda 0x23d drivers/libdrivers.a(usbdcore.o)
.debug_pubtypes
0x00006e17 0x33b drivers/libdrivers.a(wmt_udc.o)
.debug_pubtypes
0x00007152 0x156 drivers/libdrivers.a(usb_ether.o)
.debug_pubtypes
0x000072a8 0x161 drivers/libdrivers.a(r8152.o)
.debug_pubtypes
0x00007409 0x12e drivers/libdrivers.a(asix.o)
.debug_pubtypes
0x00007537 0x46 cpu/arm920t/wmt/libwmt.a(zde.o)
.debug_ranges 0x00000000 0x2e38
.debug_ranges 0x00000000 0x30 board/wmt/libwmt.a(wmt_battery.o)
.debug_ranges 0x00000030 0x90 board/wmt/libwmt.a(g2214_charger.o)
.debug_ranges 0x000000c0 0x18 board/wmt/libwmt.a(mp2625_charger.o)
.debug_ranges 0x000000d8 0x60 board/wmt/libwmt.a(ug31xx_boot.o)
.debug_ranges 0x00000138 0xe8 board/wmt/libwmt.a(vt1603_battery.o)
.debug_ranges 0x00000220 0x70 board/wmt/libwmt.a(sp2541_battery.o)
.debug_ranges 0x00000290 0xa0 board/wmt/libwmt.a(bq_battery_i2c.o)
.debug_ranges 0x00000330 0xf0 board/wmt/libwmt.a(wmt_clk.o)
.debug_ranges 0x00000420 0x1b0 board/wmt/libwmt.a(wmt_i2c.o)
.debug_ranges 0x000005d0 0x1b0 board/wmt/libwmt.a(wmt_i2c_1.o)
.debug_ranges 0x00000780 0x1b0 board/wmt/libwmt.a(wmt_i2c_2.o)
.debug_ranges 0x00000930 0x1b0 board/wmt/libwmt.a(wmt_i2c_3.o)
.debug_ranges 0x00000ae0 0x20 board/wmt/libwmt.a(uG31xx_API_Measurement.o)
.debug_ranges 0x00000b00 0x18 board/wmt/libwmt.a(uG31xx_API_System.o)
.debug_ranges 0x00000b18 0x58 lib_arm/libarm.a(board.o)
.debug_ranges 0x00000b70 0x38 net/libnet.a(net.o)
.debug_ranges 0x00000ba8 0x30 net/libnet.a(tftp.o)
.debug_ranges 0x00000bd8 0x140 net/libnet.a(bootp.o)
.debug_ranges 0x00000d18 0x38 net/libnet.a(eth.o)
.debug_ranges 0x00000d50 0xb8 common/libcommon.a(main.o)
.debug_ranges 0x00000e08 0x30 common/libcommon.a(cmd_bootm.o)
.debug_ranges 0x00000e38 0x18 common/libcommon.a(cmd_console.o)
.debug_ranges 0x00000e50 0x30 common/libcommon.a(cmd_fat.o)
.debug_ranges 0x00000e80 0x18 common/libcommon.a(cmd_flash.o)
.debug_ranges 0x00000e98 0xe0 common/libcommon.a(cmd_load.o)
.debug_ranges 0x00000f78 0x18 common/libcommon.a(cmd_mem.o)
.debug_ranges 0x00000f90 0x80 common/libcommon.a(cmd_mii.o)
.debug_ranges 0x00001010 0x38 common/libcommon.a(cmd_mmc.o)
.debug_ranges 0x00001048 0x220 common/libcommon.a(cmd_nand.o)
.debug_ranges 0x00001268 0x50 common/libcommon.a(cmd_nvedit.o)
.debug_ranges 0x000012b8 0x50 common/libcommon.a(cmd_usb.o)
.debug_ranges 0x00001308 0x18 common/libcommon.a(cmd_rsa.o)
.debug_ranges 0x00001320 0x90 common/libcommon.a(command.o)
.debug_ranges 0x000013b0 0x30 common/libcommon.a(console.o)
.debug_ranges 0x000013e0 0x80 common/libcommon.a(lcd-mipi-ssd2828.o)
.debug_ranges 0x00001460 0x18 common/libcommon.a(wmt_cmd_display.o)
.debug_ranges 0x00001478 0xb0 common/libcommon.a(minivgui.o)
.debug_ranges 0x00001528 0x50 common/libcommon.a(uboot-vpp.o)
.debug_ranges 0x00001578 0x90 common/libcommon.a(charge_animation.o)
.debug_ranges 0x00001608 0x48 common/libcommon.a(flash.o)
.debug_ranges 0x00001650 0x1e8 common/libcommon.a(hush.o)
.debug_ranges 0x00001838 0xa0 common/libcommon.a(usb.o)
.debug_ranges 0x000018d8 0x110 common/libcommon.a(usb_storage.o)
.debug_ranges 0x000019e8 0x190 common/libcommon.a(cmd_fastboot.o)
.debug_ranges 0x00001b78 0x100 common/libcommon.a(mmc_ext4.o)
.debug_ranges 0x00001c78 0x38 common/libcommon.a(wmt_cmd_ac_ok.o)
.debug_ranges 0x00001cb0 0xf8 common/libcommon.a(wmt_cmd_syncenv.o)
.debug_ranges 0x00001da8 0x170 common/libcommon.a(wmt_efuse.o)
.debug_ranges 0x00001f18 0x40 common/libcommon.a(wmt_dual_boot.o)
.debug_ranges 0x00001f58 0x80 common/libcommon.a(rsa_verify.o)
.debug_ranges 0x00001fd8 0x60 common/libcommon.a(bignum.o)
.debug_ranges 0x00002038 0x50 common/libcommon.a(pwm.o)
.debug_ranges 0x00002088 0x60 common/libcommon.a(scl.o)
.debug_ranges 0x000020e8 0x18 common/libcommon.a(govrh.o)
.debug_ranges 0x00002100 0x30 common/libcommon.a(vout.o)
.debug_ranges 0x00002130 0x30 common/libcommon.a(lvds.o)
.debug_ranges 0x00002160 0x30 common/libcommon.a(hdmi.o)
.debug_ranges 0x00002190 0x120 common/libcommon.a(parse-edid.o)
.debug_ranges 0x000022b0 0x30 common/libcommon.a(vout-wmt.o)
.debug_ranges 0x000022e0 0x48 common/libcommon.a(vt1625.o)
.debug_ranges 0x00002328 0x30 common/libcommon.a(lcd-setup.o)
.debug_ranges 0x00002358 0x30 common/libcommon.a(vpp-osif.o)
.debug_ranges 0x00002388 0x70 lib_generic/libgeneric.a(zlib.o)
.debug_ranges 0x000023f8 0x138 board/wmt/libwmt.a(spi_flash.o)
.debug_ranges 0x00002530 0xb0 board/wmt/libwmt.a(usb_uhci.o)
.debug_ranges 0x000025e0 0x70 board/wmt/libwmt.a(snd-vt1603.o)
.debug_ranges 0x00002650 0x18 lib_arm/libarm.a(hashtable.o)
.debug_ranges 0x00002668 0x368 fs/fat/libfat.a(fat.o)
.debug_ranges 0x000029d0 0x18 disk/libdisk.a(part_dos.o)
.debug_ranges 0x000029e8 0x18 drivers/libdrivers.a(usbdcore.o)
.debug_ranges 0x00002a00 0xa0 drivers/libdrivers.a(wmt_udc.o)
.debug_ranges 0x00002aa0 0x318 drivers/libdrivers.a(r8152.o)
.debug_ranges 0x00002db8 0x40 drivers/libdrivers.a(asix.o)
.debug_ranges 0x00002df8 0x40 cpu/arm920t/wmt/libwmt.a(zde.o)
|