blob: f4ccb7d64940714d0f52cb4224cf2b202b8766bd [file] [log] [blame]
Stefan Reinauerc6e1f8a2015-04-28 13:42:55 -07001
2
Nico Huberc9826d72018-11-05 13:42:35 +01003 List of upstream coreboot maintainers
4 and how to submit coreboot changes
5
6This represents the list of maintainers that work on the upstream coreboot
7code base (on coreboot.org). Maintainers are assigned to topics and when
8applicable to subtrees of the source tree. You'll find some subtrees that
9don't have a maintainer. If you are looking for reviewers for such a sub-
10tree, it's often a good choice to look at the git history to see who worked
11on it last.
Stefan Reinauerc6e1f8a2015-04-28 13:42:55 -070012
13Please try to follow the guidelines below. This will make things
14easier on the maintainers. Not all of these guidelines matter for every
15trivial patch so apply some common sense.
16
171. Always _test_ your changes, however small, on at least 1 or
18 2 people, preferably many more.
19
202. Try to release a few ALPHA test versions to gerrit. Announce
21 them onto the coreboot mailing list and IRC channel and await
22 results. This is especially important on coreboot core changes,
23 but also for device drivers, because often that's the only way
24 you will find things like the fact revision 3 chipset needs
25 a magic fix you didn't know about, or some clown changed the
26 chips on a board and not its name. (Don't laugh!)
27
283. Make sure your changes compile correctly in multiple
29 configurations. In particular check that changes work for all
30 boards in the tree (use abuild!)
31
324. When you are happy with a change make it generally available for
33 testing in gerrit and await feedback.
34
355. Make your patch available through coreboot's gerrit code review
36 system, and add the relevant maintainer from this list as a code
37 reviewer. Be prepared to get your changes sent back with seemingly
38 silly requests about formatting and variable names. These aren't
39 as silly as they seem. One job the maintainers do is to keep
40 things looking the same. Sometimes this means that the clever
41 hack in your mainboard or chipset to get around a problem actually
42 needs to become a generalized coreboot feature ready for next time.
43
44 PLEASE check your patch with the automated style checker
45 (util/lint/checkpatch.pl) to catch trival style violations.
Paul Menzel59e21132017-06-05 12:46:00 +020046 See https://www.coreboot.org/Coding_Style for guidance here.
Stefan Reinauerc6e1f8a2015-04-28 13:42:55 -070047
48 PLEASE add the maintainers that are generated by
49 util/scripts/get_maintainer.pl as reviewers. The results returned
50 by the script will be best if you have git installed and are
51 making your changes in a branch derived from coreboot.org's latest
52 git tree.
53
54 PLEASE try to include any credit lines you want added with the
55 patch. It avoids people being missed off by mistake and makes
56 it easier to know who wants adding and who doesn't.
57
58 PLEASE document known bugs. If it doesn't work for everything
59 or does something very odd once a month document it.
60
61 PLEASE remember that submissions must be made under the terms
62 of the OSDL certificate of contribution and should include a
63 Signed-off-by: line. The current version of this "Developer's
64 Certificate of Origin" (DCO) is listed at
Paul Menzel59e21132017-06-05 12:46:00 +020065 https://www.coreboot.org/Development_Guidelines#Sign-off_Procedure.
Stefan Reinauerc6e1f8a2015-04-28 13:42:55 -070066
676. Make sure you have the right to send any changes you make. If you
68 do changes at work you may find your employer owns the patch
69 not you.
70
717. Happy hacking.
72
73Descriptions of section entries:
74
Stefan Reinauera4ffe8a2015-10-21 13:09:42 -070075 M: Maintainer: FullName <address@domain>
Nico Huberc9826d72018-11-05 13:42:35 +010076 Must be registered to Gerrit (https://review.coreboot.org/).
77 Should have experience with upstream coreboot development.
Stefan Reinauerc6e1f8a2015-04-28 13:42:55 -070078 R: Designated reviewer: FullName <address@domain>
79 These reviewers should be CCed on patches.
80 L: Mailing list that is relevant to this area
81 W: Web-page with status/info
82 Q: Patchwork web based patch tracking system site
83 T: SCM tree type and location.
84 Type is one of: git, hg, quilt, stgit, topgit
85 S: Status, one of the following:
Nico Huberc9826d72018-11-05 13:42:35 +010086 Supported: Someone is continuously paid to look after this and
87 a reaction to review requests can be expected
88 within a few days, a month at most.
89 Maintained: Someone actually looks after it and a reaction to
90 review requests can usually be expected within a
91 few weeks.
Stefan Reinauerc6e1f8a2015-04-28 13:42:55 -070092 Odd Fixes: It has a maintainer but they don't have time to do
93 much other than throw the odd patch in. See below..
94 Orphan: No current maintainer [but maybe you could take the
95 role as you write your new code].
96 Obsolete: Old code. Something tagged obsolete generally means
97 it has been replaced by a better system and you
98 should be using that.
99 F: Files and directories with wildcard patterns.
100 A trailing slash includes all files and subdirectory files.
101 F: drivers/net/ all files in and below drivers/net
102 F: drivers/net/* all files in drivers/net, but not below
103 F: */net/* all files in "any top level directory"/net
104 One pattern per line. Multiple F: lines acceptable.
105 N: Files and directories with regex patterns.
106 N: [^a-z]tegra all files whose path contains the word tegra
107 One pattern per line. Multiple N: lines acceptable.
108 scripts/get_maintainer.pl has different behavior for files that
109 match F: pattern and matches of N: patterns. By default,
110 get_maintainer will not look at git log history when an F: pattern
111 match occurs. When an N: match occurs, git log history is used
112 to also notify the people that have git commit signatures.
113 X: Files and directories that are NOT maintained, same rules as F:
114 Files exclusions are tested before file matches.
115 Can be useful for excluding a specific subdirectory, for instance:
116 F: net/
117 X: net/ipv6/
118 matches all files in and below net excluding net/ipv6/
119 K: Keyword perl extended regex pattern to match content in a
120 patch or file. For instance:
121 K: of_get_profile
122 matches patches or files that contain "of_get_profile"
123 K: \b(printk|pr_(info|err))\b
124 matches patches or files that contain one or more of the words
125 printk, pr_info or pr_err
126 One regex pattern per line. Multiple K: lines acceptable.
127
128Note: For the hard of thinking, this list is meant to remain in alphabetical
129order. If you could add yourselves to it in alphabetical order that would be
130so much easier [Ed]
131
132Maintainers List (try to look for most precise areas first)
133
134 -----------------------------------
135
Angel Pons8d6f5872020-06-07 00:25:42 +0200136################################################################################
137# Mainboards
138################################################################################
Mike Banonc732d682019-12-31 14:29:39 +0300139
Felix Held9a1583b2020-12-06 20:15:31 +0100140AMD family 17h and 19h reference boards
141M: Marshall Dawson <marshalldawson3rd@gmail.com>
142M: Felix Held <felix-coreboot@felixheld.de>
143M: Jason Glenesk <jason.glenesk@gmail.com>
Fred Reitberger636a6de2022-02-17 13:27:35 -0500144M: Fred Reitberger <reitbergerfred@gmail.com>
Felix Held9a1583b2020-12-06 20:15:31 +0100145S: Maintained
Felix Heldd575c8d2022-01-25 04:41:06 +0100146F: src/mainboard/amd/chausie/
Felix Held9a1583b2020-12-06 20:15:31 +0100147F: src/mainboard/amd/majolica/
148F: src/mainboard/amd/mandolin/
149
Evgeny Zinoviev09bf63e2019-05-31 16:03:27 +0300150APPLE MAINBOARDS
151M: Evgeny Zinoviev <me@ch1p.io>
152S: Maintained
153F: src/mainboard/apple/
154
Patrick Georgi8fb453e2018-11-21 22:12:45 +0100155
Angel Pons8d6f5872020-06-07 00:25:42 +0200156
157ASROCK B85M PRO4 MAINBOARD
Angel Pons8a508272020-06-06 22:45:16 +0200158M: Angel Pons <th3fanbus@gmail.com>
159S: Maintained
Angel Pons8d6f5872020-06-07 00:25:42 +0200160F: src/mainboard/asrock/b85m_pro4/
Andrey Petrov842dfe82016-05-24 22:01:56 -0700161
Angel Pons33849042018-12-01 23:28:03 +0100162ASROCK G41C-GS MAINBOARD & VARIANTS
163M: Angel Pons <th3fanbus@gmail.com>
164S: Maintained
165F: src/mainboard/asrock/g41c-gs/
166
Tristan Corrickd88cf5f2018-12-06 19:26:47 +1300167ASROCK H81M-HDS MAINBOARD
168M: Tristan Corrick <tristan@corrick.kiwi>
169S: Maintained
170F: src/mainboard/asrock/h81m-hds/
171
Angel Pons8d6f5872020-06-07 00:25:42 +0200172
Angel Ponsf2aaddc2020-06-06 22:38:38 +0200173
Mike Banon2a830852021-10-27 20:11:45 +0300174ASUS A88XM-E MAINBOARD
175M: Mike Banon <mikebdp2@gmail.com>
176S: Maintained
177F: src/mainboard/asus/a88xm-e/
178
Mike Banonc732d682019-12-31 14:29:39 +0300179ASUS AM1I-A MAINBOARD
180M: Mike Banon <mikebdp2@gmail.com>
181S: Maintained
182F: src/mainboard/asus/am1i-a/
183
Angel Ponse94cda52021-05-17 12:31:29 +0200184ASUS H61 SERIES MAINBOARDS
185M: Angel Pons <th3fanbus@gmail.com>
Angel Ponsed1e25d2021-05-17 13:22:57 +0200186M: Tristan Corrick <tristan@corrick.kiwi>
Angel Ponse94cda52021-05-17 12:31:29 +0200187S: Maintained
188F: src/mainboard/asus/h61-series/
189
Tristan Corrickd88cf5f2018-12-06 19:26:47 +1300190ASUS MAXIMUS IV GENE-Z MAINBOARD
191M: Tristan Corrick <tristan@corrick.kiwi>
192S: Maintained
193F: src/mainboard/asus/maximus_iv_gene-z/
194
Angel Pons33849042018-12-01 23:28:03 +0100195ASUS P5QC PRO MAINBOARD & VARIANTS
196M: Angel Pons <th3fanbus@gmail.com>
Stefan Ott98d63852021-04-22 01:28:56 +0200197R: Stefan Ott <coreboot@desire.ch>
Angel Pons33849042018-12-01 23:28:03 +0100198S: Maintained
199F: src/mainboard/asus/p5qc/
200
Angel Ponsf2aaddc2020-06-06 22:38:38 +0200201ASUS P5QPL-AM MAINBOARD & VARIANTS
202M: Angel Pons <th3fanbus@gmail.com>
203S: Maintained
204F: src/mainboard/asus/p5qpl-am/
205
Angel Pons81c2e022021-05-17 17:45:54 +0200206ASUS P8Z77 SERIES MAINBOARDS
Angel Ponsf2aaddc2020-06-06 22:38:38 +0200207M: Angel Pons <th3fanbus@gmail.com>
Angel Pons6f925062021-05-17 17:57:19 +0200208M: Vlado Cibic <vladocb@protonmail.com>
Angel Ponsf2aaddc2020-06-06 22:38:38 +0200209S: Maintained
Angel Pons81c2e022021-05-17 17:45:54 +0200210F: src/mainboard/asus/p8z77-series/
Angel Ponsf2aaddc2020-06-06 22:38:38 +0200211
Michał Żygowskib9f9f6c2018-12-21 12:23:27 +0100212
Michael Niewöhner489a11e2019-10-17 14:57:52 +0200213
Felix Singer63975f02020-10-12 21:47:43 +0000214CLEVO MAINBOARDS
215M: Felix Singer <felixsinger@posteo.net>
Michael Niewöhnere4478632020-07-19 22:56:35 +0200216M: Michael Niewöhner <foss@mniewoehner.de>
Felix Singer63975f02020-10-12 21:47:43 +0000217S: Supported
Michael Niewöhner5fd29312020-11-13 01:13:46 +0100218F: src/mainboard/clevo/
Felix Singer63975f02020-10-12 21:47:43 +0000219
220
221
Frans Hendriks1583fcd2019-06-05 10:18:23 +0200222FACEBOOK FBG1701 MAINBOARD
223M: Frans Hendriks <fhendriks@eltan.com>
Frans Hendriks7e7ea2b2021-12-02 10:15:20 +0100224M: Erik van den Bogaert <ebogaert@eltan.com>
Frans Hendriks1583fcd2019-06-05 10:18:23 +0200225S: Maintained
226F: src/mainboard/facebook/fbg1701/
227
Wim Vervoorn4ba70a72019-12-05 13:48:11 +0100228FACEBOOK MONOLITH MAINBOARD
229M: Frans Hendriks <fhendriks@eltan.com>
Frans Hendriks7e7ea2b2021-12-02 10:15:20 +0100230M: Erik van den Bogaert <ebogaert@eltan.com>
Wim Vervoorn4ba70a72019-12-05 13:48:11 +0100231S: Maintained
232F: src/mainboard/facebook/monolith/
233
Angel Pons8d6f5872020-06-07 00:25:42 +0200234
235
Angel Pons8602e662021-04-21 23:29:03 +0200236GIGABYTE GA-D510UD MAINBOARD
237M: Angel Pons <th3fanbus@gmail.com>
238S: Maintained
239F: src/mainboard/gigabyte/ga-d510ud/
240
Angel Pons8d6f5872020-06-07 00:25:42 +0200241GIGABYTE GA-G41M-ES2L MAINBOARD
242M: Damien Zammit <damien@zamaudio.com>
243S: Odd Fixes
Felix Singer3c02ed92020-11-30 06:56:08 +0100244F: src/mainboard/gigabyte/ga-g41m-es2l/
Angel Pons8d6f5872020-06-07 00:25:42 +0200245
246GIGABYTE GA-H61M SERIES MAINBOARDS
247M: Angel Pons <th3fanbus@gmail.com>
248S: Maintained
Felix Singer3c02ed92020-11-30 06:56:08 +0100249F: src/mainboard/gigabyte/ga-h61m-series/
Angel Pons8d6f5872020-06-07 00:25:42 +0200250
251
Tim Wawrzynczak7400b612021-04-20 22:04:22 -0600252GOOGLE BRYA MAINBOARDS
253M: Tim Wawrzynczak <twawrzynczak@chromium.org>
254S: Maintained
255F: src/mainboard/google/brya/
256
257GOOGLE HATCH MAINBOARDS
258M: Tim Wawrzynczak <twawrzynczak@chromium.org>
259S: Maintained
260F: src/mainboard/google/hatch/
Angel Pons8d6f5872020-06-07 00:25:42 +0200261
262GOOGLE PANTHER MAINBOARD
263M: Stefan Reinauer <stefan.reinauer@coreboot.org>
264S: Supported
265F: src/mainboard/google/panther/
266
Tim Wawrzynczak7400b612021-04-20 22:04:22 -0600267GOOGLE VOLTEER MAINBOARDS
268M: Tim Wawrzynczak <twawrzynczak@chromium.org>
Nick Vaccaro5f124552021-04-28 14:28:39 -0700269M: Nick Vaccaro <nvaccaro@chromium.org>
Tim Wawrzynczak7400b612021-04-20 22:04:22 -0600270S: Maintained
271F: src/mainboard/google/volteer/
272
Angel Pons8d6f5872020-06-07 00:25:42 +0200273GOOGLE MAINBOARDS (Intel-based, legacy/inactive)
274M: Matt DeVillier <MrChromebox@gmail.com>
275S: Maintained
276F: src/mainboard/google/auron/
277F: src/mainboard/google/beltino/
278F: src/mainboard/google/butterfly/
279F: src/mainboard/google/cyan/
280F: src/mainboard/google/glados/
281F: src/mainboard/google/jecht/
282F: src/mainboard/google/link/
283F: src/mainboard/google/parrot/
284F: src/mainboard/google/slippy/
285F: src/mainboard/google/stout/
286
287
288
Angel Pons8602e662021-04-21 23:29:03 +0200289HP 280 G2 MAINBOARD
290M: Angel Pons <th3fanbus@gmail.com>
291S: Maintained
292F: src/mainboard/hp/280_g2/
293
294
295
Angel Pons8d6f5872020-06-07 00:25:42 +0200296INTEL D510MO MAINBOARD
297M: Damien Zammit <damien@zamaudio.com>
298S: Odd Fixes
Felix Singer3c02ed92020-11-30 06:56:08 +0100299F: src/mainboard/intel/d510mo/
Angel Pons8d6f5872020-06-07 00:25:42 +0200300
Mariusz Szafranski37afe1c2022-01-19 15:25:29 +0000301INTEL HARCUVAR_CRB MAINBOARD
302M: Jeff Daly <jeffd@silicom-usa.com>
303M: Vanessa Eusebio <vanessa.f.eusebio@intel.com>
304M: Suresh Bellampalli <suresh.bellampalli@intel.com>
305M: Mariusz Szafranski <mariuszx.szafranski@intel.com>
306S: Maintained
307F: src/mainboard/intel/harcuvar/
308
Angel Pons8d6f5872020-06-07 00:25:42 +0200309INTEL STRAGO MAINBOARD
310M: Hannah Williams <hannah.williams@intel.com>
311S: Supported
312F: /src/mainboard/intel/strago/
313
314
315
Felix Singer32608cf2020-11-22 00:38:16 +0000316KONTRON BSL6 MAINBOARD
317M: Felix Singer <felixsinger@posteo.net>
318M: Nico Huber <nico.h@gmx.de>
319S: Supported
320F: src/mainboard/kontron/bsl6/
321
Felix Singer5a41b0d2020-11-23 20:20:38 +0000322KONTRON MAL10 MAINBOARD
323M: Maxim Polyakov <max.senia.poliak@gmail.com>
324M: Nico Huber <nico.h@gmx.de>
325M: Felix Singer <felixsinger@posteo.net>
326S: Supported
327F: src/mainboard/kontron/mal10/
328
Felix Singer32608cf2020-11-22 00:38:16 +0000329
330
Angel Pons8d6f5872020-06-07 00:25:42 +0200331LENOVO MAINBOARDS
332M: Alexander Couzens <lynxis@fe80.eu>
Angel Pons8d6f5872020-06-07 00:25:42 +0200333S: Maintained
334F: src/mainboard/lenovo/
335
336LENOVO G505S MAINBOARD
337M: Mike Banon <mikebdp2@gmail.com>
338S: Maintained
339F: src/mainboard/lenovo/g505s/
340
Stefan Ott98d63852021-04-22 01:28:56 +0200341LENOVO X200 MAINBOARD
342R: Stefan Ott <coreboot@desire.ch>
343S: Maintained
344F: src/mainboard/lenovo/x200/
345
346LENOVO X201 MAINBOARD
347R: Stefan Ott <coreboot@desire.ch>
348S: Maintained
349F: src/mainboard/lenovo/x201/
Angel Pons8d6f5872020-06-07 00:25:42 +0200350
351
352LIBRETREND LT1000 MAINBOARD
353M: Piotr Król <piotr.krol@3mdeb.com>
354M: Michał Żygowski <michal.zygowski@3mdeb.com>
355S: Maintained
Felix Singer3c02ed92020-11-30 06:56:08 +0100356F: src/mainboard/libretrend/lt1000/
Angel Pons8d6f5872020-06-07 00:25:42 +0200357
358
Angel Pons8602e662021-04-21 23:29:03 +0200359
360MSI H81M-P33 MAINBOARD
361M: Angel Pons <th3fanbus@gmail.com>
362S: Maintained
363F: src/mainboard/msi/h81m-p33/
364
365
366
Jonathan Zhangdd4f6432020-06-30 11:39:09 -0700367OCP DELTALAKE MAINBOARD
Jonathan Zhang4a4806f2021-09-16 09:06:47 -0700368M: Arthur Heymans <arthur@aheymans.xyz>
369M: Christian Walter <christian.walter@9elements.com>
Jonathan Zhangdd4f6432020-06-30 11:39:09 -0700370M: Johnny Lin <Johnny_Lin@wiwynn.com>
Jonathan Zhang4a4806f2021-09-16 09:06:47 -0700371M: Jonathan Zhang <jonzhang@fb.com>
372M: Tim Chu <Tim.Chu@quantatw.com>
Jonathan Zhangdd4f6432020-06-30 11:39:09 -0700373S: Supported
Felix Singer3c02ed92020-11-30 06:56:08 +0100374F: src/mainboard/ocp/deltalake/
Angel Pons8d6f5872020-06-07 00:25:42 +0200375
Jonathan Zhanged849ed2020-05-01 11:23:46 -0700376OCP TIOGAPASS MAINBOARD
377M: Jonathan Zhang <jonzhang@fb.com>
378M: Reddy Chagam <anjaneya.chagam@intel.com>
379M: Johnny Lin <Johnny_Lin@wiwynn.com>
380M: Morgan Jang <Morgan_Jang@wiwynn.com>
381M: Ryback Hung <<Ryback.Hung@quantatw.com>
382M: Bryant Ou <Bryant.Ou@quantatw.com>
383S: Maintained
Felix Singer3c02ed92020-11-30 06:56:08 +0100384F: src/mainboard/ocp/tiogapass/
Jonathan Zhanged849ed2020-05-01 11:23:46 -0700385
Angel Pons8d6f5872020-06-07 00:25:42 +0200386
387
388OPENCELLULAR MAINBOARDS
389M: Christian Walter <christian.walter@9elements.com>
390M: Patrick Rudolph <patrick.rudolph@9elements.com>
391S: Supported
392F: src/mainboard/opencellular/elgon/
393
394
395
396PC ENGINES ALL MAINBOARDS
397M: Piotr Król <piotr.krol@3mdeb.com>
398M: Michał Żygowski <michal.zygowski@3mdeb.com>
399S: Supported
400F: src/mainboard/pcengines/
401
402
403
Frans Hendriksa78146c2019-07-19 10:30:20 +0200404PORTWELL PQ-M107 MAINBOARD
405M: Frans Hendriks <fhendriks@eltan.com>
Frans Hendriks7e7ea2b2021-12-02 10:15:20 +0100406M: Erik van den Bogaert <ebogaert@eltan.com>
Frans Hendriksa78146c2019-07-19 10:30:20 +0200407S: Maintained
408F: src/mainboard/portwell/m107/
409
Martin Roth2a3434752016-03-05 18:31:29 -0700410
Stefan Reinauerbf3dbaf2015-06-12 15:30:59 -0700411
Angel Pons8d6f5872020-06-07 00:25:42 +0200412PROTECTLI ALL MAINBOARDS
413M: Piotr Król <piotr.krol@3mdeb.com>
414M: Michał Żygowski <michal.zygowski@3mdeb.com>
415S: Maintained
416F: src/mainboard/protectli/
Stefan Reinauerbf3dbaf2015-06-12 15:30:59 -0700417
Angel Pons8d6f5872020-06-07 00:25:42 +0200418
419
Christian Walter02b39372020-06-17 20:17:59 +0200420PRODRIVE HERMES MAINBOARD
421M: Christian Walter <christian.walter@9elements.com>
422M: Patrick Rudolph <patrick.rudolph@9elements.com>
423S: Maintained
Felix Singer3c02ed92020-11-30 06:56:08 +0100424F: src/mainboard/prodrive/hermes/
Christian Walter02b39372020-06-17 20:17:59 +0200425
426
427
Angel Pons8d6f5872020-06-07 00:25:42 +0200428PURISM MAINBOARDS
429M: Matt DeVillier <matt.devillier@puri.sm>
Julius Werner848f5db2017-09-11 13:12:48 -0700430S: Supported
Felix Singer3c02ed92020-11-30 06:56:08 +0100431F: src/mainboard/purism/
Angel Pons8d6f5872020-06-07 00:25:42 +0200432
433
434
435SAMSUNG CHROMEOS MAINBOARDS
436M: Matt DeVillier <MrChromebox@gmail.com>
437S: Maintained
438F: src/mainboard/samsung/lumpy/
439F: src/mainboard/samsung/stumpy/
440
441
442
Felix Singer32608cf2020-11-22 00:38:16 +0000443SIEMENS CHILI MAINBAORD
444M: Felix Singer <felixsinger@posteo.net>
445M: Nico Huber <nico.h@gmx.de>
446S: Supported
447F: src/mainboard/siemens/chili/
448
Angel Pons8d6f5872020-06-07 00:25:42 +0200449SIEMENS MC_xxxx MAINBOARDS
450M: Werner Zeh <werner.zeh@siemens.com>
451S: Maintained
452F: src/mainboard/siemens/mc_apl1/
Werner Zeh9f15a6c2022-04-22 10:23:44 +0200453F: src/mainboard/siemens/mc_ehl/
Angel Pons8d6f5872020-06-07 00:25:42 +0200454
455
456
Sean Rhodes17441a32021-07-05 16:03:15 +0100457STAR LABS MAINBOARDS
458M: Sean Rhodes <sean@starlabs.systems>
459S: Maintained
460F: src/mainboard/starlabs/
461
462
463
Jeremy Soller625af2b2020-07-21 08:23:39 -0600464SYSTEM76 MAINBOARDS
465M: Jeremy Soller <jeremy@system76.com>
Tim Crawford5310d522021-04-21 15:30:29 -0600466M: Tim Crawford <tcrawford@system76.com>
Jeremy Soller625af2b2020-07-21 08:23:39 -0600467S: Maintained
468F: src/mainboard/system76/
469
470
471
Angel Pons8d6f5872020-06-07 00:25:42 +0200472SUPERMICRO X10SLM+-F MAINBOARD
473M: Tristan Corrick <tristan@corrick.kiwi>
474S: Maintained
475F: src/mainboard/supermicro/x10slm-f/
476
477SUPERMICRO X11-LGA1151-SERIES
478M: Michael Niewöhner <foss@mniewoehner.de>
479S: Maintained
Michael Niewöhner5fd29312020-11-13 01:13:46 +0100480F: src/mainboard/supermicro/x11-lga1151-series/
Angel Pons8d6f5872020-06-07 00:25:42 +0200481
482################################################################################
483# Architectures
484################################################################################
Julius Werner848f5db2017-09-11 13:12:48 -0700485
Stefan Reinauerbf3dbaf2015-06-12 15:30:59 -0700486ARM ARCHITECTURE
Julius Wernerc34e41f2017-06-09 14:26:03 -0700487M: Julius Werner <jwerner@chromium.org>
488S: Supported
Stefan Reinauerbf3dbaf2015-06-12 15:30:59 -0700489F: src/arch/arm/
Julius Wernerc34e41f2017-06-09 14:26:03 -0700490F: src/arch/arm64/
Julius Wernerc34e41f2017-06-09 14:26:03 -0700491F: src/soc/nvidia/
492F: src/soc/rockchip/
493F: util/nvidia/
494F: util/rockchip/
495
Angel Pons8d6f5872020-06-07 00:25:42 +0200496PPC64 ARCHITECTURE
497M: Ronald Minnich <rminnich@gmail.com>
498M: Timothy Pearson <tpearson@raptorengineeringinc.com>
499S: Maintained
500F: src/arch/ppc64/
501F: src/cpu/qemu-power8/
502F: src/mainboard/emulation/qemu-power8/
503
504RISC-V ARCHITECTURE
505M: Ronald Minnich <rminnich@gmail.com>
506R: Philipp Hug <philipp@hug.cx>
507S: Maintained
508F: src/arch/riscv/
509F: src/soc/sifive/
510F: src/soc/ucb/
511F: src/mainboard/emulation/*-riscv/
512F: src/mainboard/sifive/
513F: util/riscv/
Stefan Reinauerbf3dbaf2015-06-12 15:30:59 -0700514
Stefan Reinauerbf3dbaf2015-06-12 15:30:59 -0700515X86 ARCHITECTURE
516F: src/arch/x86/
517F: src/cpu/x86/
518F: src/drivers/pc80/
519F: src/include/pc80/
520F: src/include/cpu/x86/
521
Angel Pons8d6f5872020-06-07 00:25:42 +0200522################################################################################
523# Embedded Controllers
524################################################################################
525
Tim Wawrzynczak7400b612021-04-20 22:04:22 -0600526CHROME EC
527M: Tim Wawrzynczak <twawrzynczak@chromium.org>
528S: Maintained
529F: src/ec/google/chromeec/
530
Angel Pons8d6f5872020-06-07 00:25:42 +0200531LENOVO EC
532M: Alexander Couzens <lynxis@fe80.eu>
533S: Maintained
534F: src/ec/lenovo/
535
Sean Rhodes17441a32021-07-05 16:03:15 +0100536STARLABS EC
537M: Sean Rhodes <sean@starlabs.systems>
538S: Maintained
539F: src/ec/starlabs/
540
Jeremy Soller625af2b2020-07-21 08:23:39 -0600541SYSTEM76 EC
542M: Jeremy Soller <jeremy@system76.com>
Tim Crawford5310d522021-04-21 15:30:29 -0600543M: Tim Crawford <tcrawford@system76.com>
Jeremy Soller625af2b2020-07-21 08:23:39 -0600544S: Maintained
545F: src/ec/system76/
546
Angel Pons8d6f5872020-06-07 00:25:42 +0200547################################################################################
548# Northbridges
549################################################################################
550
551INTEL HASWELL NORTHBRIDGE
552M: Angel Pons <th3fanbus@gmail.com>
553S: Maintained
554F: src/northbridge/intel/haswell/
555
556INTEL PINEVIEW CHIPSET
557M: Damien Zammit <damien@zamaudio.com>
558M: Angel Pons <th3fanbus@gmail.com>
559S: Odd Fixes
560F: src/northbridge/intel/pineview/
561
562INTEL SANDYBRIDGE NORTHBRIDGE
563M: Angel Pons <th3fanbus@gmail.com>
564S: Maintained
565F: src/northbridge/intel/sandybridge/
566
567INTEL X4X CHIPSET
568M: Damien Zammit <damien@zamaudio.com>
569M: Angel Pons <th3fanbus@gmail.com>
570S: Odd Fixes
571F: src/northbridge/intel/x4x/
572
573################################################################################
574# Platforms
575################################################################################
576
577AMD SUPPORT
578F: src/vendorcode/amd/
579F: src/cpu/amd/
580F: src/northbridge/amd/
581F: src/southbridge/amd/
582F: src/include/cpu/amd/
583
Stefan Reinauerbf3dbaf2015-06-12 15:30:59 -0700584INTEL SUPPORT
Martin Roth954338d2017-03-05 11:20:18 -0700585S: Maintained
Stefan Reinauerbf3dbaf2015-06-12 15:30:59 -0700586F: src/vendorcode/intel/
587F: src/cpu/intel/
588F: src/northbridge/intel/
589F: src/southbridge/intel/
590F: src/soc/intel/
591F: src/drivers/intel/
592F: src/include/cpu/intel/
593
Angel Pons8d6f5872020-06-07 00:25:42 +0200594INTEL FSP 1.1
595M: Lee Leahy <leroy.p.leahy@intel.com>
596M: Huang Jin <huang.jin@intel.com>
597M: York Yang <york.yang@intel.com>
598S: Supported
599F: src/drivers/intel/fsp1_1/
600
601INTEL FSP 2.0
602M: Andrey Petrov <andrey.petrov@gmail.com>
603S: Maintained
604F: src/drivers/intel/fsp2_0/
605
606################################################################################
607# Systems on a Chip
608################################################################################
609
Felix Heldfef413e2020-12-02 15:57:24 +0100610AMD Cezanne
611M: Marshall Dawson <marshalldawson3rd@gmail.com>
612M: Felix Held <felix-coreboot@felixheld.de>
613M: Jason Glenesk <jason.glenesk@gmail.com>
Raul E Rangelc81509c2021-01-25 10:24:14 -0700614M: Raul E Rangel <rrangel@chromium.org>
Fred Reitberger636a6de2022-02-17 13:27:35 -0500615M: Fred Reitberger <reitbergerfred@gmail.com>
Felix Heldfef413e2020-12-02 15:57:24 +0100616S: Maintained
617F: src/soc/amd/cezanne/
Felix Heldfe84dbb2021-08-06 16:25:35 +0200618F: src/vendorcode/amd/fsp/cezanne/
Felix Heldfef413e2020-12-02 15:57:24 +0100619
620AMD common SoC code
621M: Marshall Dawson <marshalldawson3rd@gmail.com>
622M: Felix Held <felix-coreboot@felixheld.de>
623M: Jason Glenesk <jason.glenesk@gmail.com>
Raul E Rangelc81509c2021-01-25 10:24:14 -0700624M: Raul E Rangel <rrangel@chromium.org>
Fred Reitberger636a6de2022-02-17 13:27:35 -0500625M: Fred Reitberger <reitbergerfred@gmail.com>
Felix Heldfef413e2020-12-02 15:57:24 +0100626S: Maintained
627F: src/soc/amd/common/
628
Felix Held93231b42020-11-13 15:56:28 +0100629AMD Picasso
630M: Marshall Dawson <marshalldawson3rd@gmail.com>
631M: Felix Held <felix-coreboot@felixheld.de>
632M: Jason Glenesk <jason.glenesk@gmail.com>
Raul E Rangelc81509c2021-01-25 10:24:14 -0700633M: Raul E Rangel <rrangel@chromium.org>
Fred Reitberger636a6de2022-02-17 13:27:35 -0500634M: Fred Reitberger <reitbergerfred@gmail.com>
Felix Held93231b42020-11-13 15:56:28 +0100635S: Maintained
Felix Singer3c02ed92020-11-30 06:56:08 +0100636F: src/soc/amd/picasso/
637F: src/vendorcode/amd/fsp/picasso/
Felix Held93231b42020-11-13 15:56:28 +0100638
Felix Held2e88d062022-01-25 04:39:39 +0100639AMD Sabrina
640M: Marshall Dawson <marshalldawson3rd@gmail.com>
641M: Felix Held <felix-coreboot@felixheld.de>
642M: Jason Glenesk <jason.glenesk@gmail.com>
643M: Raul E Rangel <rrangel@chromium.org>
Fred Reitberger636a6de2022-02-17 13:27:35 -0500644M: Fred Reitberger <reitbergerfred@gmail.com>
Felix Held2e88d062022-01-25 04:39:39 +0100645S: Maintained
646F: src/soc/amd/sabrina/
647F: src/vendorcode/amd/fsp/sabrina/
648
Felix Held4080e082021-08-06 16:30:02 +0200649AMD Stoneyridge
650M: Marshall Dawson <marshalldawson3rd@gmail.com>
651M: Felix Held <felix-coreboot@felixheld.de>
652S: Odd Fixes
653F: src/soc/amd/stoneyridge/
654
Tim Wawrzynczak7400b612021-04-20 22:04:22 -0600655INTEL ALDERLAKE SOC
656M: Tim Wawrzynczak <twawrzynczak@chromium.org>
657S: Maintained
658F: src/soc/intel/alderlake/
659
Angel Pons8d6f5872020-06-07 00:25:42 +0200660INTEL APOLLOLAKE_SOC
661M: Andrey Petrov <andrey.petrov@gmail.com>
662S: Maintained
663F: src/soc/intel/apollolake/
664
665INTEL BRASWELL SOC
666M: Piotr Król <piotr.krol@3mdeb.com>
667M: Michał Żygowski <michal.zygowski@3mdeb.com>
668M: Frans Hendriks <fhendriks@eltan.com>
669S: Maintained
Felix Singer3c02ed92020-11-30 06:56:08 +0100670F: /src/soc/intel/braswell/
671F: /src/vendorcode/intel/fsp/fsp1_1/braswell/
Angel Pons8d6f5872020-06-07 00:25:42 +0200672
Mariusz Szafranski37afe1c2022-01-19 15:25:29 +0000673INTEL DENVERTON-NS SOC
674M: Jeff Daly <jeffd@silicom-usa.com>
675M: Vanessa Eusebio <vanessa.f.eusebio@intel.com>
676M: Suresh Bellampalli <suresh.bellampalli@intel.com>
677M: Mariusz Szafranski <mariuszx.szafranski@intel.com>
678S: Maintained
679F: src/soc/intel/denverton_ns/
680
Tim Wawrzynczak7400b612021-04-20 22:04:22 -0600681INTEL TIGERLAKE SOC
682M: Tim Wawrzynczak <twawrzynczak@chromium.org>
683S: Maintained
684F: src/soc/intel/tigerlake/
685
Jonathan Zhange9b0b082020-06-30 13:28:52 -0700686INTEL Xeon Sacalable Processor Family
687M: Jonathan Zhang <jonzhang@fb.com>
688M: Reddy Chagam <anjaneya.chagam@intel.com>
689M: Johnny Lin <Johnny_Lin@wiwynn.com>
Jonathan Zhang4a4806f2021-09-16 09:06:47 -0700690M: Tim Chu <Tim.Chu@quantatw.com>
691M: Arthur Heymans <arthur@aheymans.xyz>
692M: Christian Walter <christian.walter@9elements.com>
Jonathan Zhange9b0b082020-06-30 13:28:52 -0700693S: Supported
Felix Singerd70d1d12020-11-30 06:56:08 +0100694F: src/soc/intel/xeon_sp/
Felix Singer3c02ed92020-11-30 06:56:08 +0100695F: src/vendorcode/intel/fsp/fsp2_0/skylake_sp/
696F: src/vendorcode/intel/fsp/fsp2_0/copperlake_sp/
Jonathan Zhange9b0b082020-06-30 13:28:52 -0700697
Julius Wernerb1263802020-08-24 14:24:21 -0700698MEDIATEK SOCS
699M: Hung-Te Lin <hungte@chromium.org>
700S: Supported
Felix Singer3c02ed92020-11-30 06:56:08 +0100701F: src/soc/mediatek/
Julius Wernerb1263802020-08-24 14:24:21 -0700702
Xi Chen022b1b92021-02-05 11:45:12 +0800703MEDIATEK MT8192
704M: Xi Chen <xixi.chen@mediatek.com>
705S: Maintained
706F: src/soc/mediatek/mt8192/
707F: src/vendorcode/mediatek/mt8192/
708
Angel Pons8d6f5872020-06-07 00:25:42 +0200709ORPHANED ARM SOCS
710S: Orphaned
711F: src/cpu/armltd/
Sam Lewisad7b2e22020-08-03 20:18:29 +1000712F: src/soc/ti/
Angel Pons8d6f5872020-06-07 00:25:42 +0200713F: src/soc/qualcomm/
714F: src/soc/samsung/
715F: util/exynos/
716F: util/ipqheader/
717
718################################################################################
719# Payloads
720################################################################################
721
722NVRAM
723F: util/nvramtool/
724F: payloads/nvramcui/
725
726LIBPAYLOAD
727F: payloads/libpayload/
728
729COREINFO PAYLOAD
730F: payloads/coreinfo/
731
732EXTERNAL PAYLOADS INTEGRATION
733M: Stefan Reinauer <stefan.reinauer@coreboot.org>
734M: Martin Roth <gaumless@gmail.com>
Felix Singer3c02ed92020-11-30 06:56:08 +0100735F: payloads/external/
Angel Pons8d6f5872020-06-07 00:25:42 +0200736
737LINUXBOOT PAYLOAD INTEGRATION
738M: Christian Walter <christian.walter@9elements.com>
739M: Marcello Sylvester Bauer <info@marcellobauer.com>
740S: Supported
Felix Singer3c02ed92020-11-30 06:56:08 +0100741F: payloads/external/LinuxBoot/
Angel Pons8d6f5872020-06-07 00:25:42 +0200742
743################################################################################
744# Utilities
745################################################################################
746
747ABUILD
Angel Pons8d6f5872020-06-07 00:25:42 +0200748M: Martin Roth <gaumless@gmail.com>
749S: Supported
750F: util/abuild/
751
752BOARD STATUS
753F: util/board_status/
754
755BUILD SYSTEM
Angel Pons8d6f5872020-06-07 00:25:42 +0200756M: Martin Roth <gaumless@gmail.com>
757S: Supported
758F: Makefile
759F: *.inc
760F: src/include/kconfig.h
761F: util/kconfig/
762F: util/sconfig/
763F: util/xcompile/
764F: util/genbuild_h/
765
766TOOLCHAIN
767F: util/crossgcc/
768
769DOCKER
770M: Martin Roth <gaumless@gmail.com>
771S: Supported
772F: util/docker/
773
774GIT
775F: .git*
776F: /util/gitconfig
Stefan Reinauerbf3dbaf2015-06-12 15:30:59 -0700777
Stefan Reinauer2e38cc52015-05-06 11:15:38 -0700778LINT SCRIPTS
Martin Roth057ce5f2016-03-17 12:03:00 -0600779M: Martin Roth <gaumless@gmail.com>
Stefan Reinauer2e38cc52015-05-06 11:15:38 -0700780S: Supported
781F: util/lint/
782
Angel Pons8d6f5872020-06-07 00:25:42 +0200783IFDTOOL
784M: Stefan Reinauer <stefan.reinauer@coreboot.org>
785F: util/ifdtool/
786
Stefan Reinauerbf3dbaf2015-06-12 15:30:59 -0700787INTELTOOL
788M: Stefan Reinauer <stefan.reinauer@coreboot.org>
789F: util/inteltool/
790
Philipp Deppenwiese4cd9a112016-03-23 00:02:40 +0100791INTELMETOOL
Philipp Deppenwiese00eb7d72020-03-28 14:19:44 +0100792M: Christian Walter <christian.walter@9elements.com>
Philipp Deppenwiese4cd9a112016-03-23 00:02:40 +0100793F: util/intelmetool/
794
Maxim Polyakov8f6c8962021-08-07 13:07:44 +0300795INTELP2M
796M: Maxim Polyakov <max.senia.poliak@gmail.com>
797S: Maintained
798F: util/intelp2m/
799
Nicola Corna4f4fc182017-02-23 16:53:45 +0100800ME_CLEANER
801M: Nicola Corna <nicola@corna.info>
802W: https://github.com/corna/me_cleaner
803S: Maintained
804F: util/me_cleaner/
805
Felix Singerf9948a42021-02-01 13:46:50 +0100806LIVEISO
807M: Felix Singer <felixsinger@posteo.net>
808S: Supported
809F: util/liveiso/
810
Angel Pons8d6f5872020-06-07 00:25:42 +0200811################################################################################
812# Miscellaneous
813################################################################################
Stefan Reinauerbf3dbaf2015-06-12 15:30:59 -0700814
Angel Pons8d6f5872020-06-07 00:25:42 +0200815ASPEED AST2050 DRIVER & COMMON CODE
816M: Timothy Pearson <tpearson@raptorengineeringinc.com>
Patrick Georgi65ff63f2015-05-21 18:54:10 +0200817S: Supported
Angel Pons8d6f5872020-06-07 00:25:42 +0200818F: src/drivers/aspeed/common/
819F: src/drivers/aspeed/ast2050/
Patrick Georgi65ff63f2015-05-21 18:54:10 +0200820
Angel Pons8d6f5872020-06-07 00:25:42 +0200821ACPI
Lijian Zhao5bd9b7f2020-12-29 09:12:36 +0800822M: Lance Zhao <lance.zhao@gmail.com>
Tim Wawrzynczak7400b612021-04-20 22:04:22 -0600823M: Tim Wawrzynczak <twawrzynczak@chromium.org>
Lijian Zhao5bd9b7f2020-12-29 09:12:36 +0800824S: Supported
Angel Pons8d6f5872020-06-07 00:25:42 +0200825F: src/acpi/
826F: src/arch/x86/acpi/
827F: util/acpi/
828
829LZ4 COMPRESSION
830M: Julius Werner <jwerner@chromium.org>
831S: Supported
832F: src/commonlib/lz4*
833F: payloads/libpayload/liblz4/
834F: util/cbfstool/lz4/
Stefan Reinauerbf3dbaf2015-06-12 15:30:59 -0700835
836BINARY OBJECTS
837F: 3rdparty/blobs/
838
839VERIFIED BOOT
Julius Werner763db462021-07-30 16:30:14 -0700840M: Julius Werner <jwerner@chromium.org>
841M: Yu-Ping Wu <yupingso@google.com>
842S: Supported
Stefan Reinauerbf3dbaf2015-06-12 15:30:59 -0700843F: 3rdparty/vboot/
Julius Werner763db462021-07-30 16:30:14 -0700844F: src/security/vboot/
Stefan Reinauerbf3dbaf2015-06-12 15:30:59 -0700845F: src/include/tpm.h
846F: src/include/tpm_lite/
847
848RESOURCE ALLOCATOR
849F: src/device/*
850F: src/include/device/
851F: src/include/cpu/cpu.h
852
853OPTION ROM EXECUTION & X86EMU
854F: src/device/oprom/
855
856CBFS
Julius Werner0655f782019-12-11 16:19:48 -0800857M: Julius Werner <jwerner@chromium.org>
858F: src/include/cbfs*
859F: src/commonlib/bsd/include/commonlib/bsd/cbfs*
860F: src/commonlib/bsd/cbfs*
861F: src/lib/cbfs.c
862
863CBFSTOOL
Stefan Reinauerbf3dbaf2015-06-12 15:30:59 -0700864F: util/cbfstool/
865
866CBMEM
867F: src/include/cbmem.h
868F: src/include/cbmem_id.h
869F: util/cbmem/
870
871CONSOLE
872F: src/console/
873F: src/include/console/
874F: src/drivers/uart/
875
Philipp Deppenwiese6507e6f2016-06-22 19:01:47 +0200876TPM SUPPORT
Philipp Deppenwiese00eb7d72020-03-28 14:19:44 +0100877M: Christian Walter <christian.walter@9elements.com>
Philipp Deppenwiese8f6af1c2018-11-23 19:13:54 +0100878S: Supported
Philipp Deppenwiese6507e6f2016-06-22 19:01:47 +0200879F: src/drivers/*/tpm/
Felix Singer3c02ed92020-11-30 06:56:08 +0100880F: src/security/tpm/
Philipp Deppenwiese6507e6f2016-06-22 19:01:47 +0200881
Martin Rothe801fcb2017-05-27 10:54:02 -0600882SUPERIOS & SUPERIOTOOL
883M: Felix Held <felix-coreboot@felixheld.de>
Felix Held6e296b32022-04-06 21:49:24 +0200884S: Odd Fixes
Martin Rothe801fcb2017-05-27 10:54:02 -0600885F: src/superio/
886F: util/superiotool/
887
Patrick Georgidcc0cc22021-09-23 11:49:41 +0200888SPD UTILITIES
889M: Reka Norman <rekanorman@chromium.org>
890S: Maintained
891F: util/spd_tools/
892F: util/spdtool/
893
Julius Wernerc34e41f2017-06-09 14:26:03 -0700894MEMLAYOUT
895M: Julius Werner <jwerner@chromium.org>
896S: Supported
897F: */memlayout.h
898F: *.ld
899
Frans Hendriksf20bf922019-06-13 14:14:56 +0200900ELTAN VENDORCODE
901M: Frans Hendriks <fhendriks@eltan.com>
Frans Hendriks7e7ea2b2021-12-02 10:15:20 +0100902M: Erik van den Bogaert <ebogaert@eltan.com>
Frans Hendriksf20bf922019-06-13 14:14:56 +0200903S: Maintained
Felix Singer3c02ed92020-11-30 06:56:08 +0100904F: src/vendorcode/eltan/
Frans Hendriksf20bf922019-06-13 14:14:56 +0200905
Tim Crawford56dd9f0382021-04-21 15:40:23 -0600906TAS5825M DRIVER
907M: Jeremy Soller <jeremy@system76.com>
908M: Tim Crawford <tcrawford@system76.com>
909S: Maintained
910F: src/drivers/i2c/tas5825m/
911
Patrick Georgi517097f2021-03-02 18:08:14 +0100912TESTS
913M: Jakub Czapiga <jacz@semihalf.com>
914S: Maintained
915F: tests/
Jakub Czapiga6df286e2021-12-15 15:46:35 +0000916F: payloads/libpayload/tests/
Patrick Georgi517097f2021-03-02 18:08:14 +0100917
Stefan Reinauerbf3dbaf2015-06-12 15:30:59 -0700918MISSING: TIMERS / DELAYS
919
920MISSING: TIMESTAMPS
921
Stefan Reinauerbf3dbaf2015-06-12 15:30:59 -0700922MISSING: FMAP
923
924MISSING: GPIO
925
926MISSING: SMP
927
Stefan Reinauerbf3dbaf2015-06-12 15:30:59 -0700928MISSING: DMP / QEMU-X86
929
930MISSING: ELOG
931
Stefan Reinauerbf3dbaf2015-06-12 15:30:59 -0700932MISSING: SPI
933
Angel Pons0b500992020-04-15 16:47:36 +0200934# *** Infrastructure Owners ***
Martin Roth19fdedb2017-06-25 15:44:16 -0600935# This is intended to let people know who they should contact for issues with various infrastructure pieces.
936# Hardware
937# Owners: Stefan, Patrick
Sumeet Pawnikar1638a852017-09-12 22:17:55 +0530938# Backups:
Martin Roth19fdedb2017-06-25 15:44:16 -0600939
940# Web Server
941# Owners: Stefan, Patrick
942# Backups:
943
944# Website
Philipp Deppenwiese00eb7d72020-03-28 14:19:44 +0100945# Owners: Martin
Martin Roth19fdedb2017-06-25 15:44:16 -0600946# Backups: Patrick, Stefan
947
948# Documentation Website
Philipp Deppenwiese00eb7d72020-03-28 14:19:44 +0100949# Owners: Patrick
Martin Roth19fdedb2017-06-25 15:44:16 -0600950# Backups:
951
Patrick Georgi1d348942019-07-17 20:40:50 +0200952CODE OF CONDUCT
953M: Stefan Reinauer <stefan.reinauer@coreboot.org>
Patrick Georgi1d348942019-07-17 20:40:50 +0200954M: Ronald Minnich <rminnich@coreboot.org>
955M: Martin Roth <martin@coreboot.org>
956S: Maintained
957F: Documentation/community/code_of_conduct.md
958
Martin Roth19fdedb2017-06-25 15:44:16 -0600959# Wiki
960# Owners: Stefan, Patrick
961# Backups:
962
963# Gerrit
964# Owners: Stefan, Patrick
965# Backups: Martin
966
967# Jenkins
968# Owners: Patrick, Martin
969# Backups:
970
971# Bug Tracker
972# Owners: Lynxis,
973# Backups: Martin,
974
975# Mailing List
976# Owners: Stefan, Patrick
977# Backups: Martin,
978
979# Software Freedom Conservancy
980# Main contact: Martin
981# “Official” contact: Stefan