blob: 69a2fc20efbb732c5663a3692ba016c8948277ee [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
Lean Sheng Tana29452a2022-06-03 10:06:04 +0200420PRODRIVE ATLAS MAINBOARD
421M: Angel Pons <th3fanbus@gmail.com>
422M: Christian Walter <christian.walter@9elements.com>
423M: Lean Sheng Tan <sheng.tan@9elements.com>
424S: Maintained
425F: src/mainboard/prodrive/atlas/
426
Christian Walter02b39372020-06-17 20:17:59 +0200427PRODRIVE HERMES MAINBOARD
428M: Christian Walter <christian.walter@9elements.com>
429M: Patrick Rudolph <patrick.rudolph@9elements.com>
430S: Maintained
Felix Singer3c02ed92020-11-30 06:56:08 +0100431F: src/mainboard/prodrive/hermes/
Christian Walter02b39372020-06-17 20:17:59 +0200432
433
434
Angel Pons8d6f5872020-06-07 00:25:42 +0200435PURISM MAINBOARDS
436M: Matt DeVillier <matt.devillier@puri.sm>
Julius Werner848f5db2017-09-11 13:12:48 -0700437S: Supported
Felix Singer3c02ed92020-11-30 06:56:08 +0100438F: src/mainboard/purism/
Angel Pons8d6f5872020-06-07 00:25:42 +0200439
440
441
442SAMSUNG CHROMEOS MAINBOARDS
443M: Matt DeVillier <MrChromebox@gmail.com>
444S: Maintained
445F: src/mainboard/samsung/lumpy/
446F: src/mainboard/samsung/stumpy/
447
448
449
Felix Singer32608cf2020-11-22 00:38:16 +0000450SIEMENS CHILI MAINBAORD
451M: Felix Singer <felixsinger@posteo.net>
452M: Nico Huber <nico.h@gmx.de>
453S: Supported
454F: src/mainboard/siemens/chili/
455
Angel Pons8d6f5872020-06-07 00:25:42 +0200456SIEMENS MC_xxxx MAINBOARDS
457M: Werner Zeh <werner.zeh@siemens.com>
458S: Maintained
459F: src/mainboard/siemens/mc_apl1/
Werner Zeh9f15a6c2022-04-22 10:23:44 +0200460F: src/mainboard/siemens/mc_ehl/
Angel Pons8d6f5872020-06-07 00:25:42 +0200461
462
463
Sean Rhodes17441a32021-07-05 16:03:15 +0100464STAR LABS MAINBOARDS
465M: Sean Rhodes <sean@starlabs.systems>
466S: Maintained
467F: src/mainboard/starlabs/
468
469
470
Jeremy Soller625af2b2020-07-21 08:23:39 -0600471SYSTEM76 MAINBOARDS
472M: Jeremy Soller <jeremy@system76.com>
Tim Crawford5310d522021-04-21 15:30:29 -0600473M: Tim Crawford <tcrawford@system76.com>
Jeremy Soller625af2b2020-07-21 08:23:39 -0600474S: Maintained
475F: src/mainboard/system76/
476
477
478
Angel Pons8d6f5872020-06-07 00:25:42 +0200479SUPERMICRO X10SLM+-F MAINBOARD
480M: Tristan Corrick <tristan@corrick.kiwi>
481S: Maintained
482F: src/mainboard/supermicro/x10slm-f/
483
484SUPERMICRO X11-LGA1151-SERIES
485M: Michael Niewöhner <foss@mniewoehner.de>
486S: Maintained
Michael Niewöhner5fd29312020-11-13 01:13:46 +0100487F: src/mainboard/supermicro/x11-lga1151-series/
Angel Pons8d6f5872020-06-07 00:25:42 +0200488
489################################################################################
490# Architectures
491################################################################################
Julius Werner848f5db2017-09-11 13:12:48 -0700492
Stefan Reinauerbf3dbaf2015-06-12 15:30:59 -0700493ARM ARCHITECTURE
Julius Wernerc34e41f2017-06-09 14:26:03 -0700494M: Julius Werner <jwerner@chromium.org>
495S: Supported
Stefan Reinauerbf3dbaf2015-06-12 15:30:59 -0700496F: src/arch/arm/
Julius Wernerc34e41f2017-06-09 14:26:03 -0700497F: src/arch/arm64/
Julius Wernerc34e41f2017-06-09 14:26:03 -0700498F: src/soc/nvidia/
499F: src/soc/rockchip/
500F: util/nvidia/
501F: util/rockchip/
502
Angel Pons8d6f5872020-06-07 00:25:42 +0200503PPC64 ARCHITECTURE
504M: Ronald Minnich <rminnich@gmail.com>
505M: Timothy Pearson <tpearson@raptorengineeringinc.com>
506S: Maintained
507F: src/arch/ppc64/
508F: src/cpu/qemu-power8/
509F: src/mainboard/emulation/qemu-power8/
510
511RISC-V ARCHITECTURE
512M: Ronald Minnich <rminnich@gmail.com>
513R: Philipp Hug <philipp@hug.cx>
514S: Maintained
515F: src/arch/riscv/
516F: src/soc/sifive/
517F: src/soc/ucb/
518F: src/mainboard/emulation/*-riscv/
519F: src/mainboard/sifive/
520F: util/riscv/
Stefan Reinauerbf3dbaf2015-06-12 15:30:59 -0700521
Stefan Reinauerbf3dbaf2015-06-12 15:30:59 -0700522X86 ARCHITECTURE
523F: src/arch/x86/
524F: src/cpu/x86/
525F: src/drivers/pc80/
526F: src/include/pc80/
527F: src/include/cpu/x86/
528
Angel Pons8d6f5872020-06-07 00:25:42 +0200529################################################################################
530# Embedded Controllers
531################################################################################
532
Tim Wawrzynczak7400b612021-04-20 22:04:22 -0600533CHROME EC
534M: Tim Wawrzynczak <twawrzynczak@chromium.org>
535S: Maintained
536F: src/ec/google/chromeec/
537
Angel Pons8d6f5872020-06-07 00:25:42 +0200538LENOVO EC
539M: Alexander Couzens <lynxis@fe80.eu>
540S: Maintained
541F: src/ec/lenovo/
542
Sean Rhodes17441a32021-07-05 16:03:15 +0100543STARLABS EC
544M: Sean Rhodes <sean@starlabs.systems>
545S: Maintained
546F: src/ec/starlabs/
547
Jeremy Soller625af2b2020-07-21 08:23:39 -0600548SYSTEM76 EC
549M: Jeremy Soller <jeremy@system76.com>
Tim Crawford5310d522021-04-21 15:30:29 -0600550M: Tim Crawford <tcrawford@system76.com>
Jeremy Soller625af2b2020-07-21 08:23:39 -0600551S: Maintained
552F: src/ec/system76/
553
Angel Pons8d6f5872020-06-07 00:25:42 +0200554################################################################################
555# Northbridges
556################################################################################
557
558INTEL HASWELL NORTHBRIDGE
559M: Angel Pons <th3fanbus@gmail.com>
560S: Maintained
561F: src/northbridge/intel/haswell/
562
563INTEL PINEVIEW CHIPSET
564M: Damien Zammit <damien@zamaudio.com>
565M: Angel Pons <th3fanbus@gmail.com>
566S: Odd Fixes
567F: src/northbridge/intel/pineview/
568
569INTEL SANDYBRIDGE NORTHBRIDGE
570M: Angel Pons <th3fanbus@gmail.com>
571S: Maintained
572F: src/northbridge/intel/sandybridge/
573
574INTEL X4X CHIPSET
575M: Damien Zammit <damien@zamaudio.com>
576M: Angel Pons <th3fanbus@gmail.com>
577S: Odd Fixes
578F: src/northbridge/intel/x4x/
579
580################################################################################
581# Platforms
582################################################################################
583
584AMD SUPPORT
585F: src/vendorcode/amd/
586F: src/cpu/amd/
587F: src/northbridge/amd/
588F: src/southbridge/amd/
589F: src/include/cpu/amd/
590
Stefan Reinauerbf3dbaf2015-06-12 15:30:59 -0700591INTEL SUPPORT
Martin Roth954338d2017-03-05 11:20:18 -0700592S: Maintained
Stefan Reinauerbf3dbaf2015-06-12 15:30:59 -0700593F: src/vendorcode/intel/
594F: src/cpu/intel/
595F: src/northbridge/intel/
596F: src/southbridge/intel/
597F: src/soc/intel/
598F: src/drivers/intel/
599F: src/include/cpu/intel/
600
Angel Pons8d6f5872020-06-07 00:25:42 +0200601INTEL FSP 1.1
602M: Lee Leahy <leroy.p.leahy@intel.com>
603M: Huang Jin <huang.jin@intel.com>
604M: York Yang <york.yang@intel.com>
605S: Supported
606F: src/drivers/intel/fsp1_1/
607
608INTEL FSP 2.0
609M: Andrey Petrov <andrey.petrov@gmail.com>
610S: Maintained
611F: src/drivers/intel/fsp2_0/
612
613################################################################################
614# Systems on a Chip
615################################################################################
616
Felix Heldfef413e2020-12-02 15:57:24 +0100617AMD Cezanne
618M: Marshall Dawson <marshalldawson3rd@gmail.com>
619M: Felix Held <felix-coreboot@felixheld.de>
620M: Jason Glenesk <jason.glenesk@gmail.com>
Raul E Rangelc81509c2021-01-25 10:24:14 -0700621M: Raul E Rangel <rrangel@chromium.org>
Fred Reitberger636a6de2022-02-17 13:27:35 -0500622M: Fred Reitberger <reitbergerfred@gmail.com>
Felix Heldfef413e2020-12-02 15:57:24 +0100623S: Maintained
624F: src/soc/amd/cezanne/
Felix Heldfe84dbb2021-08-06 16:25:35 +0200625F: src/vendorcode/amd/fsp/cezanne/
Felix Heldfef413e2020-12-02 15:57:24 +0100626
627AMD common SoC code
628M: Marshall Dawson <marshalldawson3rd@gmail.com>
629M: Felix Held <felix-coreboot@felixheld.de>
630M: Jason Glenesk <jason.glenesk@gmail.com>
Raul E Rangelc81509c2021-01-25 10:24:14 -0700631M: Raul E Rangel <rrangel@chromium.org>
Fred Reitberger636a6de2022-02-17 13:27:35 -0500632M: Fred Reitberger <reitbergerfred@gmail.com>
Felix Heldfef413e2020-12-02 15:57:24 +0100633S: Maintained
634F: src/soc/amd/common/
635
Felix Held93231b42020-11-13 15:56:28 +0100636AMD Picasso
637M: Marshall Dawson <marshalldawson3rd@gmail.com>
638M: Felix Held <felix-coreboot@felixheld.de>
639M: Jason Glenesk <jason.glenesk@gmail.com>
Raul E Rangelc81509c2021-01-25 10:24:14 -0700640M: Raul E Rangel <rrangel@chromium.org>
Fred Reitberger636a6de2022-02-17 13:27:35 -0500641M: Fred Reitberger <reitbergerfred@gmail.com>
Felix Held93231b42020-11-13 15:56:28 +0100642S: Maintained
Felix Singer3c02ed92020-11-30 06:56:08 +0100643F: src/soc/amd/picasso/
644F: src/vendorcode/amd/fsp/picasso/
Felix Held93231b42020-11-13 15:56:28 +0100645
Felix Held2e88d062022-01-25 04:39:39 +0100646AMD Sabrina
647M: Marshall Dawson <marshalldawson3rd@gmail.com>
648M: Felix Held <felix-coreboot@felixheld.de>
649M: Jason Glenesk <jason.glenesk@gmail.com>
650M: Raul E Rangel <rrangel@chromium.org>
Fred Reitberger636a6de2022-02-17 13:27:35 -0500651M: Fred Reitberger <reitbergerfred@gmail.com>
Felix Held2e88d062022-01-25 04:39:39 +0100652S: Maintained
653F: src/soc/amd/sabrina/
654F: src/vendorcode/amd/fsp/sabrina/
655
Felix Held4080e082021-08-06 16:30:02 +0200656AMD Stoneyridge
657M: Marshall Dawson <marshalldawson3rd@gmail.com>
658M: Felix Held <felix-coreboot@felixheld.de>
659S: Odd Fixes
660F: src/soc/amd/stoneyridge/
661
Tim Wawrzynczak7400b612021-04-20 22:04:22 -0600662INTEL ALDERLAKE SOC
663M: Tim Wawrzynczak <twawrzynczak@chromium.org>
664S: Maintained
665F: src/soc/intel/alderlake/
666
Angel Pons8d6f5872020-06-07 00:25:42 +0200667INTEL APOLLOLAKE_SOC
668M: Andrey Petrov <andrey.petrov@gmail.com>
669S: Maintained
670F: src/soc/intel/apollolake/
671
672INTEL BRASWELL SOC
673M: Piotr Król <piotr.krol@3mdeb.com>
674M: Michał Żygowski <michal.zygowski@3mdeb.com>
675M: Frans Hendriks <fhendriks@eltan.com>
676S: Maintained
Felix Singer3c02ed92020-11-30 06:56:08 +0100677F: /src/soc/intel/braswell/
678F: /src/vendorcode/intel/fsp/fsp1_1/braswell/
Angel Pons8d6f5872020-06-07 00:25:42 +0200679
Mariusz Szafranski37afe1c2022-01-19 15:25:29 +0000680INTEL DENVERTON-NS SOC
681M: Jeff Daly <jeffd@silicom-usa.com>
682M: Vanessa Eusebio <vanessa.f.eusebio@intel.com>
683M: Suresh Bellampalli <suresh.bellampalli@intel.com>
684M: Mariusz Szafranski <mariuszx.szafranski@intel.com>
685S: Maintained
686F: src/soc/intel/denverton_ns/
687
Lean Sheng Tan37a407f2022-06-03 10:12:28 +0200688INTEL ELKHARTLAKE SOC
689M: Lean Sheng Tan <sheng.tan@9elements.com>
690M: Werner Zeh <werner.zeh@siemens.com>
691S: Maintained
692F: src/soc/intel/elkhartlake/
693
Tim Wawrzynczak7400b612021-04-20 22:04:22 -0600694INTEL TIGERLAKE SOC
695M: Tim Wawrzynczak <twawrzynczak@chromium.org>
696S: Maintained
697F: src/soc/intel/tigerlake/
698
Jonathan Zhange9b0b082020-06-30 13:28:52 -0700699INTEL Xeon Sacalable Processor Family
700M: Jonathan Zhang <jonzhang@fb.com>
701M: Reddy Chagam <anjaneya.chagam@intel.com>
702M: Johnny Lin <Johnny_Lin@wiwynn.com>
Jonathan Zhang4a4806f2021-09-16 09:06:47 -0700703M: Tim Chu <Tim.Chu@quantatw.com>
704M: Arthur Heymans <arthur@aheymans.xyz>
705M: Christian Walter <christian.walter@9elements.com>
Jonathan Zhange9b0b082020-06-30 13:28:52 -0700706S: Supported
Felix Singerd70d1d12020-11-30 06:56:08 +0100707F: src/soc/intel/xeon_sp/
Felix Singer3c02ed92020-11-30 06:56:08 +0100708F: src/vendorcode/intel/fsp/fsp2_0/skylake_sp/
709F: src/vendorcode/intel/fsp/fsp2_0/copperlake_sp/
Jonathan Zhange9b0b082020-06-30 13:28:52 -0700710
Julius Wernerb1263802020-08-24 14:24:21 -0700711MEDIATEK SOCS
712M: Hung-Te Lin <hungte@chromium.org>
713S: Supported
Felix Singer3c02ed92020-11-30 06:56:08 +0100714F: src/soc/mediatek/
Julius Wernerb1263802020-08-24 14:24:21 -0700715
Xi Chen022b1b92021-02-05 11:45:12 +0800716MEDIATEK MT8192
717M: Xi Chen <xixi.chen@mediatek.com>
718S: Maintained
719F: src/soc/mediatek/mt8192/
720F: src/vendorcode/mediatek/mt8192/
721
Angel Pons8d6f5872020-06-07 00:25:42 +0200722ORPHANED ARM SOCS
723S: Orphaned
724F: src/cpu/armltd/
Sam Lewisad7b2e22020-08-03 20:18:29 +1000725F: src/soc/ti/
Angel Pons8d6f5872020-06-07 00:25:42 +0200726F: src/soc/qualcomm/
727F: src/soc/samsung/
728F: util/exynos/
729F: util/ipqheader/
730
731################################################################################
732# Payloads
733################################################################################
734
735NVRAM
736F: util/nvramtool/
737F: payloads/nvramcui/
738
739LIBPAYLOAD
740F: payloads/libpayload/
741
742COREINFO PAYLOAD
743F: payloads/coreinfo/
744
745EXTERNAL PAYLOADS INTEGRATION
746M: Stefan Reinauer <stefan.reinauer@coreboot.org>
747M: Martin Roth <gaumless@gmail.com>
Felix Singer3c02ed92020-11-30 06:56:08 +0100748F: payloads/external/
Angel Pons8d6f5872020-06-07 00:25:42 +0200749
750LINUXBOOT PAYLOAD INTEGRATION
751M: Christian Walter <christian.walter@9elements.com>
752M: Marcello Sylvester Bauer <info@marcellobauer.com>
753S: Supported
Felix Singer3c02ed92020-11-30 06:56:08 +0100754F: payloads/external/LinuxBoot/
Angel Pons8d6f5872020-06-07 00:25:42 +0200755
756################################################################################
757# Utilities
758################################################################################
759
760ABUILD
Angel Pons8d6f5872020-06-07 00:25:42 +0200761M: Martin Roth <gaumless@gmail.com>
762S: Supported
763F: util/abuild/
764
765BOARD STATUS
766F: util/board_status/
767
768BUILD SYSTEM
Angel Pons8d6f5872020-06-07 00:25:42 +0200769M: Martin Roth <gaumless@gmail.com>
770S: Supported
771F: Makefile
772F: *.inc
773F: src/include/kconfig.h
774F: util/kconfig/
775F: util/sconfig/
776F: util/xcompile/
777F: util/genbuild_h/
778
779TOOLCHAIN
780F: util/crossgcc/
781
782DOCKER
783M: Martin Roth <gaumless@gmail.com>
784S: Supported
785F: util/docker/
786
787GIT
788F: .git*
789F: /util/gitconfig
Stefan Reinauerbf3dbaf2015-06-12 15:30:59 -0700790
Stefan Reinauer2e38cc52015-05-06 11:15:38 -0700791LINT SCRIPTS
Martin Roth057ce5f2016-03-17 12:03:00 -0600792M: Martin Roth <gaumless@gmail.com>
Stefan Reinauer2e38cc52015-05-06 11:15:38 -0700793S: Supported
794F: util/lint/
795
Angel Pons8d6f5872020-06-07 00:25:42 +0200796IFDTOOL
797M: Stefan Reinauer <stefan.reinauer@coreboot.org>
798F: util/ifdtool/
799
Stefan Reinauerbf3dbaf2015-06-12 15:30:59 -0700800INTELTOOL
801M: Stefan Reinauer <stefan.reinauer@coreboot.org>
802F: util/inteltool/
803
Philipp Deppenwiese4cd9a112016-03-23 00:02:40 +0100804INTELMETOOL
Philipp Deppenwiese00eb7d72020-03-28 14:19:44 +0100805M: Christian Walter <christian.walter@9elements.com>
Philipp Deppenwiese4cd9a112016-03-23 00:02:40 +0100806F: util/intelmetool/
807
Maxim Polyakov8f6c8962021-08-07 13:07:44 +0300808INTELP2M
809M: Maxim Polyakov <max.senia.poliak@gmail.com>
810S: Maintained
811F: util/intelp2m/
812
Nicola Corna4f4fc182017-02-23 16:53:45 +0100813ME_CLEANER
814M: Nicola Corna <nicola@corna.info>
815W: https://github.com/corna/me_cleaner
816S: Maintained
817F: util/me_cleaner/
818
Felix Singerf9948a42021-02-01 13:46:50 +0100819LIVEISO
820M: Felix Singer <felixsinger@posteo.net>
821S: Supported
822F: util/liveiso/
823
Angel Pons8d6f5872020-06-07 00:25:42 +0200824################################################################################
825# Miscellaneous
826################################################################################
Stefan Reinauerbf3dbaf2015-06-12 15:30:59 -0700827
Angel Pons8d6f5872020-06-07 00:25:42 +0200828ASPEED AST2050 DRIVER & COMMON CODE
829M: Timothy Pearson <tpearson@raptorengineeringinc.com>
Patrick Georgi65ff63f2015-05-21 18:54:10 +0200830S: Supported
Angel Pons8d6f5872020-06-07 00:25:42 +0200831F: src/drivers/aspeed/common/
832F: src/drivers/aspeed/ast2050/
Patrick Georgi65ff63f2015-05-21 18:54:10 +0200833
Angel Pons8d6f5872020-06-07 00:25:42 +0200834ACPI
Lijian Zhao5bd9b7f2020-12-29 09:12:36 +0800835M: Lance Zhao <lance.zhao@gmail.com>
Tim Wawrzynczak7400b612021-04-20 22:04:22 -0600836M: Tim Wawrzynczak <twawrzynczak@chromium.org>
Lijian Zhao5bd9b7f2020-12-29 09:12:36 +0800837S: Supported
Angel Pons8d6f5872020-06-07 00:25:42 +0200838F: src/acpi/
839F: src/arch/x86/acpi/
840F: util/acpi/
841
842LZ4 COMPRESSION
843M: Julius Werner <jwerner@chromium.org>
844S: Supported
845F: src/commonlib/lz4*
846F: payloads/libpayload/liblz4/
847F: util/cbfstool/lz4/
Stefan Reinauerbf3dbaf2015-06-12 15:30:59 -0700848
849BINARY OBJECTS
850F: 3rdparty/blobs/
851
852VERIFIED BOOT
Julius Werner763db462021-07-30 16:30:14 -0700853M: Julius Werner <jwerner@chromium.org>
854M: Yu-Ping Wu <yupingso@google.com>
855S: Supported
Stefan Reinauerbf3dbaf2015-06-12 15:30:59 -0700856F: 3rdparty/vboot/
Julius Werner763db462021-07-30 16:30:14 -0700857F: src/security/vboot/
Stefan Reinauerbf3dbaf2015-06-12 15:30:59 -0700858F: src/include/tpm.h
859F: src/include/tpm_lite/
860
861RESOURCE ALLOCATOR
862F: src/device/*
863F: src/include/device/
864F: src/include/cpu/cpu.h
865
866OPTION ROM EXECUTION & X86EMU
867F: src/device/oprom/
868
869CBFS
Julius Werner0655f782019-12-11 16:19:48 -0800870M: Julius Werner <jwerner@chromium.org>
871F: src/include/cbfs*
872F: src/commonlib/bsd/include/commonlib/bsd/cbfs*
873F: src/commonlib/bsd/cbfs*
874F: src/lib/cbfs.c
875
876CBFSTOOL
Stefan Reinauerbf3dbaf2015-06-12 15:30:59 -0700877F: util/cbfstool/
878
879CBMEM
880F: src/include/cbmem.h
881F: src/include/cbmem_id.h
882F: util/cbmem/
883
884CONSOLE
885F: src/console/
886F: src/include/console/
887F: src/drivers/uart/
888
Philipp Deppenwiese6507e6f2016-06-22 19:01:47 +0200889TPM SUPPORT
Philipp Deppenwiese00eb7d72020-03-28 14:19:44 +0100890M: Christian Walter <christian.walter@9elements.com>
Philipp Deppenwiese8f6af1c2018-11-23 19:13:54 +0100891S: Supported
Philipp Deppenwiese6507e6f2016-06-22 19:01:47 +0200892F: src/drivers/*/tpm/
Felix Singer3c02ed92020-11-30 06:56:08 +0100893F: src/security/tpm/
Philipp Deppenwiese6507e6f2016-06-22 19:01:47 +0200894
Martin Rothe801fcb2017-05-27 10:54:02 -0600895SUPERIOS & SUPERIOTOOL
896M: Felix Held <felix-coreboot@felixheld.de>
Felix Held6e296b32022-04-06 21:49:24 +0200897S: Odd Fixes
Martin Rothe801fcb2017-05-27 10:54:02 -0600898F: src/superio/
899F: util/superiotool/
900
Patrick Georgidcc0cc22021-09-23 11:49:41 +0200901SPD UTILITIES
902M: Reka Norman <rekanorman@chromium.org>
903S: Maintained
904F: util/spd_tools/
905F: util/spdtool/
906
Julius Wernerc34e41f2017-06-09 14:26:03 -0700907MEMLAYOUT
908M: Julius Werner <jwerner@chromium.org>
909S: Supported
910F: */memlayout.h
911F: *.ld
912
Frans Hendriksf20bf922019-06-13 14:14:56 +0200913ELTAN VENDORCODE
914M: Frans Hendriks <fhendriks@eltan.com>
Frans Hendriks7e7ea2b2021-12-02 10:15:20 +0100915M: Erik van den Bogaert <ebogaert@eltan.com>
Frans Hendriksf20bf922019-06-13 14:14:56 +0200916S: Maintained
Felix Singer3c02ed92020-11-30 06:56:08 +0100917F: src/vendorcode/eltan/
Frans Hendriksf20bf922019-06-13 14:14:56 +0200918
Tim Crawford56dd9f0382021-04-21 15:40:23 -0600919TAS5825M DRIVER
920M: Jeremy Soller <jeremy@system76.com>
921M: Tim Crawford <tcrawford@system76.com>
922S: Maintained
923F: src/drivers/i2c/tas5825m/
924
Patrick Georgi517097f2021-03-02 18:08:14 +0100925TESTS
926M: Jakub Czapiga <jacz@semihalf.com>
927S: Maintained
928F: tests/
Jakub Czapiga6df286e2021-12-15 15:46:35 +0000929F: payloads/libpayload/tests/
Patrick Georgi517097f2021-03-02 18:08:14 +0100930
Stefan Reinauerbf3dbaf2015-06-12 15:30:59 -0700931MISSING: TIMERS / DELAYS
932
933MISSING: TIMESTAMPS
934
Stefan Reinauerbf3dbaf2015-06-12 15:30:59 -0700935MISSING: FMAP
936
937MISSING: GPIO
938
939MISSING: SMP
940
Stefan Reinauerbf3dbaf2015-06-12 15:30:59 -0700941MISSING: DMP / QEMU-X86
942
943MISSING: ELOG
944
Stefan Reinauerbf3dbaf2015-06-12 15:30:59 -0700945MISSING: SPI
946
Angel Pons0b500992020-04-15 16:47:36 +0200947# *** Infrastructure Owners ***
Martin Roth19fdedb2017-06-25 15:44:16 -0600948# This is intended to let people know who they should contact for issues with various infrastructure pieces.
949# Hardware
950# Owners: Stefan, Patrick
Sumeet Pawnikar1638a852017-09-12 22:17:55 +0530951# Backups:
Martin Roth19fdedb2017-06-25 15:44:16 -0600952
953# Web Server
954# Owners: Stefan, Patrick
955# Backups:
956
957# Website
Philipp Deppenwiese00eb7d72020-03-28 14:19:44 +0100958# Owners: Martin
Martin Roth19fdedb2017-06-25 15:44:16 -0600959# Backups: Patrick, Stefan
960
961# Documentation Website
Philipp Deppenwiese00eb7d72020-03-28 14:19:44 +0100962# Owners: Patrick
Martin Roth19fdedb2017-06-25 15:44:16 -0600963# Backups:
964
Patrick Georgi1d348942019-07-17 20:40:50 +0200965CODE OF CONDUCT
966M: Stefan Reinauer <stefan.reinauer@coreboot.org>
Patrick Georgi1d348942019-07-17 20:40:50 +0200967M: Ronald Minnich <rminnich@coreboot.org>
968M: Martin Roth <martin@coreboot.org>
969S: Maintained
970F: Documentation/community/code_of_conduct.md
971
Martin Roth19fdedb2017-06-25 15:44:16 -0600972# Wiki
973# Owners: Stefan, Patrick
974# Backups:
975
976# Gerrit
977# Owners: Stefan, Patrick
978# Backups: Martin
979
980# Jenkins
981# Owners: Patrick, Martin
982# Backups:
983
984# Bug Tracker
985# Owners: Lynxis,
986# Backups: Martin,
987
988# Mailing List
989# Owners: Stefan, Patrick
990# Backups: Martin,
991
992# Software Freedom Conservancy
993# Main contact: Martin
994# “Official” contact: Stefan