blob: a8d279c739dfa9e731f1f07fc231e3eb47ade427 [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
301INTEL STRAGO MAINBOARD
302M: Hannah Williams <hannah.williams@intel.com>
303S: Supported
304F: /src/mainboard/intel/strago/
305
306
307
Felix Singer32608cf2020-11-22 00:38:16 +0000308KONTRON BSL6 MAINBOARD
309M: Felix Singer <felixsinger@posteo.net>
310M: Nico Huber <nico.h@gmx.de>
311S: Supported
312F: src/mainboard/kontron/bsl6/
313
Felix Singer5a41b0d2020-11-23 20:20:38 +0000314KONTRON MAL10 MAINBOARD
315M: Maxim Polyakov <max.senia.poliak@gmail.com>
316M: Nico Huber <nico.h@gmx.de>
317M: Felix Singer <felixsinger@posteo.net>
318S: Supported
319F: src/mainboard/kontron/mal10/
320
Felix Singer32608cf2020-11-22 00:38:16 +0000321
322
Angel Pons8d6f5872020-06-07 00:25:42 +0200323LENOVO MAINBOARDS
324M: Alexander Couzens <lynxis@fe80.eu>
325M: Patrick Rudolph <siro@das-labor.org>
326S: Maintained
327F: src/mainboard/lenovo/
328
329LENOVO G505S MAINBOARD
330M: Mike Banon <mikebdp2@gmail.com>
331S: Maintained
332F: src/mainboard/lenovo/g505s/
333
Stefan Ott98d63852021-04-22 01:28:56 +0200334LENOVO X200 MAINBOARD
335R: Stefan Ott <coreboot@desire.ch>
336S: Maintained
337F: src/mainboard/lenovo/x200/
338
339LENOVO X201 MAINBOARD
340R: Stefan Ott <coreboot@desire.ch>
341S: Maintained
342F: src/mainboard/lenovo/x201/
Angel Pons8d6f5872020-06-07 00:25:42 +0200343
344
345LIBRETREND LT1000 MAINBOARD
346M: Piotr Król <piotr.krol@3mdeb.com>
347M: Michał Żygowski <michal.zygowski@3mdeb.com>
348S: Maintained
Felix Singer3c02ed92020-11-30 06:56:08 +0100349F: src/mainboard/libretrend/lt1000/
Angel Pons8d6f5872020-06-07 00:25:42 +0200350
351
Angel Pons8602e662021-04-21 23:29:03 +0200352
353MSI H81M-P33 MAINBOARD
354M: Angel Pons <th3fanbus@gmail.com>
355S: Maintained
356F: src/mainboard/msi/h81m-p33/
357
358
359
Jonathan Zhangdd4f6432020-06-30 11:39:09 -0700360OCP DELTALAKE MAINBOARD
Jonathan Zhang4a4806f2021-09-16 09:06:47 -0700361M: Arthur Heymans <arthur@aheymans.xyz>
362M: Christian Walter <christian.walter@9elements.com>
Jonathan Zhangdd4f6432020-06-30 11:39:09 -0700363M: Johnny Lin <Johnny_Lin@wiwynn.com>
Jonathan Zhang4a4806f2021-09-16 09:06:47 -0700364M: Jonathan Zhang <jonzhang@fb.com>
365M: Tim Chu <Tim.Chu@quantatw.com>
Jonathan Zhangdd4f6432020-06-30 11:39:09 -0700366S: Supported
Felix Singer3c02ed92020-11-30 06:56:08 +0100367F: src/mainboard/ocp/deltalake/
Angel Pons8d6f5872020-06-07 00:25:42 +0200368
Jonathan Zhanged849ed2020-05-01 11:23:46 -0700369OCP TIOGAPASS MAINBOARD
370M: Jonathan Zhang <jonzhang@fb.com>
371M: Reddy Chagam <anjaneya.chagam@intel.com>
372M: Johnny Lin <Johnny_Lin@wiwynn.com>
373M: Morgan Jang <Morgan_Jang@wiwynn.com>
374M: Ryback Hung <<Ryback.Hung@quantatw.com>
375M: Bryant Ou <Bryant.Ou@quantatw.com>
376S: Maintained
Felix Singer3c02ed92020-11-30 06:56:08 +0100377F: src/mainboard/ocp/tiogapass/
Jonathan Zhanged849ed2020-05-01 11:23:46 -0700378
Angel Pons8d6f5872020-06-07 00:25:42 +0200379
380
381OPENCELLULAR MAINBOARDS
382M: Christian Walter <christian.walter@9elements.com>
383M: Patrick Rudolph <patrick.rudolph@9elements.com>
384S: Supported
385F: src/mainboard/opencellular/elgon/
386
387
388
389PC ENGINES ALL MAINBOARDS
390M: Piotr Król <piotr.krol@3mdeb.com>
391M: Michał Żygowski <michal.zygowski@3mdeb.com>
392S: Supported
393F: src/mainboard/pcengines/
394
395
396
Frans Hendriksa78146c2019-07-19 10:30:20 +0200397PORTWELL PQ-M107 MAINBOARD
398M: Frans Hendriks <fhendriks@eltan.com>
Frans Hendriks7e7ea2b2021-12-02 10:15:20 +0100399M: Erik van den Bogaert <ebogaert@eltan.com>
Frans Hendriksa78146c2019-07-19 10:30:20 +0200400S: Maintained
401F: src/mainboard/portwell/m107/
402
Martin Roth2a3434752016-03-05 18:31:29 -0700403
Stefan Reinauerbf3dbaf2015-06-12 15:30:59 -0700404
Angel Pons8d6f5872020-06-07 00:25:42 +0200405PROTECTLI ALL MAINBOARDS
406M: Piotr Król <piotr.krol@3mdeb.com>
407M: Michał Żygowski <michal.zygowski@3mdeb.com>
408S: Maintained
409F: src/mainboard/protectli/
Stefan Reinauerbf3dbaf2015-06-12 15:30:59 -0700410
Angel Pons8d6f5872020-06-07 00:25:42 +0200411
412
Christian Walter02b39372020-06-17 20:17:59 +0200413PRODRIVE HERMES MAINBOARD
414M: Christian Walter <christian.walter@9elements.com>
415M: Patrick Rudolph <patrick.rudolph@9elements.com>
416S: Maintained
Felix Singer3c02ed92020-11-30 06:56:08 +0100417F: src/mainboard/prodrive/hermes/
Christian Walter02b39372020-06-17 20:17:59 +0200418
419
420
Angel Pons8d6f5872020-06-07 00:25:42 +0200421PURISM MAINBOARDS
422M: Matt DeVillier <matt.devillier@puri.sm>
Julius Werner848f5db2017-09-11 13:12:48 -0700423S: Supported
Felix Singer3c02ed92020-11-30 06:56:08 +0100424F: src/mainboard/purism/
Angel Pons8d6f5872020-06-07 00:25:42 +0200425
426
427
428SAMSUNG CHROMEOS MAINBOARDS
429M: Matt DeVillier <MrChromebox@gmail.com>
430S: Maintained
431F: src/mainboard/samsung/lumpy/
432F: src/mainboard/samsung/stumpy/
433
434
435
Felix Singer32608cf2020-11-22 00:38:16 +0000436SIEMENS CHILI MAINBAORD
437M: Felix Singer <felixsinger@posteo.net>
438M: Nico Huber <nico.h@gmx.de>
439S: Supported
440F: src/mainboard/siemens/chili/
441
Angel Pons8d6f5872020-06-07 00:25:42 +0200442SIEMENS MC_xxxx MAINBOARDS
443M: Werner Zeh <werner.zeh@siemens.com>
444S: Maintained
445F: src/mainboard/siemens/mc_apl1/
446
447
448
Sean Rhodes17441a32021-07-05 16:03:15 +0100449STAR LABS MAINBOARDS
450M: Sean Rhodes <sean@starlabs.systems>
451S: Maintained
452F: src/mainboard/starlabs/
453
454
455
Jeremy Soller625af2b2020-07-21 08:23:39 -0600456SYSTEM76 MAINBOARDS
457M: Jeremy Soller <jeremy@system76.com>
Tim Crawford5310d522021-04-21 15:30:29 -0600458M: Tim Crawford <tcrawford@system76.com>
Jeremy Soller625af2b2020-07-21 08:23:39 -0600459S: Maintained
460F: src/mainboard/system76/
461
462
463
Angel Pons8d6f5872020-06-07 00:25:42 +0200464SUPERMICRO X10SLM+-F MAINBOARD
465M: Tristan Corrick <tristan@corrick.kiwi>
466S: Maintained
467F: src/mainboard/supermicro/x10slm-f/
468
469SUPERMICRO X11-LGA1151-SERIES
470M: Michael Niewöhner <foss@mniewoehner.de>
471S: Maintained
Michael Niewöhner5fd29312020-11-13 01:13:46 +0100472F: src/mainboard/supermicro/x11-lga1151-series/
Angel Pons8d6f5872020-06-07 00:25:42 +0200473
474################################################################################
475# Architectures
476################################################################################
Julius Werner848f5db2017-09-11 13:12:48 -0700477
Stefan Reinauerbf3dbaf2015-06-12 15:30:59 -0700478ARM ARCHITECTURE
Julius Wernerc34e41f2017-06-09 14:26:03 -0700479M: Julius Werner <jwerner@chromium.org>
480S: Supported
Stefan Reinauerbf3dbaf2015-06-12 15:30:59 -0700481F: src/arch/arm/
Julius Wernerc34e41f2017-06-09 14:26:03 -0700482F: src/arch/arm64/
Julius Wernerc34e41f2017-06-09 14:26:03 -0700483F: src/soc/nvidia/
484F: src/soc/rockchip/
485F: util/nvidia/
486F: util/rockchip/
487
Angel Pons8d6f5872020-06-07 00:25:42 +0200488PPC64 ARCHITECTURE
489M: Ronald Minnich <rminnich@gmail.com>
490M: Timothy Pearson <tpearson@raptorengineeringinc.com>
491S: Maintained
492F: src/arch/ppc64/
493F: src/cpu/qemu-power8/
494F: src/mainboard/emulation/qemu-power8/
495
496RISC-V ARCHITECTURE
497M: Ronald Minnich <rminnich@gmail.com>
498R: Philipp Hug <philipp@hug.cx>
499S: Maintained
500F: src/arch/riscv/
501F: src/soc/sifive/
502F: src/soc/ucb/
503F: src/mainboard/emulation/*-riscv/
504F: src/mainboard/sifive/
505F: util/riscv/
Stefan Reinauerbf3dbaf2015-06-12 15:30:59 -0700506
Stefan Reinauerbf3dbaf2015-06-12 15:30:59 -0700507X86 ARCHITECTURE
508F: src/arch/x86/
509F: src/cpu/x86/
510F: src/drivers/pc80/
511F: src/include/pc80/
512F: src/include/cpu/x86/
513
Angel Pons8d6f5872020-06-07 00:25:42 +0200514################################################################################
515# Embedded Controllers
516################################################################################
517
Tim Wawrzynczak7400b612021-04-20 22:04:22 -0600518CHROME EC
519M: Tim Wawrzynczak <twawrzynczak@chromium.org>
520S: Maintained
521F: src/ec/google/chromeec/
522
Angel Pons8d6f5872020-06-07 00:25:42 +0200523LENOVO EC
524M: Alexander Couzens <lynxis@fe80.eu>
525S: Maintained
526F: src/ec/lenovo/
527
Sean Rhodes17441a32021-07-05 16:03:15 +0100528STARLABS EC
529M: Sean Rhodes <sean@starlabs.systems>
530S: Maintained
531F: src/ec/starlabs/
532
Jeremy Soller625af2b2020-07-21 08:23:39 -0600533SYSTEM76 EC
534M: Jeremy Soller <jeremy@system76.com>
Tim Crawford5310d522021-04-21 15:30:29 -0600535M: Tim Crawford <tcrawford@system76.com>
Jeremy Soller625af2b2020-07-21 08:23:39 -0600536S: Maintained
537F: src/ec/system76/
538
Angel Pons8d6f5872020-06-07 00:25:42 +0200539################################################################################
540# Northbridges
541################################################################################
542
543INTEL HASWELL NORTHBRIDGE
544M: Angel Pons <th3fanbus@gmail.com>
545S: Maintained
546F: src/northbridge/intel/haswell/
547
548INTEL PINEVIEW CHIPSET
549M: Damien Zammit <damien@zamaudio.com>
550M: Angel Pons <th3fanbus@gmail.com>
551S: Odd Fixes
552F: src/northbridge/intel/pineview/
553
554INTEL SANDYBRIDGE NORTHBRIDGE
555M: Angel Pons <th3fanbus@gmail.com>
556S: Maintained
557F: src/northbridge/intel/sandybridge/
558
559INTEL X4X CHIPSET
560M: Damien Zammit <damien@zamaudio.com>
561M: Angel Pons <th3fanbus@gmail.com>
562S: Odd Fixes
563F: src/northbridge/intel/x4x/
564
565################################################################################
566# Platforms
567################################################################################
568
569AMD SUPPORT
570F: src/vendorcode/amd/
571F: src/cpu/amd/
572F: src/northbridge/amd/
573F: src/southbridge/amd/
574F: src/include/cpu/amd/
575
Stefan Reinauerbf3dbaf2015-06-12 15:30:59 -0700576INTEL SUPPORT
Martin Roth954338d2017-03-05 11:20:18 -0700577M: Patrick Rudolph <siro@das-labor.org>
578S: Maintained
Stefan Reinauerbf3dbaf2015-06-12 15:30:59 -0700579F: src/vendorcode/intel/
580F: src/cpu/intel/
581F: src/northbridge/intel/
582F: src/southbridge/intel/
583F: src/soc/intel/
584F: src/drivers/intel/
585F: src/include/cpu/intel/
586
Angel Pons8d6f5872020-06-07 00:25:42 +0200587INTEL FSP DENVERTON-NS SOC & HARCUVAR CRB
Mariusz Szafranski778c4f8c2020-11-19 13:05:32 +0100588M: Suresh Bellampalli <suresh.bellampalli@intel.com>
Angel Pons8d6f5872020-06-07 00:25:42 +0200589M: Vanessa Eusebio <vanessa.f.eusebio@intel.com>
Mariusz Szafranski778c4f8c2020-11-19 13:05:32 +0100590M: Michal Motyl <michalx.motyl@intel.com>
591M: Mariusz Szafranski <mariuszx.szafranski@intel.com>
592S: Maintained
Angel Pons8d6f5872020-06-07 00:25:42 +0200593F: src/mainboard/intel/harcuvar/
594F: src/soc/intel/denverton_ns/
Angel Pons8d6f5872020-06-07 00:25:42 +0200595
596INTEL FSP 1.1
597M: Lee Leahy <leroy.p.leahy@intel.com>
598M: Huang Jin <huang.jin@intel.com>
599M: York Yang <york.yang@intel.com>
600S: Supported
601F: src/drivers/intel/fsp1_1/
602
603INTEL FSP 2.0
604M: Andrey Petrov <andrey.petrov@gmail.com>
605S: Maintained
606F: src/drivers/intel/fsp2_0/
607
608################################################################################
609# Systems on a Chip
610################################################################################
611
Felix Heldfef413e2020-12-02 15:57:24 +0100612AMD Cezanne
613M: Marshall Dawson <marshalldawson3rd@gmail.com>
614M: Felix Held <felix-coreboot@felixheld.de>
615M: Jason Glenesk <jason.glenesk@gmail.com>
Raul E Rangelc81509c2021-01-25 10:24:14 -0700616M: Raul E Rangel <rrangel@chromium.org>
Fred Reitberger636a6de2022-02-17 13:27:35 -0500617M: Fred Reitberger <reitbergerfred@gmail.com>
Felix Heldfef413e2020-12-02 15:57:24 +0100618S: Maintained
619F: src/soc/amd/cezanne/
Felix Heldfe84dbb2021-08-06 16:25:35 +0200620F: src/vendorcode/amd/fsp/cezanne/
Felix Heldfef413e2020-12-02 15:57:24 +0100621
622AMD common SoC code
623M: Marshall Dawson <marshalldawson3rd@gmail.com>
624M: Felix Held <felix-coreboot@felixheld.de>
625M: Jason Glenesk <jason.glenesk@gmail.com>
Raul E Rangelc81509c2021-01-25 10:24:14 -0700626M: Raul E Rangel <rrangel@chromium.org>
Fred Reitberger636a6de2022-02-17 13:27:35 -0500627M: Fred Reitberger <reitbergerfred@gmail.com>
Felix Heldfef413e2020-12-02 15:57:24 +0100628S: Maintained
629F: src/soc/amd/common/
630
Felix Held93231b42020-11-13 15:56:28 +0100631AMD Picasso
632M: Marshall Dawson <marshalldawson3rd@gmail.com>
633M: Felix Held <felix-coreboot@felixheld.de>
634M: Jason Glenesk <jason.glenesk@gmail.com>
Raul E Rangelc81509c2021-01-25 10:24:14 -0700635M: Raul E Rangel <rrangel@chromium.org>
Fred Reitberger636a6de2022-02-17 13:27:35 -0500636M: Fred Reitberger <reitbergerfred@gmail.com>
Felix Held93231b42020-11-13 15:56:28 +0100637S: Maintained
Felix Singer3c02ed92020-11-30 06:56:08 +0100638F: src/soc/amd/picasso/
639F: src/vendorcode/amd/fsp/picasso/
Felix Held93231b42020-11-13 15:56:28 +0100640
Felix Held2e88d062022-01-25 04:39:39 +0100641AMD Sabrina
642M: Marshall Dawson <marshalldawson3rd@gmail.com>
643M: Felix Held <felix-coreboot@felixheld.de>
644M: Jason Glenesk <jason.glenesk@gmail.com>
645M: Raul E Rangel <rrangel@chromium.org>
Fred Reitberger636a6de2022-02-17 13:27:35 -0500646M: Fred Reitberger <reitbergerfred@gmail.com>
Felix Held2e88d062022-01-25 04:39:39 +0100647S: Maintained
648F: src/soc/amd/sabrina/
649F: src/vendorcode/amd/fsp/sabrina/
650
Felix Held4080e082021-08-06 16:30:02 +0200651AMD Stoneyridge
652M: Marshall Dawson <marshalldawson3rd@gmail.com>
653M: Felix Held <felix-coreboot@felixheld.de>
654S: Odd Fixes
655F: src/soc/amd/stoneyridge/
656
Tim Wawrzynczak7400b612021-04-20 22:04:22 -0600657INTEL ALDERLAKE SOC
658M: Tim Wawrzynczak <twawrzynczak@chromium.org>
659S: Maintained
660F: src/soc/intel/alderlake/
661
Angel Pons8d6f5872020-06-07 00:25:42 +0200662INTEL APOLLOLAKE_SOC
663M: Andrey Petrov <andrey.petrov@gmail.com>
664S: Maintained
665F: src/soc/intel/apollolake/
666
667INTEL BRASWELL SOC
668M: Piotr Król <piotr.krol@3mdeb.com>
669M: Michał Żygowski <michal.zygowski@3mdeb.com>
670M: Frans Hendriks <fhendriks@eltan.com>
671S: Maintained
Felix Singer3c02ed92020-11-30 06:56:08 +0100672F: /src/soc/intel/braswell/
673F: /src/vendorcode/intel/fsp/fsp1_1/braswell/
Angel Pons8d6f5872020-06-07 00:25:42 +0200674
Tim Wawrzynczak7400b612021-04-20 22:04:22 -0600675INTEL TIGERLAKE SOC
676M: Tim Wawrzynczak <twawrzynczak@chromium.org>
677S: Maintained
678F: src/soc/intel/tigerlake/
679
Jonathan Zhange9b0b082020-06-30 13:28:52 -0700680INTEL Xeon Sacalable Processor Family
681M: Jonathan Zhang <jonzhang@fb.com>
682M: Reddy Chagam <anjaneya.chagam@intel.com>
683M: Johnny Lin <Johnny_Lin@wiwynn.com>
Jonathan Zhang4a4806f2021-09-16 09:06:47 -0700684M: Tim Chu <Tim.Chu@quantatw.com>
685M: Arthur Heymans <arthur@aheymans.xyz>
686M: Christian Walter <christian.walter@9elements.com>
Jonathan Zhange9b0b082020-06-30 13:28:52 -0700687S: Supported
Felix Singerd70d1d12020-11-30 06:56:08 +0100688F: src/soc/intel/xeon_sp/
Felix Singer3c02ed92020-11-30 06:56:08 +0100689F: src/vendorcode/intel/fsp/fsp2_0/skylake_sp/
690F: src/vendorcode/intel/fsp/fsp2_0/copperlake_sp/
Jonathan Zhange9b0b082020-06-30 13:28:52 -0700691
Julius Wernerb1263802020-08-24 14:24:21 -0700692MEDIATEK SOCS
693M: Hung-Te Lin <hungte@chromium.org>
694S: Supported
Felix Singer3c02ed92020-11-30 06:56:08 +0100695F: src/soc/mediatek/
Julius Wernerb1263802020-08-24 14:24:21 -0700696
Xi Chen022b1b92021-02-05 11:45:12 +0800697MEDIATEK MT8192
698M: Xi Chen <xixi.chen@mediatek.com>
699S: Maintained
700F: src/soc/mediatek/mt8192/
701F: src/vendorcode/mediatek/mt8192/
702
Angel Pons8d6f5872020-06-07 00:25:42 +0200703ORPHANED ARM SOCS
704S: Orphaned
705F: src/cpu/armltd/
Sam Lewisad7b2e22020-08-03 20:18:29 +1000706F: src/soc/ti/
Angel Pons8d6f5872020-06-07 00:25:42 +0200707F: src/soc/qualcomm/
708F: src/soc/samsung/
709F: util/exynos/
710F: util/ipqheader/
711
712################################################################################
713# Payloads
714################################################################################
715
716NVRAM
717F: util/nvramtool/
718F: payloads/nvramcui/
719
720LIBPAYLOAD
721F: payloads/libpayload/
722
723COREINFO PAYLOAD
724F: payloads/coreinfo/
725
726EXTERNAL PAYLOADS INTEGRATION
727M: Stefan Reinauer <stefan.reinauer@coreboot.org>
728M: Martin Roth <gaumless@gmail.com>
Felix Singer3c02ed92020-11-30 06:56:08 +0100729F: payloads/external/
Angel Pons8d6f5872020-06-07 00:25:42 +0200730
731LINUXBOOT PAYLOAD INTEGRATION
732M: Christian Walter <christian.walter@9elements.com>
733M: Marcello Sylvester Bauer <info@marcellobauer.com>
734S: Supported
Felix Singer3c02ed92020-11-30 06:56:08 +0100735F: payloads/external/LinuxBoot/
Angel Pons8d6f5872020-06-07 00:25:42 +0200736
737################################################################################
738# Utilities
739################################################################################
740
741ABUILD
Angel Pons8d6f5872020-06-07 00:25:42 +0200742M: Martin Roth <gaumless@gmail.com>
743S: Supported
744F: util/abuild/
745
746BOARD STATUS
747F: util/board_status/
748
749BUILD SYSTEM
Angel Pons8d6f5872020-06-07 00:25:42 +0200750M: Martin Roth <gaumless@gmail.com>
751S: Supported
752F: Makefile
753F: *.inc
754F: src/include/kconfig.h
755F: util/kconfig/
756F: util/sconfig/
757F: util/xcompile/
758F: util/genbuild_h/
759
760TOOLCHAIN
761F: util/crossgcc/
762
763DOCKER
764M: Martin Roth <gaumless@gmail.com>
765S: Supported
766F: util/docker/
767
768GIT
769F: .git*
770F: /util/gitconfig
Stefan Reinauerbf3dbaf2015-06-12 15:30:59 -0700771
Stefan Reinauer2e38cc52015-05-06 11:15:38 -0700772LINT SCRIPTS
Martin Roth057ce5f2016-03-17 12:03:00 -0600773M: Martin Roth <gaumless@gmail.com>
Stefan Reinauer2e38cc52015-05-06 11:15:38 -0700774S: Supported
775F: util/lint/
776
Angel Pons8d6f5872020-06-07 00:25:42 +0200777IFDTOOL
778M: Stefan Reinauer <stefan.reinauer@coreboot.org>
779F: util/ifdtool/
780
Stefan Reinauerbf3dbaf2015-06-12 15:30:59 -0700781INTELTOOL
782M: Stefan Reinauer <stefan.reinauer@coreboot.org>
783F: util/inteltool/
784
Philipp Deppenwiese4cd9a112016-03-23 00:02:40 +0100785INTELMETOOL
Philipp Deppenwiese00eb7d72020-03-28 14:19:44 +0100786M: Christian Walter <christian.walter@9elements.com>
Philipp Deppenwiese4cd9a112016-03-23 00:02:40 +0100787F: util/intelmetool/
788
Maxim Polyakov8f6c8962021-08-07 13:07:44 +0300789INTELP2M
790M: Maxim Polyakov <max.senia.poliak@gmail.com>
791S: Maintained
792F: util/intelp2m/
793
Nicola Corna4f4fc182017-02-23 16:53:45 +0100794ME_CLEANER
795M: Nicola Corna <nicola@corna.info>
796W: https://github.com/corna/me_cleaner
797S: Maintained
798F: util/me_cleaner/
799
Felix Singerf9948a42021-02-01 13:46:50 +0100800LIVEISO
801M: Felix Singer <felixsinger@posteo.net>
802S: Supported
803F: util/liveiso/
804
Angel Pons8d6f5872020-06-07 00:25:42 +0200805################################################################################
806# Miscellaneous
807################################################################################
Stefan Reinauerbf3dbaf2015-06-12 15:30:59 -0700808
Angel Pons8d6f5872020-06-07 00:25:42 +0200809ASPEED AST2050 DRIVER & COMMON CODE
810M: Timothy Pearson <tpearson@raptorengineeringinc.com>
Patrick Georgi65ff63f2015-05-21 18:54:10 +0200811S: Supported
Angel Pons8d6f5872020-06-07 00:25:42 +0200812F: src/drivers/aspeed/common/
813F: src/drivers/aspeed/ast2050/
Patrick Georgi65ff63f2015-05-21 18:54:10 +0200814
Angel Pons8d6f5872020-06-07 00:25:42 +0200815ACPI
Lijian Zhao5bd9b7f2020-12-29 09:12:36 +0800816M: Lance Zhao <lance.zhao@gmail.com>
Tim Wawrzynczak7400b612021-04-20 22:04:22 -0600817M: Tim Wawrzynczak <twawrzynczak@chromium.org>
Lijian Zhao5bd9b7f2020-12-29 09:12:36 +0800818S: Supported
Angel Pons8d6f5872020-06-07 00:25:42 +0200819F: src/acpi/
820F: src/arch/x86/acpi/
821F: util/acpi/
822
823LZ4 COMPRESSION
824M: Julius Werner <jwerner@chromium.org>
825S: Supported
826F: src/commonlib/lz4*
827F: payloads/libpayload/liblz4/
828F: util/cbfstool/lz4/
Stefan Reinauerbf3dbaf2015-06-12 15:30:59 -0700829
830BINARY OBJECTS
831F: 3rdparty/blobs/
832
833VERIFIED BOOT
Julius Werner763db462021-07-30 16:30:14 -0700834M: Julius Werner <jwerner@chromium.org>
835M: Yu-Ping Wu <yupingso@google.com>
836S: Supported
Stefan Reinauerbf3dbaf2015-06-12 15:30:59 -0700837F: 3rdparty/vboot/
Julius Werner763db462021-07-30 16:30:14 -0700838F: src/security/vboot/
Stefan Reinauerbf3dbaf2015-06-12 15:30:59 -0700839F: src/include/tpm.h
840F: src/include/tpm_lite/
841
842RESOURCE ALLOCATOR
843F: src/device/*
844F: src/include/device/
845F: src/include/cpu/cpu.h
846
847OPTION ROM EXECUTION & X86EMU
848F: src/device/oprom/
849
850CBFS
Julius Werner0655f782019-12-11 16:19:48 -0800851M: Julius Werner <jwerner@chromium.org>
852F: src/include/cbfs*
853F: src/commonlib/bsd/include/commonlib/bsd/cbfs*
854F: src/commonlib/bsd/cbfs*
855F: src/lib/cbfs.c
856
857CBFSTOOL
Stefan Reinauerbf3dbaf2015-06-12 15:30:59 -0700858F: util/cbfstool/
859
860CBMEM
861F: src/include/cbmem.h
862F: src/include/cbmem_id.h
863F: util/cbmem/
864
865CONSOLE
866F: src/console/
867F: src/include/console/
868F: src/drivers/uart/
869
Philipp Deppenwiese6507e6f2016-06-22 19:01:47 +0200870TPM SUPPORT
Philipp Deppenwiese00eb7d72020-03-28 14:19:44 +0100871M: Christian Walter <christian.walter@9elements.com>
Philipp Deppenwiese8f6af1c2018-11-23 19:13:54 +0100872S: Supported
Philipp Deppenwiese6507e6f2016-06-22 19:01:47 +0200873F: src/drivers/*/tpm/
Felix Singer3c02ed92020-11-30 06:56:08 +0100874F: src/security/tpm/
Philipp Deppenwiese6507e6f2016-06-22 19:01:47 +0200875
Martin Rothe801fcb2017-05-27 10:54:02 -0600876SUPERIOS & SUPERIOTOOL
877M: Felix Held <felix-coreboot@felixheld.de>
878S: Maintained
879F: src/superio/
880F: util/superiotool/
881
Patrick Georgidcc0cc22021-09-23 11:49:41 +0200882SPD UTILITIES
883M: Reka Norman <rekanorman@chromium.org>
884S: Maintained
885F: util/spd_tools/
886F: util/spdtool/
887
Julius Wernerc34e41f2017-06-09 14:26:03 -0700888MEMLAYOUT
889M: Julius Werner <jwerner@chromium.org>
890S: Supported
891F: */memlayout.h
892F: *.ld
893
Frans Hendriksf20bf922019-06-13 14:14:56 +0200894ELTAN VENDORCODE
895M: Frans Hendriks <fhendriks@eltan.com>
Frans Hendriks7e7ea2b2021-12-02 10:15:20 +0100896M: Erik van den Bogaert <ebogaert@eltan.com>
Frans Hendriksf20bf922019-06-13 14:14:56 +0200897S: Maintained
Felix Singer3c02ed92020-11-30 06:56:08 +0100898F: src/vendorcode/eltan/
Frans Hendriksf20bf922019-06-13 14:14:56 +0200899
Tim Crawford56dd9f0382021-04-21 15:40:23 -0600900TAS5825M DRIVER
901M: Jeremy Soller <jeremy@system76.com>
902M: Tim Crawford <tcrawford@system76.com>
903S: Maintained
904F: src/drivers/i2c/tas5825m/
905
Patrick Georgi517097f2021-03-02 18:08:14 +0100906TESTS
907M: Jakub Czapiga <jacz@semihalf.com>
908S: Maintained
909F: tests/
Jakub Czapiga6df286e2021-12-15 15:46:35 +0000910F: payloads/libpayload/tests/
Patrick Georgi517097f2021-03-02 18:08:14 +0100911
Stefan Reinauerbf3dbaf2015-06-12 15:30:59 -0700912MISSING: TIMERS / DELAYS
913
914MISSING: TIMESTAMPS
915
Stefan Reinauerbf3dbaf2015-06-12 15:30:59 -0700916MISSING: FMAP
917
918MISSING: GPIO
919
920MISSING: SMP
921
Stefan Reinauerbf3dbaf2015-06-12 15:30:59 -0700922MISSING: DMP / QEMU-X86
923
924MISSING: ELOG
925
Stefan Reinauerbf3dbaf2015-06-12 15:30:59 -0700926MISSING: SPI
927
Angel Pons0b500992020-04-15 16:47:36 +0200928# *** Infrastructure Owners ***
Martin Roth19fdedb2017-06-25 15:44:16 -0600929# This is intended to let people know who they should contact for issues with various infrastructure pieces.
930# Hardware
931# Owners: Stefan, Patrick
Sumeet Pawnikar1638a852017-09-12 22:17:55 +0530932# Backups:
Martin Roth19fdedb2017-06-25 15:44:16 -0600933
934# Web Server
935# Owners: Stefan, Patrick
936# Backups:
937
938# Website
Philipp Deppenwiese00eb7d72020-03-28 14:19:44 +0100939# Owners: Martin
Martin Roth19fdedb2017-06-25 15:44:16 -0600940# Backups: Patrick, Stefan
941
942# Documentation Website
Philipp Deppenwiese00eb7d72020-03-28 14:19:44 +0100943# Owners: Patrick
Martin Roth19fdedb2017-06-25 15:44:16 -0600944# Backups:
945
Patrick Georgi1d348942019-07-17 20:40:50 +0200946CODE OF CONDUCT
947M: Stefan Reinauer <stefan.reinauer@coreboot.org>
Patrick Georgi1d348942019-07-17 20:40:50 +0200948M: Ronald Minnich <rminnich@coreboot.org>
949M: Martin Roth <martin@coreboot.org>
950S: Maintained
951F: Documentation/community/code_of_conduct.md
952
Martin Roth19fdedb2017-06-25 15:44:16 -0600953# Wiki
954# Owners: Stefan, Patrick
955# Backups:
956
957# Gerrit
958# Owners: Stefan, Patrick
959# Backups: Martin
960
961# Jenkins
962# Owners: Patrick, Martin
963# Backups:
964
965# Bug Tracker
966# Owners: Lynxis,
967# Backups: Martin,
968
969# Mailing List
970# Owners: Stefan, Patrick
971# Backups: Martin,
972
973# Software Freedom Conservancy
974# Main contact: Martin
975# “Official” contact: Stefan