-
Notifications
You must be signed in to change notification settings - Fork 1
/
MAINTAINERS
1395 lines (924 loc) · 27.1 KB
/
MAINTAINERS
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
#########################################################################
# #
# Regular Maintainers for U-Boot board support: #
# #
# For any board without permanent maintainer, please contact #
# Wolfgang Denk <[email protected]> #
# and Cc: the <[email protected]> mailing list. #
# #
# Note: lists sorted by Maintainer Name #
# Note: These are the maintainers for specific *boards*. The #
# custodians for general architectures and subsystems can #
# be found here -- http://www.denx.de/wiki/U-Boot/Custodians #
# #
#########################################################################
#########################################################################
# PowerPC Systems: #
# #
# Maintainer Name, Email Address #
# Board CPU #
#########################################################################
Poonam Aggrwal <[email protected]>
P2020RDB P2020
BSC9131RDB BSC9131
Naveen Burmi <[email protected]>
BSC9132QDS BSC9132
Greg Allen <[email protected]>
UTX8245 MPC8245
Pantelis Antoniou <[email protected]>
NETVIA MPC8xx
Reinhard Arlt <[email protected]>
cpci5200 MPC5200
mecp5123 MPC5121
mecp5200 MPC5200
pf5200 MPC5200
caddy2 MPC8349
vme8349 MPC8349
CPCI750 PPC750FX/GX
Peter Barada <[email protected]>
omap3_logic ARM ARMV7 (Logic OMAP35xx/DM37xx)
Yuli Barcohen <[email protected]>
Adder MPC87x/MPC852T
ep8248 MPC8248
ISPAN MPC8260
MPC8260ADS MPC826x/MPC827x/MPC8280
Rattler MPC8248
ZPC1900 MPC8265
Michael Barkowski <[email protected]>
MPC8323ERDB MPC8323
Jerry Van Baren <[email protected]>
sacsng MPC8260
Oliver Brown <[email protected]>
gw8260 MPC8260
Holger Brunck <[email protected]>
kmeter1 MPC8360
kmcoge5ne MPC8360
mgcoge MPC8247
mgcoge3ne MPC8247
suvd3 MPC8321
tuge1 MPC8321
tuxx1 MPC8321
Conn Clark <[email protected]>
ESTEEM192E MPC8xx
Jason Cooper <[email protected]>
dreamplug ARM926EJS (Kirkwood SoC)
Joe D'Abbraccio <[email protected]>
MPC837xERDB MPC837x
Kári Davíðsson <[email protected]>
FLAGADM MPC823
Torsten Demke <[email protected]>
eXalion MPC824x
Wolfgang Denk <[email protected]>
IceCube_5200 MPC5200
ARIA MPC5121e
FPS850L MPC850
FPS860L MPC860
ICU862 MPC862
IP860 MPC860
IVML24 MPC860
IVML24_128 MPC860
IVML24_256 MPC860
IVMS8 MPC860
IVMS8_128 MPC860
IVMS8_256 MPC860
LWMON MPC823
R360MPI MPC823
RRvision MPC823
SM850 MPC850
SPD823TS MPC823
TQM823L MPC823
TQM823L_LCD MPC823
TQM850L MPC850
TQM855L MPC855
TQM860L MPC860
TQM860L_FEC MPC860
hermes MPC860
lwmon MPC823
CU824 MPC8240
Sandpoint8240 MPC8240
ATC MPC8250
PM825 MPC8250
TQM8255 MPC8255
CPU86 MPC8260
PM826 MPC8260
TQM8260 MPC8260
P3G4 MPC7410
Phil Edworthy <[email protected]>
rsk7264 SH7264
egnite GmbH <[email protected]>
ethernut5 ARM926EJS (AT91SAM9XE SoC)
Dirk Eibach <[email protected]>
controlcenterd P1022
devconcenter PPC460EX
dlvision PPC405EP
dlvision-10g PPC405EP
gdppc440etx PPC440EP/GR
intip PPC460EX
io PPC405EP
io64 PPC405EX
iocon PPC405EP
neo PPC405EP
Dave Ellis <[email protected]>
SXNI855T MPC8xx
Thomas Frieden <[email protected]>
AmigaOneG3SE MPC7xx
Matthias Fuchs <[email protected]>
APC405 PPC405GP
AR405 PPC405GP
ASH405 PPC405EP
CANBT PPC405CR
CPCI2DP PPC405GP
CPCI405 PPC405GP
CPCI4052 PPC405GP
CPCI405AB PPC405GP
CPCI405DT PPC405GP
CPCIISER4 PPC405GP
DP405 PPC405EP
DU405 PPC405GP
DU440 PPC440EPx
G2000 PPC405EP
HH405 PPC405EP
HUB405 PPC405EP
OCRTC PPC405GP
ORSG PPC405GP
PCI405 PPC405GP
PLU405 PPC405EP
PMC405 PPC405GP
PMC405DE PPC405EP
PMC440 PPC440EPx
VOH405 PPC405EP
VOM405 PPC405EP
WUH405 PPC405EP
CMS700 PPC405EP
Siddarth Gore <[email protected]>
guruplug ARM926EJS (Kirkwood SoC)
Paul Gortmaker <[email protected]>
sbc8349 MPC8349
sbc8548 MPC8548
sbc8641d MPC8641D
Frank Gottschling <[email protected]>
MHPC MPC8xx
Wolfgang Grandegger <[email protected]>
ipek01 MPC5200
PN62 MPC8240
IPHASE4539 MPC8260
Anatolij Gustschin <[email protected]>
ac14xx MPC5121e
O2D MPC5200
O2D300 MPC5200
O2DNT2 MPC5200
O2I MPC5200
O2MNT MPC5200
O3DNT MPC5200
Rob Herring <[email protected]>
highbank highbank
Klaus Heydeck <[email protected]>
KUP4K MPC855
KUP4X MPC859
Gabriel Huau <[email protected]>
mini2440 s3c2440
Gary Jennejohn <[email protected]>
quad100hd PPC405EP
Murray Jensen <[email protected]>
cogent_mpc8xx MPC8xx
cogent_mpc8260 MPC8260
hymod MPC8260
Larry Johnson <[email protected]>
korat PPC440EPx
Feng Kan <[email protected]>
redwood PPC4xx
Brad Kemp <[email protected]>
ppmc8260 MPC8260
Sangmoon Kim <[email protected]>
debris MPC8245
KVME080 MPC8245
The LEOX team <[email protected]>
ELPT860 MPC860T
Guennadi Liakhovetski <[email protected]>
linkstation MPC8241
Dave Liu <[email protected]>
MPC8315ERDB MPC8315
MPC832XEMDS MPC832x
MPC8360EMDS MPC8360
MPC837XEMDS MPC837x
Nye Liu <[email protected]>
ZUMA MPC7xx_74xx
Kumar Gala <[email protected]>
MPC8540ADS MPC8540
MPC8560ADS MPC8560
MPC8541CDS MPC8541
MPC8555CDS MPC8555
MPC8641HPCN MPC8641D
Ron Madrid <[email protected]>
SIMPC8313 MPC8313
Dan Malek <[email protected]>
stxgp3 MPC85xx
stxssa MPC85xx
stxxtc MPC8xx
Ryan Mallon <[email protected]>
snapper9260 ARM926EJS (AT91SAM9260 SoC)
snapper9g20 ARM926EJS (AT91SAM9G20 SoC)
Andrea "llandre" Marson <[email protected]>
PPChameleonEVB PPC405EP
Tirumala Marri <[email protected]>
bluestone APM821XX
Reinhard Meyer <[email protected]>
TOP860 MPC860T
TOP5200 MPC5200
TOP9000 ARM926EJS (AT91SAM9xxx SoC)
Kyle Moffett <[email protected]>
HWW1U1A P2020
Tolunay Orkun <[email protected]>
csb272 PPC405GP
csb472 PPC405GP
John Otken <[email protected]>
luan PPC440SP
taihu PPC405EP
Keith Outwater <[email protected]>
GEN860T MPC860T
GEN860T_SC MPC860T
Frank Panno <[email protected]>
ep8260 MPC8260
Chan-Taek Park <[email protected]>
tnetv107x_evm tnetv107x
Denis Peter <[email protected]>
MIP405 PPC4xx
PIP405 PPC4xx
Werner Pfister <[email protected]>
digsy_mtc mpc5200
digsy_mtc_rev5 mpc5200
Kim Phillips <[email protected]>
MPC8349EMDS MPC8349
Sergei Poselenov <[email protected]>
a4m072 MPC5200
Sudhakar Rajashekhara <[email protected]>
da850evm ARM926EJS (DA850/OMAP-L138)
Ricardo Ribalda <[email protected]>
ml507 PPC440x5
v5fx30teval PPC440x5
xilinx-ppc405-generic PPC405
xilinx-ppc440-generic PPC440x5
Stefan Roese <[email protected]>
a3m071 MPC5200
a4m2k MPC5200
P3M7448 MPC7448
uc100 MPC857
acadia PPC405EZ
alpr PPC440GX
bamboo PPC440EP
bunbinga PPC405EP
canyonlands PPC460EX
ebony PPC440GP
glacier PPC460GT
haleakala PPC405EXr
icon PPC440SPe
katmai PPC440SPe
kilauea PPC405EX
lwmon5 PPC440EPx
makalu PPC405EX
ocotea PPC440GX
p3p440 PPC440GP
pcs440ep PPC440EP
rainier PPC440GRx
sequoia PPC440EPx
sycamore PPC405GPr
t3corp PPC460GT
taishan PPC440GX
walnut PPC405GP
yellowstone PPC440GR
yosemite PPC440EP
zeus PPC405EP
P3M750 PPC750FX/GX/GL
Yusdi Santoso <[email protected]>
HIDDEN_DRAGON MPC8241/MPC8245
Travis Sawyer ([email protected]>
KAREF PPC440GX
METROBOX PPC440GX
Georg Schardt <[email protected]>
fx12mm PPC405
Heiko Schocher <[email protected]>
cam_enc_4xx davinci/ARM926EJS
charon MPC5200
ids8247 MPC8247
jupiter MPC5200
kmsupx5 MPC8321
mucmc52 MPC5200
muas3001 MPC8270
municse MPC5200
sc3 PPC405GP
uc101 MPC5200
ve8313 MPC8313
Andre Schwarz <[email protected]>
mergerbox MPC8377
mvbc_p MPC5200
mvblm7 MPC8343
mvsmr MPC5200
Jon Smirl <[email protected]>
pcm030 MPC5200
Ira W. Snyder <[email protected]>
P2020COME P2020
Timur Tabi <[email protected]>
MPC8349E-mITX MPC8349
MPC8349E-mITX-GP MPC8349
P1022DS P1022
Erik Theisen <[email protected]>
W7OLMC PPC4xx
W7OLMG PPC4xx
Jim Thompson <[email protected]>
MUSENKI MPC8245/8241
Sandpoint8245 MPC8245
Rune Torgersen <[email protected]>
MPC8266ADS MPC8266
Peter Tyser <[email protected]>
xpedite1000 PPC440GX
xpedite5170 MPC8640
xpedite5200 MPC8548
xpedite5370 MPC8572
xpedite5500 P2020
David Updegraff <[email protected]>
CRAYL1 PPC4xx
Anton Vorontsov <[email protected]>
MPC8360ERDK MPC8360
Josef Wagner <[email protected]>
CPC45 MPC8245
PM520 MPC5200
Michael Weiss <[email protected]>
PDM360NG MPC5121e
Stephen Williams <[email protected]>
JSE PPC405GPr
Ilya Yanok <[email protected]>
mpc8308_p1m MPC8308
MPC8308RDB MPC8308
Roy Zang <[email protected]>
mpc7448hpc2 MPC7448
P1023RDS P1023
John Zhan <[email protected]>
svm_sc8xx MPC8xx
Detlev Zundel <[email protected]>
inka4x0 MPC5200
-------------------------------------------------------------------------
Unknown / orphaned boards:
ADS860 MPC8xx
FADS823 MPC8xx
FADS850SAR MPC8xx
FADS860T MPC8xx
GENIETV MPC8xx
MBX MPC8xx
MBX860T MPC8xx
NX823 MPC8xx
RPXClassic MPC8xx
RPXlite MPC8xx
MOUSSE MPC824x
RPXsuper MPC8260
rsdproto MPC8260
EVB64260 MPC7xx_74xx
EVB64260_750CX MPC750CX [Eran Man <[email protected]>]
versatile ARM926EJ-S
#########################################################################
# ARM Systems: #
# #
# Maintainer Name, Email Address #
# Board CPU #
#########################################################################
Albert ARIBAUD <[email protected]>
edminiv2 ARM926EJS (Orion5x SoC)
Raphael Assenat <[email protected]>
eco5pk ARM ARMV7 (AM35x SoC)
Stefano Babic <[email protected]>
ea20 davinci
flea3 i.MX35
mt_ventoux omap3
mx35pdk i.MX35
mx51evk i.MX51
polaris xscale/pxa
trizepsiv xscale/pxa
twister omap3
vision2 i.MX51
woodburn i.MX35
Lukasz Dalek <[email protected]>
h2200 xscale/pxa
Jason Liu <[email protected]>
mx53evk i.MX53
mx53loco i.MX53
mx6qarm2 i.MX6Q
mx6qsabrelite i.MX6Q
Enric Balletbo i Serra <[email protected]>
igep0020 ARM ARMV7 (OMAP3xx SoC)
igep0030 ARM ARMV7 (OMAP3xx SoC)
igep0032 ARM ARMV7 (OMAP3xx SoC)
igep0033 ARM ARMV7 (AM33xx Soc)
Eric Benard <[email protected]>
cpuat91 ARM920T
cpu9260 ARM926EJS (AT91SAM9260 SoC)
cpu9G20 ARM926EJS (AT91SAM9G20 SoC)
Ajay Bhargav <[email protected]>
gplugd ARM926EJS (ARMADA100 88AP168 SoC)
Rishi Bhattacharya <[email protected]>
omap5912osk ARM926EJS
Andreas Bießmann <[email protected]>
at91rm9200ek at91rm9200
Cliff Brake <[email protected]>
pxa255_idp xscale/pxa
Rick Bronson <[email protected]>
AT91RM9200DK at91rm9200
Luca Ceresoli <[email protected]>
dig297 ARM ARMV7 (OMAP3530 SoC)
Po-Yu Chuang <[email protected]>
a320evb FA526 (ARM920T-like) (a320 SoC)
Eric Cooper <[email protected]>
dockstar ARM926EJS (Kirkwood SoC)
Wolfgang Denk <[email protected]>
imx27lite i.MX27
qong i.MX31
Mike Dunn <[email protected]>
palmtreo680 pxa270
Kristoffer Ericson <[email protected]>
jornada SA1110
Fabio Estevam <[email protected]>
mx25pdk i.MX25
mx28evk i.MX28
mx31pdk i.MX31
mx53ard i.MX53
mx53smd i.MX53
mx6sabresd i.MX6Q/DL
mx6qsabreauto i.MX6Q
wandboard i.MX6DL/S/Q
mx6slevk i.MX6SL
Daniel Gorsulowski <[email protected]>
meesc ARM926EJS (AT91SAM9263 SoC)
otc570 ARM926EJS (AT91SAM9263 SoC)
Bo Shen<[email protected]>
at91sam9g10ek ARM926EJS (AT91SAM9G10 SoC)
at91sam9m10g45ek ARM926EJS (AT91SAM9G45 SoC)
Simon Guinot <[email protected]>
inetspace_v2 ARM926EJS (Kirkwood SoC)
netspace_v2 ARM926EJS (Kirkwood SoC)
netspace_max_v2 ARM926EJS (Kirkwood SoC)
net2big_v2 ARM926EJS (Kirkwood SoC)
Igor Grinberg <[email protected]>
cm_t35 ARM ARMV7 (OMAP3xx Soc)
Stefan Herbrechtsmeier <[email protected]>
dns325 ARM926EJS (Kirkwood SoC)
Lauri Hintsala <[email protected]>
apx4devkit i.MX28
Vaibhav Hiremath <[email protected]>
am3517_evm ARM ARMV7 (AM35x SoC)
Markus Hubig <[email protected]>
STAMP9G20 ARM926EJS
Grazvydas Ignotas <[email protected]>
omap3_pandora ARM ARMV7 (OMAP3xx SoC)
Ilko Iliev <[email protected]>
PM9261 AT91SAM9261
PM9263 AT91SAM9263
PM9G45 ARM926EJS (AT91SAM9G45 SoC)
Michael Jones <[email protected]>
omap3_mvblx ARM ARMV7 (OMAP3xx SoC)
Matthias Kaehlcke <[email protected]>
edb9301 ARM920T (EP9301)
edb9302 ARM920T (EP9302)
edb9302a ARM920T (EP9302)
edb9307 ARM920T (EP9307)
edb9307a ARM920T (EP9307)
edb9312 ARM920T (EP9312)
edb9315 ARM920T (EP9315)
edb9315a ARM920T (EP9315)
Nishant Kamat <[email protected]>
omap1610h2 ARM926EJS
Minkyu Kang <[email protected]>
SMDKC100 ARM ARMV7 (S5PC100 SoC)
s5p_goni ARM ARMV7 (S5PC110 SoC)
s5pc210_universal ARM ARMV7 (EXYNOS4210 SoC)
Chander Kashyap <[email protected]>
origen ARM ARMV7 (EXYNOS4210 SoC)
SMDKV310 ARM ARMV7 (EXYNOS4210 SoC)
SMDK5250 ARM ARMV7 (EXYNOS5250 SoC)
Lukasz Majewski <[email protected]>
trats ARM ARMV7 (EXYNOS4210 SoC)
Torsten Koschorrek <[email protected]>
scb9328 ARM920T (i.MXL)
Sergey Kubushyn <[email protected]>
DV-EVM ARM926EJS
SONATA ARM926EJS
SCHMOOGIE ARM926EJS
Vipin Kumar <[email protected]>
spear300 ARM926EJS (spear300 Soc)
spear310 ARM926EJS (spear310 Soc)
spear320 ARM926EJS (spear320 Soc)
spear600 ARM926EJS (spear600 Soc)
Sergey Lapin <[email protected]>
afeb9260 ARM926EJS (AT91SAM9260 SoC)
Alex Ling <[email protected]>
mini210 ARM ARMv7 (S5PC110 SoC)
Valentin Longchamp <[email protected]>
km_kirkwood ARM926EJS (Kirkwood SoC)
kmnusa ARM926EJS (Kirkwood SoC)
mgcoge3un ARM926EJS (Kirkwood SoC)
kmcoge5un ARM926EJS (Kirkwood SoC)
portl2 ARM926EJS (Kirkwood SoC)
Nishanth Menon <[email protected]>
omap3_sdp3430 ARM ARMV7 (OMAP3xx SoC)
omap3_zoom1 ARM ARMV7 (OMAP3xx SoC)
David Müller <[email protected]>
smdk2410 ARM920T
VCMA9 ARM920T
Eric Millbrandt <[email protected]>
galaxy5200 mpc5200
Nagendra T S <[email protected]>
am3517_crane ARM ARMV7 (AM35x SoC)
Dinh Nguyen <[email protected]>
Chin Liang See <[email protected]>
socfpga socfpga_cyclone5
Sandeep Paulraj <[email protected]>
davinci_dm355evm ARM926EJS
davinci_dm355leopard ARM926EJS
davinci_dm365evm ARM926EJS
davinci_dm6467evm ARM926EJS
Helmut Raiger <[email protected]>
tt01 i.MX31
Linus Walleij <[email protected]>
integratorap various
integratorcp various
Luka Perkov <[email protected]>
ib62x0 ARM926EJS
iconnect ARM926EJS
Dave Peverley <[email protected]>
omap730p2 ARM926EJS
Lars Poeschel <[email protected]>
pcm051 ARM ARMV7 (AM33xx Soc)
Mathieu Poirier <[email protected]>
snowball ARM ARMV7 (u8500 SoC)
Stelian Pop <[email protected]>
at91sam9260ek ARM926EJS (AT91SAM9260 SoC)
at91sam9261ek ARM926EJS (AT91SAM9261 SoC)
at91sam9263ek ARM926EJS (AT91SAM9263 SoC)
at91sam9rlek ARM926EJS (AT91SAM9RL SoC)
Matt Porter <[email protected]>
ti814x_evm ARM ARMV7 (TI814x Soc)
Dave Purdy <[email protected]>
pogo_e02 ARM926EJS (Kirkwood SoC)
Sricharan R <[email protected]>
omap4_panda ARM ARMV7 (OMAP4xx SoC)
omap4_sdp4430 ARM ARMV7 (OMAP4xx SoC)
omap5_evm ARM ARMV7 (OMAP5xx Soc)
Suriyan Ramasami <[email protected]>
goflexhome ARM926EJS (Kirkwood SoC)
Thierry Reding <[email protected]>
plutux Tegra20 (ARM7 & A9 Dual Core)
medcom-wide Tegra20 (ARM7 & A9 Dual Core)
tec Tegra20 (ARM7 & A9 Dual Core)
Christian Riesch <[email protected]>
Manfred Rudigier <[email protected]>
calimain ARM926EJS (AM1808 SoC)
Tom Rini <[email protected]>
am335x_evm ARM ARMV7 (AM33xx Soc)
omap3_beagle ARM ARMV7 (OMAP3xx SoC)
omap3_evm ARM ARMV7 (OMAP3xx SoC)
Tom Rix <[email protected]>
omap3_zoom2 ARM ARMV7 (OMAP3xx SoC)
John Rigby <[email protected]>
tx25 i.MX25
Stefan Roese <[email protected]>
x600 ARM926EJS (spear600 Soc)
titanium i.MX6Q
pdnb3 xscale/ixp
scpu xscale/ixp
Alessandro Rubini <[email protected]>
Nomadik Linux Team <[email protected]>
nhk8815 ARM926EJS (Nomadik 8815 Soc)
Steve Sakoman <[email protected]>
omap3_overo ARM ARMV7 (OMAP3xx SoC)
Leo Sartre <[email protected]>
cgtqmx6qeval i.MX6Q
Jens Scharsig <[email protected]>
eb_cpux9k2 ARM920T (AT91RM9200 SoC)
vl_ma2sc ARM926EJS (AT91SAM9263 SoC)
Heiko Schocher <[email protected]>
enbw_cmc ARM926EJS (AM1808 SoC)
magnesium i.MX27
Michael Schwingen <[email protected]>
actux1 xscale/ixp
actux2 xscale/ixp
actux3 xscale/ixp
actux4 xscale/ixp
dvlhost xscale/ixp
Matt Sealey <[email protected]>
efikamx i.MX51
efikasb i.MX51
Bo Shen <[email protected]>
at91sam9x5ek ARM926EJS (AT91SAM9G15,G25,G35,X25,X35 SoC)
sama5d3xek ARMV7 (SAMA5D31, D33, D34, D35 SoC)
Rajeshwari Shinde <[email protected]>
snow ARM ARMV7 (EXYNOS5250 SoC)
Michal Simek <[email protected]>
zynq ARM ARMV7 (Zynq SoC)
Lucas Stach <[email protected]>
colibri_t20_iris Tegra20 (ARM7 & A9 Dual Core)
Nick Thompson <[email protected]>
da830evm ARM926EJS (DA830/OMAP-L137)
Albin Tonnerre <[email protected]>
sbc35_a9g20 ARM926EJS (AT91SAM9G20 SoC)
tny_a9260 ARM926EJS (AT91SAM9260 SoC)
tny_a9g20 ARM926EJS (AT91SAM9G20 SoC)
Greg Ungerer <[email protected]>
cm4008 ks8695p
cm4116 ks8695p
cm4148 ks8695p
Marek Vasut <[email protected]>
balloon3 xscale/pxa
colibri_pxa270 xscale/pxa
palmld xscale/pxa
palmtc xscale/pxa
vpac270 xscale/pxa
zipitz2 xscale/pxa
mx23_olinuxino i.MX23
m28evk i.MX28
sc_sps_1 i.MX28
m53evk i.MX53
Hugo Villeneuve <[email protected]>
SFFSDR ARM926EJS
Lokesh Vutla <[email protected]>
dra7xx_evm ARM ARMV7 (DRA7xx Soc)
Matt Waddel <[email protected]>
vexpress_ca9x4 ARM ARMV7 (Quad Core)
vexpress_ca5x2 ARM ARMV7 (Dual Core)
Otavio Salvador <[email protected]>
mx23evk i.MX23
Prafulla Wadaskar <[email protected]>
aspenite ARM926EJS (ARMADA100 88AP168 SoC)
mv88f6281gtw_ge ARM926EJS (Kirkwood SoC)