forked from iZobs/webee210-uboot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhelp.txt
5384 lines (5384 loc) · 456 KB
/
help.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
arch/arm/lib/.depend:9:board.o: board.c /home/long/simon/uboot/uboot_Webee210/include/common.h \
arch/arm/lib/.depend:10: /home/long/simon/uboot/uboot_Webee210/include/config.h \
arch/arm/lib/.depend:11: /home/long/simon/uboot/uboot_Webee210/include/config_cmd_defaults.h \
arch/arm/lib/.depend:12: /home/long/simon/uboot/uboot_Webee210/include/config_defaults.h \
arch/arm/lib/.depend:13: /home/long/simon/uboot/uboot_Webee210/include/configs/webee210.h \
arch/arm/lib/.depend:14: /home/long/simon/uboot/uboot_Webee210/include/asm/arch/cpu.h \
arch/arm/lib/.depend:15: /home/long/simon/uboot/uboot_Webee210/include/asm/io.h \
arch/arm/lib/.depend:16: /home/long/simon/uboot/uboot_Webee210/include/linux/types.h \
arch/arm/lib/.depend:17: /home/long/simon/uboot/uboot_Webee210/include/linux/config.h \
arch/arm/lib/.depend:18: /home/long/simon/uboot/uboot_Webee210/include/linux/posix_types.h \
arch/arm/lib/.depend:19: /home/long/simon/uboot/uboot_Webee210/include/linux/stddef.h \
arch/arm/lib/.depend:20: /home/long/simon/uboot/uboot_Webee210/include/asm/posix_types.h \
arch/arm/lib/.depend:21: /home/long/simon/uboot/uboot_Webee210/include/asm/types.h \
arch/arm/lib/.depend:22: /home/long/simon/uboot/uboot_Webee210/include/asm/byteorder.h \
arch/arm/lib/.depend:23: /home/long/simon/uboot/uboot_Webee210/include/linux/byteorder/little_endian.h \
arch/arm/lib/.depend:24: /home/long/simon/uboot/uboot_Webee210/include/linux/byteorder/swab.h \
arch/arm/lib/.depend:25: /home/long/simon/uboot/uboot_Webee210/include/linux/byteorder/generic.h \
arch/arm/lib/.depend:26: /home/long/simon/uboot/uboot_Webee210/include/asm/memory.h \
arch/arm/lib/.depend:27: /home/long/simon/uboot/uboot_Webee210/include/config_cmd_default.h \
arch/arm/lib/.depend:28: /home/long/simon/uboot/uboot_Webee210/include/asm/config.h \
arch/arm/lib/.depend:29: /home/long/simon/uboot/uboot_Webee210/include/asm-offsets.h \
arch/arm/lib/.depend:30: /home/long/simon/uboot/uboot_Webee210/include/generated/generic-asm-offsets.h \
arch/arm/lib/.depend:31: /home/long/simon/uboot/uboot_Webee210/include/linux/bitops.h \
arch/arm/lib/.depend:32: /home/long/simon/uboot/uboot_Webee210/include/asm/bitops.h \
arch/arm/lib/.depend:33: /home/long/simon/uboot/uboot_Webee210/include/asm/proc/system.h \
arch/arm/lib/.depend:34: /home/long/simon/uboot/uboot_Webee210/include/linux/string.h \
arch/arm/lib/.depend:35: /home/long/simon/uboot/uboot_Webee210/include/asm/string.h \
arch/arm/lib/.depend:36: /home/long/simon/uboot/uboot_Webee210/include/asm/ptrace.h \
arch/arm/lib/.depend:37: /home/long/simon/uboot/uboot_Webee210/include/asm/proc/ptrace.h \
arch/arm/lib/.depend:39: /home/long/simon/uboot/uboot_Webee210/include/part.h \
arch/arm/lib/.depend:40: /home/long/simon/uboot/uboot_Webee210/include/ide.h \
arch/arm/lib/.depend:41: /home/long/simon/uboot/uboot_Webee210/include/flash.h \
arch/arm/lib/.depend:42: /home/long/simon/uboot/uboot_Webee210/include/image.h \
arch/arm/lib/.depend:43: /home/long/simon/uboot/uboot_Webee210/include/compiler.h \
arch/arm/lib/.depend:45: /home/long/simon/uboot/uboot_Webee210/include/lmb.h \
arch/arm/lib/.depend:46: /home/long/simon/uboot/uboot_Webee210/include/asm/u-boot.h \
arch/arm/lib/.depend:47: /home/long/simon/uboot/uboot_Webee210/include/command.h \
arch/arm/lib/.depend:48: /home/long/simon/uboot/uboot_Webee210/include/asm/global_data.h \
arch/arm/lib/.depend:49: /home/long/simon/uboot/uboot_Webee210/include/asm/mach-types.h \
arch/arm/lib/.depend:50: /home/long/simon/uboot/uboot_Webee210/include/asm/setup.h \
arch/arm/lib/.depend:51: /home/long/simon/uboot/uboot_Webee210/include/asm/u-boot-arm.h \
arch/arm/lib/.depend:52: /home/long/simon/uboot/uboot_Webee210/include/net.h \
arch/arm/lib/.depend:53: /home/long/simon/uboot/uboot_Webee210/include/u-boot/crc.h \
arch/arm/lib/.depend:54: /home/long/simon/uboot/uboot_Webee210/include/malloc.h \
arch/arm/lib/.depend:55: /home/long/simon/uboot/uboot_Webee210/include/stdio_dev.h \
arch/arm/lib/.depend:56: /home/long/simon/uboot/uboot_Webee210/include/linux/list.h \
arch/arm/lib/.depend:57: /home/long/simon/uboot/uboot_Webee210/include/linux/poison.h \
arch/arm/lib/.depend:58: /home/long/simon/uboot/uboot_Webee210/include/version.h \
arch/arm/lib/.depend:59: /home/long/simon/uboot/uboot_Webee210/include/timestamp.h \
arch/arm/lib/.depend:60: /home/long/simon/uboot/uboot_Webee210/include/timestamp_autogenerated.h \
arch/arm/lib/.depend:61: /home/long/simon/uboot/uboot_Webee210/include/version_autogenerated.h \
arch/arm/lib/.depend:62: /home/long/simon/uboot/uboot_Webee210/include/serial.h \
arch/arm/lib/.depend:63: /home/long/simon/uboot/uboot_Webee210/include/post.h \
arch/arm/lib/.depend:64: /home/long/simon/uboot/uboot_Webee210/include/nand.h \
arch/arm/lib/.depend:65: /home/long/simon/uboot/uboot_Webee210/include/linux/mtd/compat.h \
arch/arm/lib/.depend:66: /home/long/simon/uboot/uboot_Webee210/include/linux/mtd/mtd.h \
arch/arm/lib/.depend:67: /home/long/simon/uboot/uboot_Webee210/include/div64.h \
arch/arm/lib/.depend:68: /home/long/simon/uboot/uboot_Webee210/include/linux/mtd/mtd-abi.h \
arch/arm/lib/.depend:69: /home/long/simon/uboot/uboot_Webee210/include/linux/mtd/nand.h \
arch/arm/lib/.depend:70: /home/long/simon/uboot/uboot_Webee210/include/linux/mtd/bbm.h \
arch/arm/lib/.depend:71: /home/long/simon/uboot/uboot_Webee210/include/onenand_uboot.h \
arch/arm/lib/.depend:72: /home/long/simon/uboot/uboot_Webee210/include/mmc.h
arch/arm/lib/.depend:73:bootm.o: bootm.c /home/long/simon/uboot/uboot_Webee210/include/common.h \
arch/arm/lib/.depend:74: /home/long/simon/uboot/uboot_Webee210/include/config.h \
arch/arm/lib/.depend:75: /home/long/simon/uboot/uboot_Webee210/include/config_cmd_defaults.h \
arch/arm/lib/.depend:76: /home/long/simon/uboot/uboot_Webee210/include/config_defaults.h \
arch/arm/lib/.depend:77: /home/long/simon/uboot/uboot_Webee210/include/configs/webee210.h \
arch/arm/lib/.depend:78: /home/long/simon/uboot/uboot_Webee210/include/asm/arch/cpu.h \
arch/arm/lib/.depend:79: /home/long/simon/uboot/uboot_Webee210/include/asm/io.h \
arch/arm/lib/.depend:80: /home/long/simon/uboot/uboot_Webee210/include/linux/types.h \
arch/arm/lib/.depend:81: /home/long/simon/uboot/uboot_Webee210/include/linux/config.h \
arch/arm/lib/.depend:82: /home/long/simon/uboot/uboot_Webee210/include/linux/posix_types.h \
arch/arm/lib/.depend:83: /home/long/simon/uboot/uboot_Webee210/include/linux/stddef.h \
arch/arm/lib/.depend:84: /home/long/simon/uboot/uboot_Webee210/include/asm/posix_types.h \
arch/arm/lib/.depend:85: /home/long/simon/uboot/uboot_Webee210/include/asm/types.h \
arch/arm/lib/.depend:86: /home/long/simon/uboot/uboot_Webee210/include/asm/byteorder.h \
arch/arm/lib/.depend:87: /home/long/simon/uboot/uboot_Webee210/include/linux/byteorder/little_endian.h \
arch/arm/lib/.depend:88: /home/long/simon/uboot/uboot_Webee210/include/linux/byteorder/swab.h \
arch/arm/lib/.depend:89: /home/long/simon/uboot/uboot_Webee210/include/linux/byteorder/generic.h \
arch/arm/lib/.depend:90: /home/long/simon/uboot/uboot_Webee210/include/asm/memory.h \
arch/arm/lib/.depend:91: /home/long/simon/uboot/uboot_Webee210/include/config_cmd_default.h \
arch/arm/lib/.depend:92: /home/long/simon/uboot/uboot_Webee210/include/asm/config.h \
arch/arm/lib/.depend:93: /home/long/simon/uboot/uboot_Webee210/include/asm-offsets.h \
arch/arm/lib/.depend:94: /home/long/simon/uboot/uboot_Webee210/include/generated/generic-asm-offsets.h \
arch/arm/lib/.depend:95: /home/long/simon/uboot/uboot_Webee210/include/linux/bitops.h \
arch/arm/lib/.depend:96: /home/long/simon/uboot/uboot_Webee210/include/asm/bitops.h \
arch/arm/lib/.depend:97: /home/long/simon/uboot/uboot_Webee210/include/asm/proc/system.h \
arch/arm/lib/.depend:98: /home/long/simon/uboot/uboot_Webee210/include/linux/string.h \
arch/arm/lib/.depend:99: /home/long/simon/uboot/uboot_Webee210/include/asm/string.h \
arch/arm/lib/.depend:100: /home/long/simon/uboot/uboot_Webee210/include/asm/ptrace.h \
arch/arm/lib/.depend:101: /home/long/simon/uboot/uboot_Webee210/include/asm/proc/ptrace.h \
arch/arm/lib/.depend:103: /home/long/simon/uboot/uboot_Webee210/include/part.h \
arch/arm/lib/.depend:104: /home/long/simon/uboot/uboot_Webee210/include/ide.h \
arch/arm/lib/.depend:105: /home/long/simon/uboot/uboot_Webee210/include/flash.h \
arch/arm/lib/.depend:106: /home/long/simon/uboot/uboot_Webee210/include/image.h \
arch/arm/lib/.depend:107: /home/long/simon/uboot/uboot_Webee210/include/compiler.h \
arch/arm/lib/.depend:109: /home/long/simon/uboot/uboot_Webee210/include/lmb.h \
arch/arm/lib/.depend:110: /home/long/simon/uboot/uboot_Webee210/include/asm/u-boot.h \
arch/arm/lib/.depend:111: /home/long/simon/uboot/uboot_Webee210/include/command.h \
arch/arm/lib/.depend:112: /home/long/simon/uboot/uboot_Webee210/include/asm/global_data.h \
arch/arm/lib/.depend:113: /home/long/simon/uboot/uboot_Webee210/include/asm/mach-types.h \
arch/arm/lib/.depend:114: /home/long/simon/uboot/uboot_Webee210/include/asm/setup.h \
arch/arm/lib/.depend:115: /home/long/simon/uboot/uboot_Webee210/include/asm/u-boot-arm.h \
arch/arm/lib/.depend:116: /home/long/simon/uboot/uboot_Webee210/include/net.h \
arch/arm/lib/.depend:117: /home/long/simon/uboot/uboot_Webee210/include/u-boot/crc.h \
arch/arm/lib/.depend:118: /home/long/simon/uboot/uboot_Webee210/include/u-boot/zlib.h \
arch/arm/lib/.depend:119: /home/long/simon/uboot/uboot_Webee210/include/fdt.h \
arch/arm/lib/.depend:120: /home/long/simon/uboot/uboot_Webee210/include/libfdt.h \
arch/arm/lib/.depend:121: /home/long/simon/uboot/uboot_Webee210/include/libfdt_env.h \
arch/arm/lib/.depend:122: /home/long/simon/uboot/uboot_Webee210/include/fdt_support.h
arch/arm/lib/.depend:123:cache.o: cache.c /home/long/simon/uboot/uboot_Webee210/include/common.h \
arch/arm/lib/.depend:124: /home/long/simon/uboot/uboot_Webee210/include/config.h \
arch/arm/lib/.depend:125: /home/long/simon/uboot/uboot_Webee210/include/config_cmd_defaults.h \
arch/arm/lib/.depend:126: /home/long/simon/uboot/uboot_Webee210/include/config_defaults.h \
arch/arm/lib/.depend:127: /home/long/simon/uboot/uboot_Webee210/include/configs/webee210.h \
arch/arm/lib/.depend:128: /home/long/simon/uboot/uboot_Webee210/include/asm/arch/cpu.h \
arch/arm/lib/.depend:129: /home/long/simon/uboot/uboot_Webee210/include/asm/io.h \
arch/arm/lib/.depend:130: /home/long/simon/uboot/uboot_Webee210/include/linux/types.h \
arch/arm/lib/.depend:131: /home/long/simon/uboot/uboot_Webee210/include/linux/config.h \
arch/arm/lib/.depend:132: /home/long/simon/uboot/uboot_Webee210/include/linux/posix_types.h \
arch/arm/lib/.depend:133: /home/long/simon/uboot/uboot_Webee210/include/linux/stddef.h \
arch/arm/lib/.depend:134: /home/long/simon/uboot/uboot_Webee210/include/asm/posix_types.h \
arch/arm/lib/.depend:135: /home/long/simon/uboot/uboot_Webee210/include/asm/types.h \
arch/arm/lib/.depend:136: /home/long/simon/uboot/uboot_Webee210/include/asm/byteorder.h \
arch/arm/lib/.depend:137: /home/long/simon/uboot/uboot_Webee210/include/linux/byteorder/little_endian.h \
arch/arm/lib/.depend:138: /home/long/simon/uboot/uboot_Webee210/include/linux/byteorder/swab.h \
arch/arm/lib/.depend:139: /home/long/simon/uboot/uboot_Webee210/include/linux/byteorder/generic.h \
arch/arm/lib/.depend:140: /home/long/simon/uboot/uboot_Webee210/include/asm/memory.h \
arch/arm/lib/.depend:141: /home/long/simon/uboot/uboot_Webee210/include/config_cmd_default.h \
arch/arm/lib/.depend:142: /home/long/simon/uboot/uboot_Webee210/include/asm/config.h \
arch/arm/lib/.depend:143: /home/long/simon/uboot/uboot_Webee210/include/asm-offsets.h \
arch/arm/lib/.depend:144: /home/long/simon/uboot/uboot_Webee210/include/generated/generic-asm-offsets.h \
arch/arm/lib/.depend:145: /home/long/simon/uboot/uboot_Webee210/include/linux/bitops.h \
arch/arm/lib/.depend:146: /home/long/simon/uboot/uboot_Webee210/include/asm/bitops.h \
arch/arm/lib/.depend:147: /home/long/simon/uboot/uboot_Webee210/include/asm/proc/system.h \
arch/arm/lib/.depend:148: /home/long/simon/uboot/uboot_Webee210/include/linux/string.h \
arch/arm/lib/.depend:149: /home/long/simon/uboot/uboot_Webee210/include/asm/string.h \
arch/arm/lib/.depend:150: /home/long/simon/uboot/uboot_Webee210/include/asm/ptrace.h \
arch/arm/lib/.depend:151: /home/long/simon/uboot/uboot_Webee210/include/asm/proc/ptrace.h \
arch/arm/lib/.depend:153: /home/long/simon/uboot/uboot_Webee210/include/part.h \
arch/arm/lib/.depend:154: /home/long/simon/uboot/uboot_Webee210/include/ide.h \
arch/arm/lib/.depend:155: /home/long/simon/uboot/uboot_Webee210/include/flash.h \
arch/arm/lib/.depend:156: /home/long/simon/uboot/uboot_Webee210/include/image.h \
arch/arm/lib/.depend:157: /home/long/simon/uboot/uboot_Webee210/include/compiler.h \
arch/arm/lib/.depend:159: /home/long/simon/uboot/uboot_Webee210/include/lmb.h \
arch/arm/lib/.depend:160: /home/long/simon/uboot/uboot_Webee210/include/asm/u-boot.h \
arch/arm/lib/.depend:161: /home/long/simon/uboot/uboot_Webee210/include/command.h \
arch/arm/lib/.depend:162: /home/long/simon/uboot/uboot_Webee210/include/asm/global_data.h \
arch/arm/lib/.depend:163: /home/long/simon/uboot/uboot_Webee210/include/asm/mach-types.h \
arch/arm/lib/.depend:164: /home/long/simon/uboot/uboot_Webee210/include/asm/setup.h \
arch/arm/lib/.depend:165: /home/long/simon/uboot/uboot_Webee210/include/asm/u-boot-arm.h \
arch/arm/lib/.depend:166: /home/long/simon/uboot/uboot_Webee210/include/net.h \
arch/arm/lib/.depend:167: /home/long/simon/uboot/uboot_Webee210/include/u-boot/crc.h
arch/arm/lib/.depend:169: /home/long/simon/uboot/uboot_Webee210/include/common.h \
arch/arm/lib/.depend:170: /home/long/simon/uboot/uboot_Webee210/include/config.h \
arch/arm/lib/.depend:171: /home/long/simon/uboot/uboot_Webee210/include/config_cmd_defaults.h \
arch/arm/lib/.depend:172: /home/long/simon/uboot/uboot_Webee210/include/config_defaults.h \
arch/arm/lib/.depend:173: /home/long/simon/uboot/uboot_Webee210/include/configs/webee210.h \
arch/arm/lib/.depend:174: /home/long/simon/uboot/uboot_Webee210/include/asm/arch/cpu.h \
arch/arm/lib/.depend:175: /home/long/simon/uboot/uboot_Webee210/include/asm/io.h \
arch/arm/lib/.depend:176: /home/long/simon/uboot/uboot_Webee210/include/linux/types.h \
arch/arm/lib/.depend:177: /home/long/simon/uboot/uboot_Webee210/include/linux/config.h \
arch/arm/lib/.depend:178: /home/long/simon/uboot/uboot_Webee210/include/linux/posix_types.h \
arch/arm/lib/.depend:179: /home/long/simon/uboot/uboot_Webee210/include/linux/stddef.h \
arch/arm/lib/.depend:180: /home/long/simon/uboot/uboot_Webee210/include/asm/posix_types.h \
arch/arm/lib/.depend:181: /home/long/simon/uboot/uboot_Webee210/include/asm/types.h \
arch/arm/lib/.depend:182: /home/long/simon/uboot/uboot_Webee210/include/asm/byteorder.h \
arch/arm/lib/.depend:183: /home/long/simon/uboot/uboot_Webee210/include/linux/byteorder/little_endian.h \
arch/arm/lib/.depend:184: /home/long/simon/uboot/uboot_Webee210/include/linux/byteorder/swab.h \
arch/arm/lib/.depend:185: /home/long/simon/uboot/uboot_Webee210/include/linux/byteorder/generic.h \
arch/arm/lib/.depend:186: /home/long/simon/uboot/uboot_Webee210/include/asm/memory.h \
arch/arm/lib/.depend:187: /home/long/simon/uboot/uboot_Webee210/include/config_cmd_default.h \
arch/arm/lib/.depend:188: /home/long/simon/uboot/uboot_Webee210/include/asm/config.h \
arch/arm/lib/.depend:189: /home/long/simon/uboot/uboot_Webee210/include/asm-offsets.h \
arch/arm/lib/.depend:190: /home/long/simon/uboot/uboot_Webee210/include/generated/generic-asm-offsets.h \
arch/arm/lib/.depend:191: /home/long/simon/uboot/uboot_Webee210/include/linux/bitops.h \
arch/arm/lib/.depend:192: /home/long/simon/uboot/uboot_Webee210/include/asm/bitops.h \
arch/arm/lib/.depend:193: /home/long/simon/uboot/uboot_Webee210/include/asm/proc/system.h \
arch/arm/lib/.depend:194: /home/long/simon/uboot/uboot_Webee210/include/linux/string.h \
arch/arm/lib/.depend:195: /home/long/simon/uboot/uboot_Webee210/include/asm/string.h \
arch/arm/lib/.depend:196: /home/long/simon/uboot/uboot_Webee210/include/asm/ptrace.h \
arch/arm/lib/.depend:197: /home/long/simon/uboot/uboot_Webee210/include/asm/proc/ptrace.h \
arch/arm/lib/.depend:199: /home/long/simon/uboot/uboot_Webee210/include/part.h \
arch/arm/lib/.depend:200: /home/long/simon/uboot/uboot_Webee210/include/ide.h \
arch/arm/lib/.depend:201: /home/long/simon/uboot/uboot_Webee210/include/flash.h \
arch/arm/lib/.depend:202: /home/long/simon/uboot/uboot_Webee210/include/image.h \
arch/arm/lib/.depend:203: /home/long/simon/uboot/uboot_Webee210/include/compiler.h \
arch/arm/lib/.depend:205: /home/long/simon/uboot/uboot_Webee210/include/lmb.h \
arch/arm/lib/.depend:206: /home/long/simon/uboot/uboot_Webee210/include/asm/u-boot.h \
arch/arm/lib/.depend:207: /home/long/simon/uboot/uboot_Webee210/include/command.h \
arch/arm/lib/.depend:208: /home/long/simon/uboot/uboot_Webee210/include/asm/global_data.h \
arch/arm/lib/.depend:209: /home/long/simon/uboot/uboot_Webee210/include/asm/mach-types.h \
arch/arm/lib/.depend:210: /home/long/simon/uboot/uboot_Webee210/include/asm/setup.h \
arch/arm/lib/.depend:211: /home/long/simon/uboot/uboot_Webee210/include/asm/u-boot-arm.h \
arch/arm/lib/.depend:212: /home/long/simon/uboot/uboot_Webee210/include/net.h \
arch/arm/lib/.depend:213: /home/long/simon/uboot/uboot_Webee210/include/u-boot/crc.h \
arch/arm/lib/.depend:214: /home/long/simon/uboot/uboot_Webee210/include/asm/system.h
arch/arm/lib/.depend:216: /home/long/simon/uboot/uboot_Webee210/include/common.h \
arch/arm/lib/.depend:217: /home/long/simon/uboot/uboot_Webee210/include/config.h \
arch/arm/lib/.depend:218: /home/long/simon/uboot/uboot_Webee210/include/config_cmd_defaults.h \
arch/arm/lib/.depend:219: /home/long/simon/uboot/uboot_Webee210/include/config_defaults.h \
arch/arm/lib/.depend:220: /home/long/simon/uboot/uboot_Webee210/include/configs/webee210.h \
arch/arm/lib/.depend:221: /home/long/simon/uboot/uboot_Webee210/include/asm/arch/cpu.h \
arch/arm/lib/.depend:222: /home/long/simon/uboot/uboot_Webee210/include/asm/io.h \
arch/arm/lib/.depend:223: /home/long/simon/uboot/uboot_Webee210/include/linux/types.h \
arch/arm/lib/.depend:224: /home/long/simon/uboot/uboot_Webee210/include/linux/config.h \
arch/arm/lib/.depend:225: /home/long/simon/uboot/uboot_Webee210/include/linux/posix_types.h \
arch/arm/lib/.depend:226: /home/long/simon/uboot/uboot_Webee210/include/linux/stddef.h \
arch/arm/lib/.depend:227: /home/long/simon/uboot/uboot_Webee210/include/asm/posix_types.h \
arch/arm/lib/.depend:228: /home/long/simon/uboot/uboot_Webee210/include/asm/types.h \
arch/arm/lib/.depend:229: /home/long/simon/uboot/uboot_Webee210/include/asm/byteorder.h \
arch/arm/lib/.depend:230: /home/long/simon/uboot/uboot_Webee210/include/linux/byteorder/little_endian.h \
arch/arm/lib/.depend:231: /home/long/simon/uboot/uboot_Webee210/include/linux/byteorder/swab.h \
arch/arm/lib/.depend:232: /home/long/simon/uboot/uboot_Webee210/include/linux/byteorder/generic.h \
arch/arm/lib/.depend:233: /home/long/simon/uboot/uboot_Webee210/include/asm/memory.h \
arch/arm/lib/.depend:234: /home/long/simon/uboot/uboot_Webee210/include/config_cmd_default.h \
arch/arm/lib/.depend:235: /home/long/simon/uboot/uboot_Webee210/include/asm/config.h \
arch/arm/lib/.depend:236: /home/long/simon/uboot/uboot_Webee210/include/asm-offsets.h \
arch/arm/lib/.depend:237: /home/long/simon/uboot/uboot_Webee210/include/generated/generic-asm-offsets.h \
arch/arm/lib/.depend:238: /home/long/simon/uboot/uboot_Webee210/include/linux/bitops.h \
arch/arm/lib/.depend:239: /home/long/simon/uboot/uboot_Webee210/include/asm/bitops.h \
arch/arm/lib/.depend:240: /home/long/simon/uboot/uboot_Webee210/include/asm/proc/system.h \
arch/arm/lib/.depend:241: /home/long/simon/uboot/uboot_Webee210/include/linux/string.h \
arch/arm/lib/.depend:242: /home/long/simon/uboot/uboot_Webee210/include/asm/string.h \
arch/arm/lib/.depend:243: /home/long/simon/uboot/uboot_Webee210/include/asm/ptrace.h \
arch/arm/lib/.depend:244: /home/long/simon/uboot/uboot_Webee210/include/asm/proc/ptrace.h \
arch/arm/lib/.depend:246: /home/long/simon/uboot/uboot_Webee210/include/part.h \
arch/arm/lib/.depend:247: /home/long/simon/uboot/uboot_Webee210/include/ide.h \
arch/arm/lib/.depend:248: /home/long/simon/uboot/uboot_Webee210/include/flash.h \
arch/arm/lib/.depend:249: /home/long/simon/uboot/uboot_Webee210/include/image.h \
arch/arm/lib/.depend:250: /home/long/simon/uboot/uboot_Webee210/include/compiler.h \
arch/arm/lib/.depend:252: /home/long/simon/uboot/uboot_Webee210/include/lmb.h \
arch/arm/lib/.depend:253: /home/long/simon/uboot/uboot_Webee210/include/asm/u-boot.h \
arch/arm/lib/.depend:254: /home/long/simon/uboot/uboot_Webee210/include/command.h \
arch/arm/lib/.depend:255: /home/long/simon/uboot/uboot_Webee210/include/asm/global_data.h \
arch/arm/lib/.depend:256: /home/long/simon/uboot/uboot_Webee210/include/asm/mach-types.h \
arch/arm/lib/.depend:257: /home/long/simon/uboot/uboot_Webee210/include/asm/setup.h \
arch/arm/lib/.depend:258: /home/long/simon/uboot/uboot_Webee210/include/asm/u-boot-arm.h \
arch/arm/lib/.depend:259: /home/long/simon/uboot/uboot_Webee210/include/net.h \
arch/arm/lib/.depend:260: /home/long/simon/uboot/uboot_Webee210/include/u-boot/crc.h \
arch/arm/lib/.depend:261: /home/long/simon/uboot/uboot_Webee210/include/asm/proc-armv/ptrace.h
arch/arm/lib/.depend:262:reset.o: reset.c /home/long/simon/uboot/uboot_Webee210/include/common.h \
arch/arm/lib/.depend:263: /home/long/simon/uboot/uboot_Webee210/include/config.h \
arch/arm/lib/.depend:264: /home/long/simon/uboot/uboot_Webee210/include/config_cmd_defaults.h \
arch/arm/lib/.depend:265: /home/long/simon/uboot/uboot_Webee210/include/config_defaults.h \
arch/arm/lib/.depend:266: /home/long/simon/uboot/uboot_Webee210/include/configs/webee210.h \
arch/arm/lib/.depend:267: /home/long/simon/uboot/uboot_Webee210/include/asm/arch/cpu.h \
arch/arm/lib/.depend:268: /home/long/simon/uboot/uboot_Webee210/include/asm/io.h \
arch/arm/lib/.depend:269: /home/long/simon/uboot/uboot_Webee210/include/linux/types.h \
arch/arm/lib/.depend:270: /home/long/simon/uboot/uboot_Webee210/include/linux/config.h \
arch/arm/lib/.depend:271: /home/long/simon/uboot/uboot_Webee210/include/linux/posix_types.h \
arch/arm/lib/.depend:272: /home/long/simon/uboot/uboot_Webee210/include/linux/stddef.h \
arch/arm/lib/.depend:273: /home/long/simon/uboot/uboot_Webee210/include/asm/posix_types.h \
arch/arm/lib/.depend:274: /home/long/simon/uboot/uboot_Webee210/include/asm/types.h \
arch/arm/lib/.depend:275: /home/long/simon/uboot/uboot_Webee210/include/asm/byteorder.h \
arch/arm/lib/.depend:276: /home/long/simon/uboot/uboot_Webee210/include/linux/byteorder/little_endian.h \
arch/arm/lib/.depend:277: /home/long/simon/uboot/uboot_Webee210/include/linux/byteorder/swab.h \
arch/arm/lib/.depend:278: /home/long/simon/uboot/uboot_Webee210/include/linux/byteorder/generic.h \
arch/arm/lib/.depend:279: /home/long/simon/uboot/uboot_Webee210/include/asm/memory.h \
arch/arm/lib/.depend:280: /home/long/simon/uboot/uboot_Webee210/include/config_cmd_default.h \
arch/arm/lib/.depend:281: /home/long/simon/uboot/uboot_Webee210/include/asm/config.h \
arch/arm/lib/.depend:282: /home/long/simon/uboot/uboot_Webee210/include/asm-offsets.h \
arch/arm/lib/.depend:283: /home/long/simon/uboot/uboot_Webee210/include/generated/generic-asm-offsets.h \
arch/arm/lib/.depend:284: /home/long/simon/uboot/uboot_Webee210/include/linux/bitops.h \
arch/arm/lib/.depend:285: /home/long/simon/uboot/uboot_Webee210/include/asm/bitops.h \
arch/arm/lib/.depend:286: /home/long/simon/uboot/uboot_Webee210/include/asm/proc/system.h \
arch/arm/lib/.depend:287: /home/long/simon/uboot/uboot_Webee210/include/linux/string.h \
arch/arm/lib/.depend:288: /home/long/simon/uboot/uboot_Webee210/include/asm/string.h \
arch/arm/lib/.depend:289: /home/long/simon/uboot/uboot_Webee210/include/asm/ptrace.h \
arch/arm/lib/.depend:290: /home/long/simon/uboot/uboot_Webee210/include/asm/proc/ptrace.h \
arch/arm/lib/.depend:292: /home/long/simon/uboot/uboot_Webee210/include/part.h \
arch/arm/lib/.depend:293: /home/long/simon/uboot/uboot_Webee210/include/ide.h \
arch/arm/lib/.depend:294: /home/long/simon/uboot/uboot_Webee210/include/flash.h \
arch/arm/lib/.depend:295: /home/long/simon/uboot/uboot_Webee210/include/image.h \
arch/arm/lib/.depend:296: /home/long/simon/uboot/uboot_Webee210/include/compiler.h \
arch/arm/lib/.depend:298: /home/long/simon/uboot/uboot_Webee210/include/lmb.h \
arch/arm/lib/.depend:299: /home/long/simon/uboot/uboot_Webee210/include/asm/u-boot.h \
arch/arm/lib/.depend:300: /home/long/simon/uboot/uboot_Webee210/include/command.h \
arch/arm/lib/.depend:301: /home/long/simon/uboot/uboot_Webee210/include/asm/global_data.h \
arch/arm/lib/.depend:302: /home/long/simon/uboot/uboot_Webee210/include/asm/mach-types.h \
arch/arm/lib/.depend:303: /home/long/simon/uboot/uboot_Webee210/include/asm/setup.h \
arch/arm/lib/.depend:304: /home/long/simon/uboot/uboot_Webee210/include/asm/u-boot-arm.h \
arch/arm/lib/.depend:305: /home/long/simon/uboot/uboot_Webee210/include/net.h \
arch/arm/lib/.depend:306: /home/long/simon/uboot/uboot_Webee210/include/u-boot/crc.h
Binary file arch/arm/lib/reset.o matches
Binary file arch/arm/lib/interrupts.o matches
Binary file arch/arm/lib/bootm.o matches
arch/arm/lib/eabi_compat.c:21: printf("# Webee #\n");
Binary file arch/arm/lib/cache-cp15.o matches
Binary file arch/arm/lib/eabi_compat.o matches
Binary file arch/arm/lib/cache.o matches
Binary file arch/arm/lib/board.o matches
Binary file arch/arm/lib/libarm.o matches
arch/arm/cpu/armv7/.depend:2: /home/long/simon/uboot/uboot_Webee210/include/asm-offsets.h \
arch/arm/cpu/armv7/.depend:3: /home/long/simon/uboot/uboot_Webee210/include/generated/generic-asm-offsets.h \
arch/arm/cpu/armv7/.depend:4: /home/long/simon/uboot/uboot_Webee210/include/config.h \
arch/arm/cpu/armv7/.depend:5: /home/long/simon/uboot/uboot_Webee210/include/config_cmd_defaults.h \
arch/arm/cpu/armv7/.depend:6: /home/long/simon/uboot/uboot_Webee210/include/config_defaults.h \
arch/arm/cpu/armv7/.depend:7: /home/long/simon/uboot/uboot_Webee210/include/configs/webee210.h \
arch/arm/cpu/armv7/.depend:8: /home/long/simon/uboot/uboot_Webee210/include/asm/arch/cpu.h \
arch/arm/cpu/armv7/.depend:9: /home/long/simon/uboot/uboot_Webee210/include/asm/io.h \
arch/arm/cpu/armv7/.depend:10: /home/long/simon/uboot/uboot_Webee210/include/linux/types.h \
arch/arm/cpu/armv7/.depend:11: /home/long/simon/uboot/uboot_Webee210/include/linux/config.h \
arch/arm/cpu/armv7/.depend:12: /home/long/simon/uboot/uboot_Webee210/include/linux/posix_types.h \
arch/arm/cpu/armv7/.depend:13: /home/long/simon/uboot/uboot_Webee210/include/linux/stddef.h \
arch/arm/cpu/armv7/.depend:14: /home/long/simon/uboot/uboot_Webee210/include/asm/posix_types.h \
arch/arm/cpu/armv7/.depend:15: /home/long/simon/uboot/uboot_Webee210/include/asm/types.h \
arch/arm/cpu/armv7/.depend:16: /home/long/simon/uboot/uboot_Webee210/include/asm/byteorder.h \
arch/arm/cpu/armv7/.depend:17: /home/long/simon/uboot/uboot_Webee210/include/linux/byteorder/little_endian.h \
arch/arm/cpu/armv7/.depend:18: /home/long/simon/uboot/uboot_Webee210/include/linux/byteorder/swab.h \
arch/arm/cpu/armv7/.depend:19: /home/long/simon/uboot/uboot_Webee210/include/linux/byteorder/generic.h \
arch/arm/cpu/armv7/.depend:20: /home/long/simon/uboot/uboot_Webee210/include/asm/memory.h \
arch/arm/cpu/armv7/.depend:21: /home/long/simon/uboot/uboot_Webee210/include/config_cmd_default.h \
arch/arm/cpu/armv7/.depend:22: /home/long/simon/uboot/uboot_Webee210/include/asm/config.h \
arch/arm/cpu/armv7/.depend:23: /home/long/simon/uboot/uboot_Webee210/include/version.h \
arch/arm/cpu/armv7/.depend:24: /home/long/simon/uboot/uboot_Webee210/include/timestamp.h \
arch/arm/cpu/armv7/.depend:25: /home/long/simon/uboot/uboot_Webee210/include/timestamp_autogenerated.h \
arch/arm/cpu/armv7/.depend:26: /home/long/simon/uboot/uboot_Webee210/include/version_autogenerated.h \
arch/arm/cpu/armv7/.depend:27: /home/long/simon/uboot/uboot_Webee210/include/common.h \
arch/arm/cpu/armv7/.depend:28: /home/long/simon/uboot/uboot_Webee210/include/linux/bitops.h \
arch/arm/cpu/armv7/.depend:29: /home/long/simon/uboot/uboot_Webee210/include/asm/bitops.h \
arch/arm/cpu/armv7/.depend:30: /home/long/simon/uboot/uboot_Webee210/include/asm/proc/system.h \
arch/arm/cpu/armv7/.depend:31: /home/long/simon/uboot/uboot_Webee210/include/linux/string.h \
arch/arm/cpu/armv7/.depend:32: /home/long/simon/uboot/uboot_Webee210/include/asm/string.h \
arch/arm/cpu/armv7/.depend:33: /home/long/simon/uboot/uboot_Webee210/include/asm/ptrace.h \
arch/arm/cpu/armv7/.depend:34: /home/long/simon/uboot/uboot_Webee210/include/asm/proc/ptrace.h \
arch/arm/cpu/armv7/.depend:36: /home/long/simon/uboot/uboot_Webee210/include/part.h \
arch/arm/cpu/armv7/.depend:37: /home/long/simon/uboot/uboot_Webee210/include/ide.h \
arch/arm/cpu/armv7/.depend:38: /home/long/simon/uboot/uboot_Webee210/include/flash.h \
arch/arm/cpu/armv7/.depend:39: /home/long/simon/uboot/uboot_Webee210/include/image.h \
arch/arm/cpu/armv7/.depend:40: /home/long/simon/uboot/uboot_Webee210/include/compiler.h \
arch/arm/cpu/armv7/.depend:42: /home/long/simon/uboot/uboot_Webee210/include/lmb.h \
arch/arm/cpu/armv7/.depend:43: /home/long/simon/uboot/uboot_Webee210/include/asm/u-boot.h \
arch/arm/cpu/armv7/.depend:44: /home/long/simon/uboot/uboot_Webee210/include/command.h \
arch/arm/cpu/armv7/.depend:45: /home/long/simon/uboot/uboot_Webee210/include/asm/global_data.h \
arch/arm/cpu/armv7/.depend:46: /home/long/simon/uboot/uboot_Webee210/include/asm/mach-types.h \
arch/arm/cpu/armv7/.depend:47: /home/long/simon/uboot/uboot_Webee210/include/asm/setup.h \
arch/arm/cpu/armv7/.depend:48: /home/long/simon/uboot/uboot_Webee210/include/asm/u-boot-arm.h \
arch/arm/cpu/armv7/.depend:49: /home/long/simon/uboot/uboot_Webee210/include/net.h \
arch/arm/cpu/armv7/.depend:50: /home/long/simon/uboot/uboot_Webee210/include/u-boot/crc.h \
arch/arm/cpu/armv7/.depend:51: /home/long/simon/uboot/uboot_Webee210/include/s5pc110.h \
arch/arm/cpu/armv7/.depend:52: /home/long/simon/uboot/uboot_Webee210/include/asm/arch/hardware.h \
arch/arm/cpu/armv7/.depend:53: /home/long/simon/uboot/uboot_Webee210/include/asm/sizes.h \
arch/arm/cpu/armv7/.depend:54: /home/long/simon/uboot/uboot_Webee210/include/s5pc11x.h
arch/arm/cpu/armv7/.depend:56: /home/long/simon/uboot/uboot_Webee210/include/linux/types.h \
arch/arm/cpu/armv7/.depend:57: /home/long/simon/uboot/uboot_Webee210/include/linux/config.h \
arch/arm/cpu/armv7/.depend:58: /home/long/simon/uboot/uboot_Webee210/include/linux/posix_types.h \
arch/arm/cpu/armv7/.depend:59: /home/long/simon/uboot/uboot_Webee210/include/linux/stddef.h \
arch/arm/cpu/armv7/.depend:60: /home/long/simon/uboot/uboot_Webee210/include/asm/posix_types.h \
arch/arm/cpu/armv7/.depend:61: /home/long/simon/uboot/uboot_Webee210/include/asm/types.h \
arch/arm/cpu/armv7/.depend:62: /home/long/simon/uboot/uboot_Webee210/include/common.h \
arch/arm/cpu/armv7/.depend:63: /home/long/simon/uboot/uboot_Webee210/include/config.h \
arch/arm/cpu/armv7/.depend:64: /home/long/simon/uboot/uboot_Webee210/include/config_cmd_defaults.h \
arch/arm/cpu/armv7/.depend:65: /home/long/simon/uboot/uboot_Webee210/include/config_defaults.h \
arch/arm/cpu/armv7/.depend:66: /home/long/simon/uboot/uboot_Webee210/include/configs/webee210.h \
arch/arm/cpu/armv7/.depend:67: /home/long/simon/uboot/uboot_Webee210/include/asm/arch/cpu.h \
arch/arm/cpu/armv7/.depend:68: /home/long/simon/uboot/uboot_Webee210/include/asm/io.h \
arch/arm/cpu/armv7/.depend:69: /home/long/simon/uboot/uboot_Webee210/include/asm/byteorder.h \
arch/arm/cpu/armv7/.depend:70: /home/long/simon/uboot/uboot_Webee210/include/linux/byteorder/little_endian.h \
arch/arm/cpu/armv7/.depend:71: /home/long/simon/uboot/uboot_Webee210/include/linux/byteorder/swab.h \
arch/arm/cpu/armv7/.depend:72: /home/long/simon/uboot/uboot_Webee210/include/linux/byteorder/generic.h \
arch/arm/cpu/armv7/.depend:73: /home/long/simon/uboot/uboot_Webee210/include/asm/memory.h \
arch/arm/cpu/armv7/.depend:74: /home/long/simon/uboot/uboot_Webee210/include/config_cmd_default.h \
arch/arm/cpu/armv7/.depend:75: /home/long/simon/uboot/uboot_Webee210/include/asm/config.h \
arch/arm/cpu/armv7/.depend:76: /home/long/simon/uboot/uboot_Webee210/include/asm-offsets.h \
arch/arm/cpu/armv7/.depend:77: /home/long/simon/uboot/uboot_Webee210/include/generated/generic-asm-offsets.h \
arch/arm/cpu/armv7/.depend:78: /home/long/simon/uboot/uboot_Webee210/include/linux/bitops.h \
arch/arm/cpu/armv7/.depend:79: /home/long/simon/uboot/uboot_Webee210/include/asm/bitops.h \
arch/arm/cpu/armv7/.depend:80: /home/long/simon/uboot/uboot_Webee210/include/asm/proc/system.h \
arch/arm/cpu/armv7/.depend:81: /home/long/simon/uboot/uboot_Webee210/include/linux/string.h \
arch/arm/cpu/armv7/.depend:82: /home/long/simon/uboot/uboot_Webee210/include/asm/string.h \
arch/arm/cpu/armv7/.depend:83: /home/long/simon/uboot/uboot_Webee210/include/asm/ptrace.h \
arch/arm/cpu/armv7/.depend:84: /home/long/simon/uboot/uboot_Webee210/include/asm/proc/ptrace.h \
arch/arm/cpu/armv7/.depend:86: /home/long/simon/uboot/uboot_Webee210/include/part.h \
arch/arm/cpu/armv7/.depend:87: /home/long/simon/uboot/uboot_Webee210/include/ide.h \
arch/arm/cpu/armv7/.depend:88: /home/long/simon/uboot/uboot_Webee210/include/flash.h \
arch/arm/cpu/armv7/.depend:89: /home/long/simon/uboot/uboot_Webee210/include/image.h \
arch/arm/cpu/armv7/.depend:90: /home/long/simon/uboot/uboot_Webee210/include/compiler.h \
arch/arm/cpu/armv7/.depend:92: /home/long/simon/uboot/uboot_Webee210/include/lmb.h \
arch/arm/cpu/armv7/.depend:93: /home/long/simon/uboot/uboot_Webee210/include/asm/u-boot.h \
arch/arm/cpu/armv7/.depend:94: /home/long/simon/uboot/uboot_Webee210/include/command.h \
arch/arm/cpu/armv7/.depend:95: /home/long/simon/uboot/uboot_Webee210/include/asm/global_data.h \
arch/arm/cpu/armv7/.depend:96: /home/long/simon/uboot/uboot_Webee210/include/asm/mach-types.h \
arch/arm/cpu/armv7/.depend:97: /home/long/simon/uboot/uboot_Webee210/include/asm/setup.h \
arch/arm/cpu/armv7/.depend:98: /home/long/simon/uboot/uboot_Webee210/include/asm/u-boot-arm.h \
arch/arm/cpu/armv7/.depend:99: /home/long/simon/uboot/uboot_Webee210/include/net.h \
arch/arm/cpu/armv7/.depend:100: /home/long/simon/uboot/uboot_Webee210/include/u-boot/crc.h \
arch/arm/cpu/armv7/.depend:101: /home/long/simon/uboot/uboot_Webee210/include/asm/armv7.h \
arch/arm/cpu/armv7/.depend:102: /home/long/simon/uboot/uboot_Webee210/include/asm/utils.h
arch/arm/cpu/armv7/.depend:103:cpu.o: cpu.c /home/long/simon/uboot/uboot_Webee210/include/common.h \
arch/arm/cpu/armv7/.depend:104: /home/long/simon/uboot/uboot_Webee210/include/config.h \
arch/arm/cpu/armv7/.depend:105: /home/long/simon/uboot/uboot_Webee210/include/config_cmd_defaults.h \
arch/arm/cpu/armv7/.depend:106: /home/long/simon/uboot/uboot_Webee210/include/config_defaults.h \
arch/arm/cpu/armv7/.depend:107: /home/long/simon/uboot/uboot_Webee210/include/configs/webee210.h \
arch/arm/cpu/armv7/.depend:108: /home/long/simon/uboot/uboot_Webee210/include/asm/arch/cpu.h \
arch/arm/cpu/armv7/.depend:109: /home/long/simon/uboot/uboot_Webee210/include/asm/io.h \
arch/arm/cpu/armv7/.depend:110: /home/long/simon/uboot/uboot_Webee210/include/linux/types.h \
arch/arm/cpu/armv7/.depend:111: /home/long/simon/uboot/uboot_Webee210/include/linux/config.h \
arch/arm/cpu/armv7/.depend:112: /home/long/simon/uboot/uboot_Webee210/include/linux/posix_types.h \
arch/arm/cpu/armv7/.depend:113: /home/long/simon/uboot/uboot_Webee210/include/linux/stddef.h \
arch/arm/cpu/armv7/.depend:114: /home/long/simon/uboot/uboot_Webee210/include/asm/posix_types.h \
arch/arm/cpu/armv7/.depend:115: /home/long/simon/uboot/uboot_Webee210/include/asm/types.h \
arch/arm/cpu/armv7/.depend:116: /home/long/simon/uboot/uboot_Webee210/include/asm/byteorder.h \
arch/arm/cpu/armv7/.depend:117: /home/long/simon/uboot/uboot_Webee210/include/linux/byteorder/little_endian.h \
arch/arm/cpu/armv7/.depend:118: /home/long/simon/uboot/uboot_Webee210/include/linux/byteorder/swab.h \
arch/arm/cpu/armv7/.depend:119: /home/long/simon/uboot/uboot_Webee210/include/linux/byteorder/generic.h \
arch/arm/cpu/armv7/.depend:120: /home/long/simon/uboot/uboot_Webee210/include/asm/memory.h \
arch/arm/cpu/armv7/.depend:121: /home/long/simon/uboot/uboot_Webee210/include/config_cmd_default.h \
arch/arm/cpu/armv7/.depend:122: /home/long/simon/uboot/uboot_Webee210/include/asm/config.h \
arch/arm/cpu/armv7/.depend:123: /home/long/simon/uboot/uboot_Webee210/include/asm-offsets.h \
arch/arm/cpu/armv7/.depend:124: /home/long/simon/uboot/uboot_Webee210/include/generated/generic-asm-offsets.h \
arch/arm/cpu/armv7/.depend:125: /home/long/simon/uboot/uboot_Webee210/include/linux/bitops.h \
arch/arm/cpu/armv7/.depend:126: /home/long/simon/uboot/uboot_Webee210/include/asm/bitops.h \
arch/arm/cpu/armv7/.depend:127: /home/long/simon/uboot/uboot_Webee210/include/asm/proc/system.h \
arch/arm/cpu/armv7/.depend:128: /home/long/simon/uboot/uboot_Webee210/include/linux/string.h \
arch/arm/cpu/armv7/.depend:129: /home/long/simon/uboot/uboot_Webee210/include/asm/string.h \
arch/arm/cpu/armv7/.depend:130: /home/long/simon/uboot/uboot_Webee210/include/asm/ptrace.h \
arch/arm/cpu/armv7/.depend:131: /home/long/simon/uboot/uboot_Webee210/include/asm/proc/ptrace.h \
arch/arm/cpu/armv7/.depend:133: /home/long/simon/uboot/uboot_Webee210/include/part.h \
arch/arm/cpu/armv7/.depend:134: /home/long/simon/uboot/uboot_Webee210/include/ide.h \
arch/arm/cpu/armv7/.depend:135: /home/long/simon/uboot/uboot_Webee210/include/flash.h \
arch/arm/cpu/armv7/.depend:136: /home/long/simon/uboot/uboot_Webee210/include/image.h \
arch/arm/cpu/armv7/.depend:137: /home/long/simon/uboot/uboot_Webee210/include/compiler.h \
arch/arm/cpu/armv7/.depend:139: /home/long/simon/uboot/uboot_Webee210/include/lmb.h \
arch/arm/cpu/armv7/.depend:140: /home/long/simon/uboot/uboot_Webee210/include/asm/u-boot.h \
arch/arm/cpu/armv7/.depend:141: /home/long/simon/uboot/uboot_Webee210/include/command.h \
arch/arm/cpu/armv7/.depend:142: /home/long/simon/uboot/uboot_Webee210/include/asm/global_data.h \
arch/arm/cpu/armv7/.depend:143: /home/long/simon/uboot/uboot_Webee210/include/asm/mach-types.h \
arch/arm/cpu/armv7/.depend:144: /home/long/simon/uboot/uboot_Webee210/include/asm/setup.h \
arch/arm/cpu/armv7/.depend:145: /home/long/simon/uboot/uboot_Webee210/include/asm/u-boot-arm.h \
arch/arm/cpu/armv7/.depend:146: /home/long/simon/uboot/uboot_Webee210/include/net.h \
arch/arm/cpu/armv7/.depend:147: /home/long/simon/uboot/uboot_Webee210/include/u-boot/crc.h \
arch/arm/cpu/armv7/.depend:148: /home/long/simon/uboot/uboot_Webee210/include/asm/system.h \
arch/arm/cpu/armv7/.depend:149: /home/long/simon/uboot/uboot_Webee210/include/asm/cache.h \
arch/arm/cpu/armv7/.depend:150: /home/long/simon/uboot/uboot_Webee210/include/asm/armv7.h
arch/arm/cpu/armv7/.depend:151:syslib.o: syslib.c /home/long/simon/uboot/uboot_Webee210/include/common.h \
arch/arm/cpu/armv7/.depend:152: /home/long/simon/uboot/uboot_Webee210/include/config.h \
arch/arm/cpu/armv7/.depend:153: /home/long/simon/uboot/uboot_Webee210/include/config_cmd_defaults.h \
arch/arm/cpu/armv7/.depend:154: /home/long/simon/uboot/uboot_Webee210/include/config_defaults.h \
arch/arm/cpu/armv7/.depend:155: /home/long/simon/uboot/uboot_Webee210/include/configs/webee210.h \
arch/arm/cpu/armv7/.depend:156: /home/long/simon/uboot/uboot_Webee210/include/asm/arch/cpu.h \
arch/arm/cpu/armv7/.depend:157: /home/long/simon/uboot/uboot_Webee210/include/asm/io.h \
arch/arm/cpu/armv7/.depend:158: /home/long/simon/uboot/uboot_Webee210/include/linux/types.h \
arch/arm/cpu/armv7/.depend:159: /home/long/simon/uboot/uboot_Webee210/include/linux/config.h \
arch/arm/cpu/armv7/.depend:160: /home/long/simon/uboot/uboot_Webee210/include/linux/posix_types.h \
arch/arm/cpu/armv7/.depend:161: /home/long/simon/uboot/uboot_Webee210/include/linux/stddef.h \
arch/arm/cpu/armv7/.depend:162: /home/long/simon/uboot/uboot_Webee210/include/asm/posix_types.h \
arch/arm/cpu/armv7/.depend:163: /home/long/simon/uboot/uboot_Webee210/include/asm/types.h \
arch/arm/cpu/armv7/.depend:164: /home/long/simon/uboot/uboot_Webee210/include/asm/byteorder.h \
arch/arm/cpu/armv7/.depend:165: /home/long/simon/uboot/uboot_Webee210/include/linux/byteorder/little_endian.h \
arch/arm/cpu/armv7/.depend:166: /home/long/simon/uboot/uboot_Webee210/include/linux/byteorder/swab.h \
arch/arm/cpu/armv7/.depend:167: /home/long/simon/uboot/uboot_Webee210/include/linux/byteorder/generic.h \
arch/arm/cpu/armv7/.depend:168: /home/long/simon/uboot/uboot_Webee210/include/asm/memory.h \
arch/arm/cpu/armv7/.depend:169: /home/long/simon/uboot/uboot_Webee210/include/config_cmd_default.h \
arch/arm/cpu/armv7/.depend:170: /home/long/simon/uboot/uboot_Webee210/include/asm/config.h \
arch/arm/cpu/armv7/.depend:171: /home/long/simon/uboot/uboot_Webee210/include/asm-offsets.h \
arch/arm/cpu/armv7/.depend:172: /home/long/simon/uboot/uboot_Webee210/include/generated/generic-asm-offsets.h \
arch/arm/cpu/armv7/.depend:173: /home/long/simon/uboot/uboot_Webee210/include/linux/bitops.h \
arch/arm/cpu/armv7/.depend:174: /home/long/simon/uboot/uboot_Webee210/include/asm/bitops.h \
arch/arm/cpu/armv7/.depend:175: /home/long/simon/uboot/uboot_Webee210/include/asm/proc/system.h \
arch/arm/cpu/armv7/.depend:176: /home/long/simon/uboot/uboot_Webee210/include/linux/string.h \
arch/arm/cpu/armv7/.depend:177: /home/long/simon/uboot/uboot_Webee210/include/asm/string.h \
arch/arm/cpu/armv7/.depend:178: /home/long/simon/uboot/uboot_Webee210/include/asm/ptrace.h \
arch/arm/cpu/armv7/.depend:179: /home/long/simon/uboot/uboot_Webee210/include/asm/proc/ptrace.h \
arch/arm/cpu/armv7/.depend:181: /home/long/simon/uboot/uboot_Webee210/include/part.h \
arch/arm/cpu/armv7/.depend:182: /home/long/simon/uboot/uboot_Webee210/include/ide.h \
arch/arm/cpu/armv7/.depend:183: /home/long/simon/uboot/uboot_Webee210/include/flash.h \
arch/arm/cpu/armv7/.depend:184: /home/long/simon/uboot/uboot_Webee210/include/image.h \
arch/arm/cpu/armv7/.depend:185: /home/long/simon/uboot/uboot_Webee210/include/compiler.h \
arch/arm/cpu/armv7/.depend:187: /home/long/simon/uboot/uboot_Webee210/include/lmb.h \
arch/arm/cpu/armv7/.depend:188: /home/long/simon/uboot/uboot_Webee210/include/asm/u-boot.h \
arch/arm/cpu/armv7/.depend:189: /home/long/simon/uboot/uboot_Webee210/include/command.h \
arch/arm/cpu/armv7/.depend:190: /home/long/simon/uboot/uboot_Webee210/include/asm/global_data.h \
arch/arm/cpu/armv7/.depend:191: /home/long/simon/uboot/uboot_Webee210/include/asm/mach-types.h \
arch/arm/cpu/armv7/.depend:192: /home/long/simon/uboot/uboot_Webee210/include/asm/setup.h \
arch/arm/cpu/armv7/.depend:193: /home/long/simon/uboot/uboot_Webee210/include/asm/u-boot-arm.h \
arch/arm/cpu/armv7/.depend:194: /home/long/simon/uboot/uboot_Webee210/include/net.h \
arch/arm/cpu/armv7/.depend:195: /home/long/simon/uboot/uboot_Webee210/include/u-boot/crc.h
Binary file arch/arm/cpu/armv7/libarmv7.o matches
arch/arm/cpu/armv7/s5pc1xx/.depend:3: /home/long/simon/uboot/uboot_Webee210/include/asm/arch/cpu.h \
arch/arm/cpu/armv7/s5pc1xx/.depend:4: /home/long/simon/uboot/uboot_Webee210/include/asm/io.h \
arch/arm/cpu/armv7/s5pc1xx/.depend:5: /home/long/simon/uboot/uboot_Webee210/include/linux/types.h \
arch/arm/cpu/armv7/s5pc1xx/.depend:6: /home/long/simon/uboot/uboot_Webee210/include/linux/config.h \
arch/arm/cpu/armv7/s5pc1xx/.depend:7: /home/long/simon/uboot/uboot_Webee210/include/linux/posix_types.h \
arch/arm/cpu/armv7/s5pc1xx/.depend:8: /home/long/simon/uboot/uboot_Webee210/include/linux/stddef.h \
arch/arm/cpu/armv7/s5pc1xx/.depend:9: /home/long/simon/uboot/uboot_Webee210/include/asm/posix_types.h \
arch/arm/cpu/armv7/s5pc1xx/.depend:10: /home/long/simon/uboot/uboot_Webee210/include/asm/types.h \
arch/arm/cpu/armv7/s5pc1xx/.depend:11: /home/long/simon/uboot/uboot_Webee210/include/asm/byteorder.h \
arch/arm/cpu/armv7/s5pc1xx/.depend:12: /home/long/simon/uboot/uboot_Webee210/include/linux/byteorder/little_endian.h \
arch/arm/cpu/armv7/s5pc1xx/.depend:13: /home/long/simon/uboot/uboot_Webee210/include/linux/byteorder/swab.h \
arch/arm/cpu/armv7/s5pc1xx/.depend:14: /home/long/simon/uboot/uboot_Webee210/include/linux/byteorder/generic.h \
arch/arm/cpu/armv7/s5pc1xx/.depend:15: /home/long/simon/uboot/uboot_Webee210/include/asm/memory.h
arch/arm/cpu/armv7/s5pc1xx/.depend:16:clock.o: clock.c /home/long/simon/uboot/uboot_Webee210/include/common.h \
arch/arm/cpu/armv7/s5pc1xx/.depend:17: /home/long/simon/uboot/uboot_Webee210/include/config.h \
arch/arm/cpu/armv7/s5pc1xx/.depend:18: /home/long/simon/uboot/uboot_Webee210/include/config_cmd_defaults.h \
arch/arm/cpu/armv7/s5pc1xx/.depend:19: /home/long/simon/uboot/uboot_Webee210/include/config_defaults.h \
arch/arm/cpu/armv7/s5pc1xx/.depend:20: /home/long/simon/uboot/uboot_Webee210/include/configs/webee210.h \
arch/arm/cpu/armv7/s5pc1xx/.depend:21: /home/long/simon/uboot/uboot_Webee210/include/asm/arch/cpu.h \
arch/arm/cpu/armv7/s5pc1xx/.depend:22: /home/long/simon/uboot/uboot_Webee210/include/asm/io.h \
arch/arm/cpu/armv7/s5pc1xx/.depend:23: /home/long/simon/uboot/uboot_Webee210/include/linux/types.h \
arch/arm/cpu/armv7/s5pc1xx/.depend:24: /home/long/simon/uboot/uboot_Webee210/include/linux/config.h \
arch/arm/cpu/armv7/s5pc1xx/.depend:25: /home/long/simon/uboot/uboot_Webee210/include/linux/posix_types.h \
arch/arm/cpu/armv7/s5pc1xx/.depend:26: /home/long/simon/uboot/uboot_Webee210/include/linux/stddef.h \
arch/arm/cpu/armv7/s5pc1xx/.depend:27: /home/long/simon/uboot/uboot_Webee210/include/asm/posix_types.h \
arch/arm/cpu/armv7/s5pc1xx/.depend:28: /home/long/simon/uboot/uboot_Webee210/include/asm/types.h \
arch/arm/cpu/armv7/s5pc1xx/.depend:29: /home/long/simon/uboot/uboot_Webee210/include/asm/byteorder.h \
arch/arm/cpu/armv7/s5pc1xx/.depend:30: /home/long/simon/uboot/uboot_Webee210/include/linux/byteorder/little_endian.h \
arch/arm/cpu/armv7/s5pc1xx/.depend:31: /home/long/simon/uboot/uboot_Webee210/include/linux/byteorder/swab.h \
arch/arm/cpu/armv7/s5pc1xx/.depend:32: /home/long/simon/uboot/uboot_Webee210/include/linux/byteorder/generic.h \
arch/arm/cpu/armv7/s5pc1xx/.depend:33: /home/long/simon/uboot/uboot_Webee210/include/asm/memory.h \
arch/arm/cpu/armv7/s5pc1xx/.depend:34: /home/long/simon/uboot/uboot_Webee210/include/config_cmd_default.h \
arch/arm/cpu/armv7/s5pc1xx/.depend:35: /home/long/simon/uboot/uboot_Webee210/include/asm/config.h \
arch/arm/cpu/armv7/s5pc1xx/.depend:36: /home/long/simon/uboot/uboot_Webee210/include/asm-offsets.h \
arch/arm/cpu/armv7/s5pc1xx/.depend:37: /home/long/simon/uboot/uboot_Webee210/include/generated/generic-asm-offsets.h \
arch/arm/cpu/armv7/s5pc1xx/.depend:38: /home/long/simon/uboot/uboot_Webee210/include/linux/bitops.h \
arch/arm/cpu/armv7/s5pc1xx/.depend:39: /home/long/simon/uboot/uboot_Webee210/include/asm/bitops.h \
arch/arm/cpu/armv7/s5pc1xx/.depend:40: /home/long/simon/uboot/uboot_Webee210/include/asm/proc/system.h \
arch/arm/cpu/armv7/s5pc1xx/.depend:41: /home/long/simon/uboot/uboot_Webee210/include/linux/string.h \
arch/arm/cpu/armv7/s5pc1xx/.depend:42: /home/long/simon/uboot/uboot_Webee210/include/asm/string.h \
arch/arm/cpu/armv7/s5pc1xx/.depend:43: /home/long/simon/uboot/uboot_Webee210/include/asm/ptrace.h \
arch/arm/cpu/armv7/s5pc1xx/.depend:44: /home/long/simon/uboot/uboot_Webee210/include/asm/proc/ptrace.h \
arch/arm/cpu/armv7/s5pc1xx/.depend:46: /home/long/simon/uboot/uboot_Webee210/include/part.h \
arch/arm/cpu/armv7/s5pc1xx/.depend:47: /home/long/simon/uboot/uboot_Webee210/include/ide.h \
arch/arm/cpu/armv7/s5pc1xx/.depend:48: /home/long/simon/uboot/uboot_Webee210/include/flash.h \
arch/arm/cpu/armv7/s5pc1xx/.depend:49: /home/long/simon/uboot/uboot_Webee210/include/image.h \
arch/arm/cpu/armv7/s5pc1xx/.depend:50: /home/long/simon/uboot/uboot_Webee210/include/compiler.h \
arch/arm/cpu/armv7/s5pc1xx/.depend:52: /home/long/simon/uboot/uboot_Webee210/include/lmb.h \
arch/arm/cpu/armv7/s5pc1xx/.depend:53: /home/long/simon/uboot/uboot_Webee210/include/asm/u-boot.h \
arch/arm/cpu/armv7/s5pc1xx/.depend:54: /home/long/simon/uboot/uboot_Webee210/include/command.h \
arch/arm/cpu/armv7/s5pc1xx/.depend:55: /home/long/simon/uboot/uboot_Webee210/include/asm/global_data.h \
arch/arm/cpu/armv7/s5pc1xx/.depend:56: /home/long/simon/uboot/uboot_Webee210/include/asm/mach-types.h \
arch/arm/cpu/armv7/s5pc1xx/.depend:57: /home/long/simon/uboot/uboot_Webee210/include/asm/setup.h \
arch/arm/cpu/armv7/s5pc1xx/.depend:58: /home/long/simon/uboot/uboot_Webee210/include/asm/u-boot-arm.h \
arch/arm/cpu/armv7/s5pc1xx/.depend:59: /home/long/simon/uboot/uboot_Webee210/include/net.h \
arch/arm/cpu/armv7/s5pc1xx/.depend:60: /home/long/simon/uboot/uboot_Webee210/include/u-boot/crc.h \
arch/arm/cpu/armv7/s5pc1xx/.depend:61: /home/long/simon/uboot/uboot_Webee210/include/asm/arch/clock.h \
arch/arm/cpu/armv7/s5pc1xx/.depend:62: /home/long/simon/uboot/uboot_Webee210/include/asm/arch/clk.h
Binary file arch/arm/cpu/armv7/s5pc1xx/clock.o matches
Binary file arch/arm/cpu/armv7/s5pc1xx/reset.o matches
Binary file arch/arm/cpu/armv7/s5pc1xx/libs5pc1xx.o matches
Binary file arch/arm/cpu/armv7/s5pc1xx/cache.o matches
Binary file arch/arm/cpu/armv7/syslib.o matches
Binary file arch/arm/cpu/armv7/s5p-common/cpu_info.o matches
Binary file arch/arm/cpu/armv7/s5p-common/timer.o matches
Binary file arch/arm/cpu/armv7/s5p-common/sromc.o matches
Binary file arch/arm/cpu/armv7/s5p-common/pwm.o matches
Binary file arch/arm/cpu/armv7/s5p-common/libs5p-common.o matches
Binary file arch/arm/cpu/armv7/cpu.o matches
Binary file arch/arm/cpu/armv7/start.o matches
Binary file arch/arm/cpu/armv7/cache_v7.o matches
board/samsung/webee210/.depend:2: /home/long/simon/uboot/uboot_Webee210/include/config.h \
board/samsung/webee210/.depend:3: /home/long/simon/uboot/uboot_Webee210/include/config_cmd_defaults.h \
board/samsung/webee210/.depend:4: /home/long/simon/uboot/uboot_Webee210/include/config_defaults.h \
board/samsung/webee210/.depend:5: /home/long/simon/uboot/uboot_Webee210/include/configs/webee210.h \
board/samsung/webee210/.depend:6: /home/long/simon/uboot/uboot_Webee210/include/asm/arch/cpu.h \
board/samsung/webee210/.depend:7: /home/long/simon/uboot/uboot_Webee210/include/asm/io.h \
board/samsung/webee210/.depend:8: /home/long/simon/uboot/uboot_Webee210/include/linux/types.h \
board/samsung/webee210/.depend:9: /home/long/simon/uboot/uboot_Webee210/include/linux/config.h \
board/samsung/webee210/.depend:10: /home/long/simon/uboot/uboot_Webee210/include/linux/posix_types.h \
board/samsung/webee210/.depend:11: /home/long/simon/uboot/uboot_Webee210/include/linux/stddef.h \
board/samsung/webee210/.depend:12: /home/long/simon/uboot/uboot_Webee210/include/asm/posix_types.h \
board/samsung/webee210/.depend:13: /home/long/simon/uboot/uboot_Webee210/include/asm/types.h \
board/samsung/webee210/.depend:14: /home/long/simon/uboot/uboot_Webee210/include/asm/byteorder.h \
board/samsung/webee210/.depend:15: /home/long/simon/uboot/uboot_Webee210/include/linux/byteorder/little_endian.h \
board/samsung/webee210/.depend:16: /home/long/simon/uboot/uboot_Webee210/include/linux/byteorder/swab.h \
board/samsung/webee210/.depend:17: /home/long/simon/uboot/uboot_Webee210/include/linux/byteorder/generic.h \
board/samsung/webee210/.depend:18: /home/long/simon/uboot/uboot_Webee210/include/asm/memory.h \
board/samsung/webee210/.depend:19: /home/long/simon/uboot/uboot_Webee210/include/config_cmd_default.h \
board/samsung/webee210/.depend:20: /home/long/simon/uboot/uboot_Webee210/include/asm/config.h \
board/samsung/webee210/.depend:21: /home/long/simon/uboot/uboot_Webee210/include/version.h \
board/samsung/webee210/.depend:22: /home/long/simon/uboot/uboot_Webee210/include/timestamp.h \
board/samsung/webee210/.depend:23: /home/long/simon/uboot/uboot_Webee210/include/timestamp_autogenerated.h \
board/samsung/webee210/.depend:24: /home/long/simon/uboot/uboot_Webee210/include/version_autogenerated.h \
board/samsung/webee210/.depend:25: /home/long/simon/uboot/uboot_Webee210/include/s5pc110.h \
board/samsung/webee210/.depend:26: /home/long/simon/uboot/uboot_Webee210/include/asm/arch/hardware.h \
board/samsung/webee210/.depend:27: /home/long/simon/uboot/uboot_Webee210/include/asm/sizes.h \
board/samsung/webee210/.depend:28: /home/long/simon/uboot/uboot_Webee210/include/s5pc11x.h \
board/samsung/webee210/.depend:29: /home/long/simon/uboot/uboot_Webee210/include/common.h \
board/samsung/webee210/.depend:30: /home/long/simon/uboot/uboot_Webee210/include/asm-offsets.h \
board/samsung/webee210/.depend:31: /home/long/simon/uboot/uboot_Webee210/include/generated/generic-asm-offsets.h \
board/samsung/webee210/.depend:32: /home/long/simon/uboot/uboot_Webee210/include/linux/bitops.h \
board/samsung/webee210/.depend:33: /home/long/simon/uboot/uboot_Webee210/include/asm/bitops.h \
board/samsung/webee210/.depend:34: /home/long/simon/uboot/uboot_Webee210/include/asm/proc/system.h \
board/samsung/webee210/.depend:35: /home/long/simon/uboot/uboot_Webee210/include/linux/string.h \
board/samsung/webee210/.depend:36: /home/long/simon/uboot/uboot_Webee210/include/asm/string.h \
board/samsung/webee210/.depend:37: /home/long/simon/uboot/uboot_Webee210/include/asm/ptrace.h \
board/samsung/webee210/.depend:38: /home/long/simon/uboot/uboot_Webee210/include/asm/proc/ptrace.h \
board/samsung/webee210/.depend:40: /home/long/simon/uboot/uboot_Webee210/include/part.h \
board/samsung/webee210/.depend:41: /home/long/simon/uboot/uboot_Webee210/include/ide.h \
board/samsung/webee210/.depend:42: /home/long/simon/uboot/uboot_Webee210/include/flash.h \
board/samsung/webee210/.depend:43: /home/long/simon/uboot/uboot_Webee210/include/image.h \
board/samsung/webee210/.depend:44: /home/long/simon/uboot/uboot_Webee210/include/compiler.h \
board/samsung/webee210/.depend:46: /home/long/simon/uboot/uboot_Webee210/include/lmb.h \
board/samsung/webee210/.depend:47: /home/long/simon/uboot/uboot_Webee210/include/asm/u-boot.h \
board/samsung/webee210/.depend:48: /home/long/simon/uboot/uboot_Webee210/include/command.h \
board/samsung/webee210/.depend:49: /home/long/simon/uboot/uboot_Webee210/include/asm/global_data.h \
board/samsung/webee210/.depend:50: /home/long/simon/uboot/uboot_Webee210/include/asm/mach-types.h \
board/samsung/webee210/.depend:51: /home/long/simon/uboot/uboot_Webee210/include/asm/setup.h \
board/samsung/webee210/.depend:52: /home/long/simon/uboot/uboot_Webee210/include/asm/u-boot-arm.h \
board/samsung/webee210/.depend:53: /home/long/simon/uboot/uboot_Webee210/include/net.h \
board/samsung/webee210/.depend:54: /home/long/simon/uboot/uboot_Webee210/include/u-boot/crc.h \
board/samsung/webee210/.depend:57: /home/long/simon/uboot/uboot_Webee210/include/config.h \
board/samsung/webee210/.depend:58: /home/long/simon/uboot/uboot_Webee210/include/config_cmd_defaults.h \
board/samsung/webee210/.depend:59: /home/long/simon/uboot/uboot_Webee210/include/config_defaults.h \
board/samsung/webee210/.depend:60: /home/long/simon/uboot/uboot_Webee210/include/configs/webee210.h \
board/samsung/webee210/.depend:61: /home/long/simon/uboot/uboot_Webee210/include/asm/arch/cpu.h \
board/samsung/webee210/.depend:62: /home/long/simon/uboot/uboot_Webee210/include/asm/io.h \
board/samsung/webee210/.depend:63: /home/long/simon/uboot/uboot_Webee210/include/linux/types.h \
board/samsung/webee210/.depend:64: /home/long/simon/uboot/uboot_Webee210/include/linux/config.h \
board/samsung/webee210/.depend:65: /home/long/simon/uboot/uboot_Webee210/include/linux/posix_types.h \
board/samsung/webee210/.depend:66: /home/long/simon/uboot/uboot_Webee210/include/linux/stddef.h \
board/samsung/webee210/.depend:67: /home/long/simon/uboot/uboot_Webee210/include/asm/posix_types.h \
board/samsung/webee210/.depend:68: /home/long/simon/uboot/uboot_Webee210/include/asm/types.h \
board/samsung/webee210/.depend:69: /home/long/simon/uboot/uboot_Webee210/include/asm/byteorder.h \
board/samsung/webee210/.depend:70: /home/long/simon/uboot/uboot_Webee210/include/linux/byteorder/little_endian.h \
board/samsung/webee210/.depend:71: /home/long/simon/uboot/uboot_Webee210/include/linux/byteorder/swab.h \
board/samsung/webee210/.depend:72: /home/long/simon/uboot/uboot_Webee210/include/linux/byteorder/generic.h \
board/samsung/webee210/.depend:73: /home/long/simon/uboot/uboot_Webee210/include/asm/memory.h \
board/samsung/webee210/.depend:74: /home/long/simon/uboot/uboot_Webee210/include/config_cmd_default.h \
board/samsung/webee210/.depend:75: /home/long/simon/uboot/uboot_Webee210/include/asm/config.h \
board/samsung/webee210/.depend:76: /home/long/simon/uboot/uboot_Webee210/include/s5pc110.h \
board/samsung/webee210/.depend:77: /home/long/simon/uboot/uboot_Webee210/include/asm/arch/hardware.h \
board/samsung/webee210/.depend:78: /home/long/simon/uboot/uboot_Webee210/include/asm/sizes.h \
board/samsung/webee210/.depend:79: /home/long/simon/uboot/uboot_Webee210/include/s5pc11x.h \
board/samsung/webee210/.depend:80: /home/long/simon/uboot/uboot_Webee210/include/common.h \
board/samsung/webee210/.depend:81: /home/long/simon/uboot/uboot_Webee210/include/asm-offsets.h \
board/samsung/webee210/.depend:82: /home/long/simon/uboot/uboot_Webee210/include/generated/generic-asm-offsets.h \
board/samsung/webee210/.depend:83: /home/long/simon/uboot/uboot_Webee210/include/linux/bitops.h \
board/samsung/webee210/.depend:84: /home/long/simon/uboot/uboot_Webee210/include/asm/bitops.h \
board/samsung/webee210/.depend:85: /home/long/simon/uboot/uboot_Webee210/include/asm/proc/system.h \
board/samsung/webee210/.depend:86: /home/long/simon/uboot/uboot_Webee210/include/linux/string.h \
board/samsung/webee210/.depend:87: /home/long/simon/uboot/uboot_Webee210/include/asm/string.h \
board/samsung/webee210/.depend:88: /home/long/simon/uboot/uboot_Webee210/include/asm/ptrace.h \
board/samsung/webee210/.depend:89: /home/long/simon/uboot/uboot_Webee210/include/asm/proc/ptrace.h \
board/samsung/webee210/.depend:91: /home/long/simon/uboot/uboot_Webee210/include/part.h \
board/samsung/webee210/.depend:92: /home/long/simon/uboot/uboot_Webee210/include/ide.h \
board/samsung/webee210/.depend:93: /home/long/simon/uboot/uboot_Webee210/include/flash.h \
board/samsung/webee210/.depend:94: /home/long/simon/uboot/uboot_Webee210/include/image.h \
board/samsung/webee210/.depend:95: /home/long/simon/uboot/uboot_Webee210/include/compiler.h \
board/samsung/webee210/.depend:97: /home/long/simon/uboot/uboot_Webee210/include/lmb.h \
board/samsung/webee210/.depend:98: /home/long/simon/uboot/uboot_Webee210/include/asm/u-boot.h \
board/samsung/webee210/.depend:99: /home/long/simon/uboot/uboot_Webee210/include/command.h \
board/samsung/webee210/.depend:100: /home/long/simon/uboot/uboot_Webee210/include/asm/global_data.h \
board/samsung/webee210/.depend:101: /home/long/simon/uboot/uboot_Webee210/include/asm/mach-types.h \
board/samsung/webee210/.depend:102: /home/long/simon/uboot/uboot_Webee210/include/asm/setup.h \
board/samsung/webee210/.depend:103: /home/long/simon/uboot/uboot_Webee210/include/asm/u-boot-arm.h \
board/samsung/webee210/.depend:104: /home/long/simon/uboot/uboot_Webee210/include/net.h \
board/samsung/webee210/.depend:105: /home/long/simon/uboot/uboot_Webee210/include/u-boot/crc.h
board/samsung/webee210/.depend:107: /home/long/simon/uboot/uboot_Webee210/include/common.h \
board/samsung/webee210/.depend:108: /home/long/simon/uboot/uboot_Webee210/include/config.h \
board/samsung/webee210/.depend:109: /home/long/simon/uboot/uboot_Webee210/include/config_cmd_defaults.h \
board/samsung/webee210/.depend:110: /home/long/simon/uboot/uboot_Webee210/include/config_defaults.h \
board/samsung/webee210/.depend:111: /home/long/simon/uboot/uboot_Webee210/include/configs/webee210.h \
board/samsung/webee210/.depend:112: /home/long/simon/uboot/uboot_Webee210/include/asm/arch/cpu.h \
board/samsung/webee210/.depend:113: /home/long/simon/uboot/uboot_Webee210/include/asm/io.h \
board/samsung/webee210/.depend:114: /home/long/simon/uboot/uboot_Webee210/include/linux/types.h \
board/samsung/webee210/.depend:115: /home/long/simon/uboot/uboot_Webee210/include/linux/config.h \
board/samsung/webee210/.depend:116: /home/long/simon/uboot/uboot_Webee210/include/linux/posix_types.h \
board/samsung/webee210/.depend:117: /home/long/simon/uboot/uboot_Webee210/include/linux/stddef.h \
board/samsung/webee210/.depend:118: /home/long/simon/uboot/uboot_Webee210/include/asm/posix_types.h \
board/samsung/webee210/.depend:119: /home/long/simon/uboot/uboot_Webee210/include/asm/types.h \
board/samsung/webee210/.depend:120: /home/long/simon/uboot/uboot_Webee210/include/asm/byteorder.h \
board/samsung/webee210/.depend:121: /home/long/simon/uboot/uboot_Webee210/include/linux/byteorder/little_endian.h \
board/samsung/webee210/.depend:122: /home/long/simon/uboot/uboot_Webee210/include/linux/byteorder/swab.h \
board/samsung/webee210/.depend:123: /home/long/simon/uboot/uboot_Webee210/include/linux/byteorder/generic.h \
board/samsung/webee210/.depend:124: /home/long/simon/uboot/uboot_Webee210/include/asm/memory.h \
board/samsung/webee210/.depend:125: /home/long/simon/uboot/uboot_Webee210/include/config_cmd_default.h \
board/samsung/webee210/.depend:126: /home/long/simon/uboot/uboot_Webee210/include/asm/config.h \
board/samsung/webee210/.depend:127: /home/long/simon/uboot/uboot_Webee210/include/asm-offsets.h \
board/samsung/webee210/.depend:128: /home/long/simon/uboot/uboot_Webee210/include/generated/generic-asm-offsets.h \
board/samsung/webee210/.depend:129: /home/long/simon/uboot/uboot_Webee210/include/linux/bitops.h \
board/samsung/webee210/.depend:130: /home/long/simon/uboot/uboot_Webee210/include/asm/bitops.h \
board/samsung/webee210/.depend:131: /home/long/simon/uboot/uboot_Webee210/include/asm/proc/system.h \
board/samsung/webee210/.depend:132: /home/long/simon/uboot/uboot_Webee210/include/linux/string.h \
board/samsung/webee210/.depend:133: /home/long/simon/uboot/uboot_Webee210/include/asm/string.h \
board/samsung/webee210/.depend:134: /home/long/simon/uboot/uboot_Webee210/include/asm/ptrace.h \
board/samsung/webee210/.depend:135: /home/long/simon/uboot/uboot_Webee210/include/asm/proc/ptrace.h \
board/samsung/webee210/.depend:137: /home/long/simon/uboot/uboot_Webee210/include/part.h \
board/samsung/webee210/.depend:138: /home/long/simon/uboot/uboot_Webee210/include/ide.h \
board/samsung/webee210/.depend:139: /home/long/simon/uboot/uboot_Webee210/include/flash.h \
board/samsung/webee210/.depend:140: /home/long/simon/uboot/uboot_Webee210/include/image.h \
board/samsung/webee210/.depend:141: /home/long/simon/uboot/uboot_Webee210/include/compiler.h \
board/samsung/webee210/.depend:143: /home/long/simon/uboot/uboot_Webee210/include/lmb.h \
board/samsung/webee210/.depend:144: /home/long/simon/uboot/uboot_Webee210/include/asm/u-boot.h \
board/samsung/webee210/.depend:145: /home/long/simon/uboot/uboot_Webee210/include/command.h \
board/samsung/webee210/.depend:146: /home/long/simon/uboot/uboot_Webee210/include/asm/global_data.h \
board/samsung/webee210/.depend:147: /home/long/simon/uboot/uboot_Webee210/include/asm/mach-types.h \
board/samsung/webee210/.depend:148: /home/long/simon/uboot/uboot_Webee210/include/asm/setup.h \
board/samsung/webee210/.depend:149: /home/long/simon/uboot/uboot_Webee210/include/asm/u-boot-arm.h \
board/samsung/webee210/.depend:150: /home/long/simon/uboot/uboot_Webee210/include/net.h \
board/samsung/webee210/.depend:151: /home/long/simon/uboot/uboot_Webee210/include/u-boot/crc.h \
board/samsung/webee210/.depend:152: /home/long/simon/uboot/uboot_Webee210/include/s5pc110.h \
board/samsung/webee210/.depend:153: /home/long/simon/uboot/uboot_Webee210/include/asm/arch/hardware.h \
board/samsung/webee210/.depend:154: /home/long/simon/uboot/uboot_Webee210/include/asm/sizes.h \
board/samsung/webee210/.depend:155: /home/long/simon/uboot/uboot_Webee210/include/s5pc11x.h \
board/samsung/webee210/.depend:156: /home/long/simon/uboot/uboot_Webee210/include/asm/arch/gpio.h \
board/samsung/webee210/.depend:157: /home/long/simon/uboot/uboot_Webee210/include/asm/arch/mmc.h \
board/samsung/webee210/.depend:158: /home/long/simon/uboot/uboot_Webee210/include/asm/arch/clk.h \
board/samsung/webee210/.depend:159: /home/long/simon/uboot/uboot_Webee210/include/asm/arch/clock.h \
board/samsung/webee210/.depend:160: /home/long/simon/uboot/uboot_Webee210/include/netdev.h
Binary file board/samsung/webee210/libwebee210.o matches
Binary file board/samsung/webee210/lowlevel_init.o matches
Binary file board/samsung/webee210/mem_setup.o matches
board/samsung/webee210/webee210.c:259: printf("\nBoard: Webee_210\n");
Binary file board/samsung/webee210/webee210.o matches
common/.depend:2: /home/long/simon/uboot/uboot_Webee210/include/common.h \
common/.depend:3: /home/long/simon/uboot/uboot_Webee210/include/config.h \
common/.depend:4: /home/long/simon/uboot/uboot_Webee210/include/config_cmd_defaults.h \
common/.depend:5: /home/long/simon/uboot/uboot_Webee210/include/config_defaults.h \
common/.depend:6: /home/long/simon/uboot/uboot_Webee210/include/configs/webee210.h \
common/.depend:7: /home/long/simon/uboot/uboot_Webee210/include/asm/arch/cpu.h \
common/.depend:8: /home/long/simon/uboot/uboot_Webee210/include/asm/io.h \
common/.depend:9: /home/long/simon/uboot/uboot_Webee210/include/linux/types.h \
common/.depend:10: /home/long/simon/uboot/uboot_Webee210/include/linux/config.h \
common/.depend:11: /home/long/simon/uboot/uboot_Webee210/include/linux/posix_types.h \
common/.depend:12: /home/long/simon/uboot/uboot_Webee210/include/linux/stddef.h \
common/.depend:13: /home/long/simon/uboot/uboot_Webee210/include/asm/posix_types.h \
common/.depend:14: /home/long/simon/uboot/uboot_Webee210/include/asm/types.h \
common/.depend:15: /home/long/simon/uboot/uboot_Webee210/include/asm/byteorder.h \
common/.depend:16: /home/long/simon/uboot/uboot_Webee210/include/linux/byteorder/little_endian.h \
common/.depend:17: /home/long/simon/uboot/uboot_Webee210/include/linux/byteorder/swab.h \
common/.depend:18: /home/long/simon/uboot/uboot_Webee210/include/linux/byteorder/generic.h \
common/.depend:19: /home/long/simon/uboot/uboot_Webee210/include/asm/memory.h \
common/.depend:20: /home/long/simon/uboot/uboot_Webee210/include/config_cmd_default.h \
common/.depend:21: /home/long/simon/uboot/uboot_Webee210/include/asm/config.h \
common/.depend:22: /home/long/simon/uboot/uboot_Webee210/include/asm-offsets.h \
common/.depend:23: /home/long/simon/uboot/uboot_Webee210/include/generated/generic-asm-offsets.h \
common/.depend:24: /home/long/simon/uboot/uboot_Webee210/include/linux/bitops.h \
common/.depend:25: /home/long/simon/uboot/uboot_Webee210/include/asm/bitops.h \
common/.depend:26: /home/long/simon/uboot/uboot_Webee210/include/asm/proc/system.h \
common/.depend:27: /home/long/simon/uboot/uboot_Webee210/include/linux/string.h \
common/.depend:28: /home/long/simon/uboot/uboot_Webee210/include/asm/string.h \
common/.depend:29: /home/long/simon/uboot/uboot_Webee210/include/asm/ptrace.h \
common/.depend:30: /home/long/simon/uboot/uboot_Webee210/include/asm/proc/ptrace.h \
common/.depend:32: /home/long/simon/uboot/uboot_Webee210/include/part.h \
common/.depend:33: /home/long/simon/uboot/uboot_Webee210/include/ide.h \
common/.depend:34: /home/long/simon/uboot/uboot_Webee210/include/flash.h \
common/.depend:35: /home/long/simon/uboot/uboot_Webee210/include/image.h \
common/.depend:36: /home/long/simon/uboot/uboot_Webee210/include/compiler.h \
common/.depend:38: /home/long/simon/uboot/uboot_Webee210/include/lmb.h \
common/.depend:39: /home/long/simon/uboot/uboot_Webee210/include/asm/u-boot.h \
common/.depend:40: /home/long/simon/uboot/uboot_Webee210/include/command.h \
common/.depend:41: /home/long/simon/uboot/uboot_Webee210/include/asm/global_data.h \
common/.depend:42: /home/long/simon/uboot/uboot_Webee210/include/asm/mach-types.h \
common/.depend:43: /home/long/simon/uboot/uboot_Webee210/include/asm/setup.h \
common/.depend:44: /home/long/simon/uboot/uboot_Webee210/include/asm/u-boot-arm.h \
common/.depend:45: /home/long/simon/uboot/uboot_Webee210/include/net.h \
common/.depend:46: /home/long/simon/uboot/uboot_Webee210/include/u-boot/crc.h
common/.depend:48: /home/long/simon/uboot/uboot_Webee210/include/common.h \
common/.depend:49: /home/long/simon/uboot/uboot_Webee210/include/config.h \
common/.depend:50: /home/long/simon/uboot/uboot_Webee210/include/config_cmd_defaults.h \
common/.depend:51: /home/long/simon/uboot/uboot_Webee210/include/config_defaults.h \
common/.depend:52: /home/long/simon/uboot/uboot_Webee210/include/configs/webee210.h \
common/.depend:53: /home/long/simon/uboot/uboot_Webee210/include/asm/arch/cpu.h \
common/.depend:54: /home/long/simon/uboot/uboot_Webee210/include/asm/io.h \
common/.depend:55: /home/long/simon/uboot/uboot_Webee210/include/linux/types.h \
common/.depend:56: /home/long/simon/uboot/uboot_Webee210/include/linux/config.h \
common/.depend:57: /home/long/simon/uboot/uboot_Webee210/include/linux/posix_types.h \
common/.depend:58: /home/long/simon/uboot/uboot_Webee210/include/linux/stddef.h \
common/.depend:59: /home/long/simon/uboot/uboot_Webee210/include/asm/posix_types.h \
common/.depend:60: /home/long/simon/uboot/uboot_Webee210/include/asm/types.h \
common/.depend:61: /home/long/simon/uboot/uboot_Webee210/include/asm/byteorder.h \
common/.depend:62: /home/long/simon/uboot/uboot_Webee210/include/linux/byteorder/little_endian.h \
common/.depend:63: /home/long/simon/uboot/uboot_Webee210/include/linux/byteorder/swab.h \
common/.depend:64: /home/long/simon/uboot/uboot_Webee210/include/linux/byteorder/generic.h \
common/.depend:65: /home/long/simon/uboot/uboot_Webee210/include/asm/memory.h \
common/.depend:66: /home/long/simon/uboot/uboot_Webee210/include/config_cmd_default.h \
common/.depend:67: /home/long/simon/uboot/uboot_Webee210/include/asm/config.h \
common/.depend:68: /home/long/simon/uboot/uboot_Webee210/include/asm-offsets.h \
common/.depend:69: /home/long/simon/uboot/uboot_Webee210/include/generated/generic-asm-offsets.h \
common/.depend:70: /home/long/simon/uboot/uboot_Webee210/include/linux/bitops.h \
common/.depend:71: /home/long/simon/uboot/uboot_Webee210/include/asm/bitops.h \
common/.depend:72: /home/long/simon/uboot/uboot_Webee210/include/asm/proc/system.h \
common/.depend:73: /home/long/simon/uboot/uboot_Webee210/include/linux/string.h \
common/.depend:74: /home/long/simon/uboot/uboot_Webee210/include/asm/string.h \
common/.depend:75: /home/long/simon/uboot/uboot_Webee210/include/asm/ptrace.h \
common/.depend:76: /home/long/simon/uboot/uboot_Webee210/include/asm/proc/ptrace.h \
common/.depend:78: /home/long/simon/uboot/uboot_Webee210/include/part.h \
common/.depend:79: /home/long/simon/uboot/uboot_Webee210/include/ide.h \
common/.depend:80: /home/long/simon/uboot/uboot_Webee210/include/flash.h \
common/.depend:81: /home/long/simon/uboot/uboot_Webee210/include/image.h \
common/.depend:82: /home/long/simon/uboot/uboot_Webee210/include/compiler.h \
common/.depend:84: /home/long/simon/uboot/uboot_Webee210/include/lmb.h \
common/.depend:85: /home/long/simon/uboot/uboot_Webee210/include/asm/u-boot.h \
common/.depend:86: /home/long/simon/uboot/uboot_Webee210/include/command.h \
common/.depend:87: /home/long/simon/uboot/uboot_Webee210/include/asm/global_data.h \
common/.depend:88: /home/long/simon/uboot/uboot_Webee210/include/asm/mach-types.h \
common/.depend:89: /home/long/simon/uboot/uboot_Webee210/include/asm/setup.h \
common/.depend:90: /home/long/simon/uboot/uboot_Webee210/include/asm/u-boot-arm.h \
common/.depend:91: /home/long/simon/uboot/uboot_Webee210/include/net.h \
common/.depend:92: /home/long/simon/uboot/uboot_Webee210/include/u-boot/crc.h
common/.depend:94: /home/long/simon/uboot/uboot_Webee210/include/common.h \
common/.depend:95: /home/long/simon/uboot/uboot_Webee210/include/config.h \
common/.depend:96: /home/long/simon/uboot/uboot_Webee210/include/config_cmd_defaults.h \
common/.depend:97: /home/long/simon/uboot/uboot_Webee210/include/config_defaults.h \
common/.depend:98: /home/long/simon/uboot/uboot_Webee210/include/configs/webee210.h \
common/.depend:99: /home/long/simon/uboot/uboot_Webee210/include/asm/arch/cpu.h \
common/.depend:100: /home/long/simon/uboot/uboot_Webee210/include/asm/io.h \
common/.depend:101: /home/long/simon/uboot/uboot_Webee210/include/linux/types.h \
common/.depend:102: /home/long/simon/uboot/uboot_Webee210/include/linux/config.h \
common/.depend:103: /home/long/simon/uboot/uboot_Webee210/include/linux/posix_types.h \
common/.depend:104: /home/long/simon/uboot/uboot_Webee210/include/linux/stddef.h \
common/.depend:105: /home/long/simon/uboot/uboot_Webee210/include/asm/posix_types.h \
common/.depend:106: /home/long/simon/uboot/uboot_Webee210/include/asm/types.h \
common/.depend:107: /home/long/simon/uboot/uboot_Webee210/include/asm/byteorder.h \
common/.depend:108: /home/long/simon/uboot/uboot_Webee210/include/linux/byteorder/little_endian.h \
common/.depend:109: /home/long/simon/uboot/uboot_Webee210/include/linux/byteorder/swab.h \
common/.depend:110: /home/long/simon/uboot/uboot_Webee210/include/linux/byteorder/generic.h \
common/.depend:111: /home/long/simon/uboot/uboot_Webee210/include/asm/memory.h \
common/.depend:112: /home/long/simon/uboot/uboot_Webee210/include/config_cmd_default.h \
common/.depend:113: /home/long/simon/uboot/uboot_Webee210/include/asm/config.h \
common/.depend:114: /home/long/simon/uboot/uboot_Webee210/include/asm-offsets.h \
common/.depend:115: /home/long/simon/uboot/uboot_Webee210/include/generated/generic-asm-offsets.h \
common/.depend:116: /home/long/simon/uboot/uboot_Webee210/include/linux/bitops.h \
common/.depend:117: /home/long/simon/uboot/uboot_Webee210/include/asm/bitops.h \
common/.depend:118: /home/long/simon/uboot/uboot_Webee210/include/asm/proc/system.h \
common/.depend:119: /home/long/simon/uboot/uboot_Webee210/include/linux/string.h \
common/.depend:120: /home/long/simon/uboot/uboot_Webee210/include/asm/string.h \
common/.depend:121: /home/long/simon/uboot/uboot_Webee210/include/asm/ptrace.h \
common/.depend:122: /home/long/simon/uboot/uboot_Webee210/include/asm/proc/ptrace.h \
common/.depend:124: /home/long/simon/uboot/uboot_Webee210/include/part.h \
common/.depend:125: /home/long/simon/uboot/uboot_Webee210/include/ide.h \
common/.depend:126: /home/long/simon/uboot/uboot_Webee210/include/flash.h \
common/.depend:127: /home/long/simon/uboot/uboot_Webee210/include/image.h \
common/.depend:128: /home/long/simon/uboot/uboot_Webee210/include/compiler.h \
common/.depend:130: /home/long/simon/uboot/uboot_Webee210/include/lmb.h \
common/.depend:131: /home/long/simon/uboot/uboot_Webee210/include/asm/u-boot.h \
common/.depend:132: /home/long/simon/uboot/uboot_Webee210/include/command.h \
common/.depend:133: /home/long/simon/uboot/uboot_Webee210/include/asm/global_data.h \
common/.depend:134: /home/long/simon/uboot/uboot_Webee210/include/asm/mach-types.h \
common/.depend:135: /home/long/simon/uboot/uboot_Webee210/include/asm/setup.h \
common/.depend:136: /home/long/simon/uboot/uboot_Webee210/include/asm/u-boot-arm.h \
common/.depend:137: /home/long/simon/uboot/uboot_Webee210/include/net.h \
common/.depend:138: /home/long/simon/uboot/uboot_Webee210/include/u-boot/crc.h \
common/.depend:139: /home/long/simon/uboot/uboot_Webee210/include/watchdog.h \
common/.depend:140: /home/long/simon/uboot/uboot_Webee210/include/malloc.h \
common/.depend:141: /home/long/simon/uboot/uboot_Webee210/include/u-boot/zlib.h \
common/.depend:142: /home/long/simon/uboot/uboot_Webee210/include/bzlib.h \
common/.depend:143: /home/long/simon/uboot/uboot_Webee210/include/environment.h \
common/.depend:144: /home/long/simon/uboot/uboot_Webee210/include/search.h \
common/.depend:145: /home/long/simon/uboot/uboot_Webee210/include/linux/ctype.h \
common/.depend:146: /home/long/simon/uboot/uboot_Webee210/include/hush.h
common/.depend:148: /home/long/simon/uboot/uboot_Webee210/include/common.h \
common/.depend:149: /home/long/simon/uboot/uboot_Webee210/include/config.h \
common/.depend:150: /home/long/simon/uboot/uboot_Webee210/include/config_cmd_defaults.h \
common/.depend:151: /home/long/simon/uboot/uboot_Webee210/include/config_defaults.h \
common/.depend:152: /home/long/simon/uboot/uboot_Webee210/include/configs/webee210.h \
common/.depend:153: /home/long/simon/uboot/uboot_Webee210/include/asm/arch/cpu.h \
common/.depend:154: /home/long/simon/uboot/uboot_Webee210/include/asm/io.h \
common/.depend:155: /home/long/simon/uboot/uboot_Webee210/include/linux/types.h \
common/.depend:156: /home/long/simon/uboot/uboot_Webee210/include/linux/config.h \
common/.depend:157: /home/long/simon/uboot/uboot_Webee210/include/linux/posix_types.h \
common/.depend:158: /home/long/simon/uboot/uboot_Webee210/include/linux/stddef.h \
common/.depend:159: /home/long/simon/uboot/uboot_Webee210/include/asm/posix_types.h \
common/.depend:160: /home/long/simon/uboot/uboot_Webee210/include/asm/types.h \
common/.depend:161: /home/long/simon/uboot/uboot_Webee210/include/asm/byteorder.h \
common/.depend:162: /home/long/simon/uboot/uboot_Webee210/include/linux/byteorder/little_endian.h \
common/.depend:163: /home/long/simon/uboot/uboot_Webee210/include/linux/byteorder/swab.h \
common/.depend:164: /home/long/simon/uboot/uboot_Webee210/include/linux/byteorder/generic.h \
common/.depend:165: /home/long/simon/uboot/uboot_Webee210/include/asm/memory.h \
common/.depend:166: /home/long/simon/uboot/uboot_Webee210/include/config_cmd_default.h \
common/.depend:167: /home/long/simon/uboot/uboot_Webee210/include/asm/config.h \
common/.depend:168: /home/long/simon/uboot/uboot_Webee210/include/asm-offsets.h \
common/.depend:169: /home/long/simon/uboot/uboot_Webee210/include/generated/generic-asm-offsets.h \
common/.depend:170: /home/long/simon/uboot/uboot_Webee210/include/linux/bitops.h \
common/.depend:171: /home/long/simon/uboot/uboot_Webee210/include/asm/bitops.h \
common/.depend:172: /home/long/simon/uboot/uboot_Webee210/include/asm/proc/system.h \
common/.depend:173: /home/long/simon/uboot/uboot_Webee210/include/linux/string.h \
common/.depend:174: /home/long/simon/uboot/uboot_Webee210/include/asm/string.h \
common/.depend:175: /home/long/simon/uboot/uboot_Webee210/include/asm/ptrace.h \
common/.depend:176: /home/long/simon/uboot/uboot_Webee210/include/asm/proc/ptrace.h \
common/.depend:178: /home/long/simon/uboot/uboot_Webee210/include/part.h \
common/.depend:179: /home/long/simon/uboot/uboot_Webee210/include/ide.h \
common/.depend:180: /home/long/simon/uboot/uboot_Webee210/include/flash.h \
common/.depend:181: /home/long/simon/uboot/uboot_Webee210/include/image.h \
common/.depend:182: /home/long/simon/uboot/uboot_Webee210/include/compiler.h \
common/.depend:184: /home/long/simon/uboot/uboot_Webee210/include/lmb.h \
common/.depend:185: /home/long/simon/uboot/uboot_Webee210/include/asm/u-boot.h \
common/.depend:186: /home/long/simon/uboot/uboot_Webee210/include/command.h \
common/.depend:187: /home/long/simon/uboot/uboot_Webee210/include/asm/global_data.h \
common/.depend:188: /home/long/simon/uboot/uboot_Webee210/include/asm/mach-types.h \
common/.depend:189: /home/long/simon/uboot/uboot_Webee210/include/asm/setup.h \
common/.depend:190: /home/long/simon/uboot/uboot_Webee210/include/asm/u-boot-arm.h \
common/.depend:191: /home/long/simon/uboot/uboot_Webee210/include/net.h \
common/.depend:192: /home/long/simon/uboot/uboot_Webee210/include/u-boot/crc.h \
common/.depend:193: /home/long/simon/uboot/uboot_Webee210/include/stdio_dev.h \
common/.depend:194: /home/long/simon/uboot/uboot_Webee210/include/linux/list.h \
common/.depend:195: /home/long/simon/uboot/uboot_Webee210/include/linux/poison.h
common/.depend:197: /home/long/simon/uboot/uboot_Webee210/include/common.h \
common/.depend:198: /home/long/simon/uboot/uboot_Webee210/include/config.h \
common/.depend:199: /home/long/simon/uboot/uboot_Webee210/include/config_cmd_defaults.h \
common/.depend:200: /home/long/simon/uboot/uboot_Webee210/include/config_defaults.h \
common/.depend:201: /home/long/simon/uboot/uboot_Webee210/include/configs/webee210.h \
common/.depend:202: /home/long/simon/uboot/uboot_Webee210/include/asm/arch/cpu.h \
common/.depend:203: /home/long/simon/uboot/uboot_Webee210/include/asm/io.h \
common/.depend:204: /home/long/simon/uboot/uboot_Webee210/include/linux/types.h \
common/.depend:205: /home/long/simon/uboot/uboot_Webee210/include/linux/config.h \
common/.depend:206: /home/long/simon/uboot/uboot_Webee210/include/linux/posix_types.h \
common/.depend:207: /home/long/simon/uboot/uboot_Webee210/include/linux/stddef.h \
common/.depend:208: /home/long/simon/uboot/uboot_Webee210/include/asm/posix_types.h \
common/.depend:209: /home/long/simon/uboot/uboot_Webee210/include/asm/types.h \
common/.depend:210: /home/long/simon/uboot/uboot_Webee210/include/asm/byteorder.h \
common/.depend:211: /home/long/simon/uboot/uboot_Webee210/include/linux/byteorder/little_endian.h \
common/.depend:212: /home/long/simon/uboot/uboot_Webee210/include/linux/byteorder/swab.h \
common/.depend:213: /home/long/simon/uboot/uboot_Webee210/include/linux/byteorder/generic.h \
common/.depend:214: /home/long/simon/uboot/uboot_Webee210/include/asm/memory.h \
common/.depend:215: /home/long/simon/uboot/uboot_Webee210/include/config_cmd_default.h \
common/.depend:216: /home/long/simon/uboot/uboot_Webee210/include/asm/config.h \
common/.depend:217: /home/long/simon/uboot/uboot_Webee210/include/asm-offsets.h \
common/.depend:218: /home/long/simon/uboot/uboot_Webee210/include/generated/generic-asm-offsets.h \
common/.depend:219: /home/long/simon/uboot/uboot_Webee210/include/linux/bitops.h \
common/.depend:220: /home/long/simon/uboot/uboot_Webee210/include/asm/bitops.h \
common/.depend:221: /home/long/simon/uboot/uboot_Webee210/include/asm/proc/system.h \
common/.depend:222: /home/long/simon/uboot/uboot_Webee210/include/linux/string.h \
common/.depend:223: /home/long/simon/uboot/uboot_Webee210/include/asm/string.h \
common/.depend:224: /home/long/simon/uboot/uboot_Webee210/include/asm/ptrace.h \
common/.depend:225: /home/long/simon/uboot/uboot_Webee210/include/asm/proc/ptrace.h \
common/.depend:227: /home/long/simon/uboot/uboot_Webee210/include/part.h \
common/.depend:228: /home/long/simon/uboot/uboot_Webee210/include/ide.h \
common/.depend:229: /home/long/simon/uboot/uboot_Webee210/include/flash.h \
common/.depend:230: /home/long/simon/uboot/uboot_Webee210/include/image.h \
common/.depend:231: /home/long/simon/uboot/uboot_Webee210/include/compiler.h \
common/.depend:233: /home/long/simon/uboot/uboot_Webee210/include/lmb.h \
common/.depend:234: /home/long/simon/uboot/uboot_Webee210/include/asm/u-boot.h \
common/.depend:235: /home/long/simon/uboot/uboot_Webee210/include/command.h \
common/.depend:236: /home/long/simon/uboot/uboot_Webee210/include/asm/global_data.h \
common/.depend:237: /home/long/simon/uboot/uboot_Webee210/include/asm/mach-types.h \
common/.depend:238: /home/long/simon/uboot/uboot_Webee210/include/asm/setup.h \
common/.depend:239: /home/long/simon/uboot/uboot_Webee210/include/asm/u-boot-arm.h \
common/.depend:240: /home/long/simon/uboot/uboot_Webee210/include/net.h \
common/.depend:241: /home/long/simon/uboot/uboot_Webee210/include/u-boot/crc.h
common/.depend:243: /home/long/simon/uboot/uboot_Webee210/include/common.h \
common/.depend:244: /home/long/simon/uboot/uboot_Webee210/include/config.h \
common/.depend:245: /home/long/simon/uboot/uboot_Webee210/include/config_cmd_defaults.h \
common/.depend:246: /home/long/simon/uboot/uboot_Webee210/include/config_defaults.h \
common/.depend:247: /home/long/simon/uboot/uboot_Webee210/include/configs/webee210.h \
common/.depend:248: /home/long/simon/uboot/uboot_Webee210/include/asm/arch/cpu.h \
common/.depend:249: /home/long/simon/uboot/uboot_Webee210/include/asm/io.h \
common/.depend:250: /home/long/simon/uboot/uboot_Webee210/include/linux/types.h \
common/.depend:251: /home/long/simon/uboot/uboot_Webee210/include/linux/config.h \
common/.depend:252: /home/long/simon/uboot/uboot_Webee210/include/linux/posix_types.h \
common/.depend:253: /home/long/simon/uboot/uboot_Webee210/include/linux/stddef.h \
common/.depend:254: /home/long/simon/uboot/uboot_Webee210/include/asm/posix_types.h \
common/.depend:255: /home/long/simon/uboot/uboot_Webee210/include/asm/types.h \
common/.depend:256: /home/long/simon/uboot/uboot_Webee210/include/asm/byteorder.h \
common/.depend:257: /home/long/simon/uboot/uboot_Webee210/include/linux/byteorder/little_endian.h \
common/.depend:258: /home/long/simon/uboot/uboot_Webee210/include/linux/byteorder/swab.h \
common/.depend:259: /home/long/simon/uboot/uboot_Webee210/include/linux/byteorder/generic.h \
common/.depend:260: /home/long/simon/uboot/uboot_Webee210/include/asm/memory.h \
common/.depend:261: /home/long/simon/uboot/uboot_Webee210/include/config_cmd_default.h \
common/.depend:262: /home/long/simon/uboot/uboot_Webee210/include/asm/config.h \
common/.depend:263: /home/long/simon/uboot/uboot_Webee210/include/asm-offsets.h \
common/.depend:264: /home/long/simon/uboot/uboot_Webee210/include/generated/generic-asm-offsets.h \
common/.depend:265: /home/long/simon/uboot/uboot_Webee210/include/linux/bitops.h \
common/.depend:266: /home/long/simon/uboot/uboot_Webee210/include/asm/bitops.h \
common/.depend:267: /home/long/simon/uboot/uboot_Webee210/include/asm/proc/system.h \
common/.depend:268: /home/long/simon/uboot/uboot_Webee210/include/linux/string.h \
common/.depend:269: /home/long/simon/uboot/uboot_Webee210/include/asm/string.h \
common/.depend:270: /home/long/simon/uboot/uboot_Webee210/include/asm/ptrace.h \
common/.depend:271: /home/long/simon/uboot/uboot_Webee210/include/asm/proc/ptrace.h \
common/.depend:273: /home/long/simon/uboot/uboot_Webee210/include/part.h \
common/.depend:274: /home/long/simon/uboot/uboot_Webee210/include/ide.h \
common/.depend:275: /home/long/simon/uboot/uboot_Webee210/include/flash.h \
common/.depend:276: /home/long/simon/uboot/uboot_Webee210/include/image.h \
common/.depend:277: /home/long/simon/uboot/uboot_Webee210/include/compiler.h \
common/.depend:279: /home/long/simon/uboot/uboot_Webee210/include/lmb.h \
common/.depend:280: /home/long/simon/uboot/uboot_Webee210/include/asm/u-boot.h \
common/.depend:281: /home/long/simon/uboot/uboot_Webee210/include/command.h \
common/.depend:282: /home/long/simon/uboot/uboot_Webee210/include/asm/global_data.h \
common/.depend:283: /home/long/simon/uboot/uboot_Webee210/include/asm/mach-types.h \
common/.depend:284: /home/long/simon/uboot/uboot_Webee210/include/asm/setup.h \
common/.depend:285: /home/long/simon/uboot/uboot_Webee210/include/asm/u-boot-arm.h \
common/.depend:286: /home/long/simon/uboot/uboot_Webee210/include/net.h \
common/.depend:287: /home/long/simon/uboot/uboot_Webee210/include/u-boot/crc.h \
common/.depend:288: /home/long/simon/uboot/uboot_Webee210/include/linux/ctype.h \
common/.depend:289: /home/long/simon/uboot/uboot_Webee210/include/elf.h \
common/.depend:290: /home/long/simon/uboot/uboot_Webee210/include/vxworks.h
common/.depend:292: /home/long/simon/uboot/uboot_Webee210/include/common.h \
common/.depend:293: /home/long/simon/uboot/uboot_Webee210/include/config.h \
common/.depend:294: /home/long/simon/uboot/uboot_Webee210/include/config_cmd_defaults.h \
common/.depend:295: /home/long/simon/uboot/uboot_Webee210/include/config_defaults.h \
common/.depend:296: /home/long/simon/uboot/uboot_Webee210/include/configs/webee210.h \
common/.depend:297: /home/long/simon/uboot/uboot_Webee210/include/asm/arch/cpu.h \
common/.depend:298: /home/long/simon/uboot/uboot_Webee210/include/asm/io.h \
common/.depend:299: /home/long/simon/uboot/uboot_Webee210/include/linux/types.h \
common/.depend:300: /home/long/simon/uboot/uboot_Webee210/include/linux/config.h \
common/.depend:301: /home/long/simon/uboot/uboot_Webee210/include/linux/posix_types.h \
common/.depend:302: /home/long/simon/uboot/uboot_Webee210/include/linux/stddef.h \
common/.depend:303: /home/long/simon/uboot/uboot_Webee210/include/asm/posix_types.h \
common/.depend:304: /home/long/simon/uboot/uboot_Webee210/include/asm/types.h \
common/.depend:305: /home/long/simon/uboot/uboot_Webee210/include/asm/byteorder.h \
common/.depend:306: /home/long/simon/uboot/uboot_Webee210/include/linux/byteorder/little_endian.h \
common/.depend:307: /home/long/simon/uboot/uboot_Webee210/include/linux/byteorder/swab.h \
common/.depend:308: /home/long/simon/uboot/uboot_Webee210/include/linux/byteorder/generic.h \
common/.depend:309: /home/long/simon/uboot/uboot_Webee210/include/asm/memory.h \
common/.depend:310: /home/long/simon/uboot/uboot_Webee210/include/config_cmd_default.h \
common/.depend:311: /home/long/simon/uboot/uboot_Webee210/include/asm/config.h \
common/.depend:312: /home/long/simon/uboot/uboot_Webee210/include/asm-offsets.h \
common/.depend:313: /home/long/simon/uboot/uboot_Webee210/include/generated/generic-asm-offsets.h \
common/.depend:314: /home/long/simon/uboot/uboot_Webee210/include/linux/bitops.h \