device: Tidy up add_more_links()
[coreboot.git] / MAINTAINERS
blob73ca6dfed9c1ead66ac3291ba7468c13826d231a
3                     List of upstream coreboot maintainers
4                      and how to submit coreboot changes
6 This represents the list of maintainers that work on the upstream coreboot
7 code base (on coreboot.org).  Maintainers are assigned to topics and when
8 applicable to subtrees of the source tree. You'll find some subtrees that
9 don't have a maintainer. If you are looking for reviewers for such a sub-
10 tree, it's often a good choice to look at the git history to see who worked
11 on it last.
13 Please try to follow the guidelines below.  This will make things
14 easier on the maintainers.  Not all of these guidelines matter for every
15 trivial patch so apply some common sense.
17 1.      Always _test_ your changes, however small, on at least 1 or
18         2 people, preferably many more.
20 2.      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!)
28 3.      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!)
32 4.      When you are happy with a change make it generally available for
33         testing in gerrit and await feedback.
35 5.      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.
44         PLEASE check your patch with the automated style checker
45         (util/lint/checkpatch.pl) to catch trival style violations.
46         See https://www.coreboot.org/Coding_Style for guidance here.
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.
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.
58         PLEASE document known bugs. If it doesn't work for everything
59         or does something very odd once a month document it.
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
65         https://www.coreboot.org/Development_Guidelines#Sign-off_Procedure.
67 6.      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.
71 7.      Happy hacking.
73 Descriptions of section entries:
75         M: Maintainer: FullName <address@domain>
76            Must be registered to Gerrit (https://review.coreboot.org/).
77            Should have experience with upstream coreboot development.
78         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:
86            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.
92            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.
128 Note: For the hard of thinking, this list is meant to remain in alphabetical
129 order. If you could add yourselves to it in alphabetical order that would be
130 so much easier [Ed]
132 Maintainers List (try to look for most precise areas first)
134                 -----------------------------------
136 RISC-V ARCHITECTURE
137 M:      Ronald Minnich <rminnich@gmail.com>
138 M:      Jonathan Neuschäfer <j.neuschaefer@gmx.net>
139 R:      Philipp Hug <philipp@hug.cx>
140 S:      Maintained
141 F:      src/arch/riscv/
142 F:      src/soc/sifive/
143 F:      src/soc/ucb/
144 F:      src/mainboard/emulation/*-riscv/
145 F:      src/mainboard/sifive/
146 F:      util/riscv/
148 PPC64 ARCHITECTURE
149 M:      Ronald Minnich <rminnich@gmail.com>
150 M:      Timothy Pearson <tpearson@raptorengineeringinc.com>
151 S:      Maintained
152 F:      src/arch/ppc64/
153 F:      src/cpu/qemu-power8/
154 F:      src/mainboard/emulation/qemu-power8/
156 LENOVO EC
157 M:      Alexander Couzens <lynxis@fe80.eu>
158 S:      Maintained
159 F:      src/ec/lenovo/
161 LENOVO MAINBOARDS
162 M:      Alexander Couzens <lynxis@fe80.eu>
163 M:      Patrick Rudolph <siro@das-labor.org>
164 S:      Maintained
165 F:      src/mainboard/lenovo/
167 APPLE MAINBOARDS
168 M:      Evgeny Zinoviev <me@ch1p.io>
169 S:      Maintained
170 F:      src/mainboard/apple/
172 GETAC P470 MAINBOARD
173 M:      Patrick Georgi <patrick@georgi.software>
174 S:      Maintained
175 F:      src/mainboard/getac/p470
177 INTEL PINEVIEW CHIPSET
178 M:      Damien Zammit <damien@zamaudio.com>
179 S:      Odd Fixes
180 F:      src/northbridge/intel/pineview/
182 INTEL D510MO MAINBOARD
183 M:      Damien Zammit <damien@zamaudio.com>
184 S:      Odd Fixes
185 F:      src/mainboard/intel/d510mo
187 INTEL X4X CHIPSET
188 M:      Damien Zammit <damien@zamaudio.com>
189 S:      Odd Fixes
190 F:      src/northbridge/intel/x4x/
192 GIGABYTE GA-G41M-ES2L MAINBOARD
193 M:      Damien Zammit <damien@zamaudio.com>
194 S:      Odd Fixes
195 F:      src/mainboard/gigabyte/ga-g41m-es2l
197 GIGABYTE GA-H61M-S2PV MAINBOARD
198 M:      Angel Pons <th3fanbus@gmail.com>
199 S:      Maintained
200 F:      src/mainboard/gigabyte/ga-h61m-s2pv
202 GOOGLE PANTHER MAINBOARD
203 M:      Stefan Reinauer <stefan.reinauer@coreboot.org>
204 S:      Supported
205 F:      src/mainboard/google/panther/
207 GOOGLE MAINBOARDS (Intel-based, legacy/inactive)
208 M:      Matt DeVillier <MrChromebox@gmail.com>
209 S:      Maintained
210 F:      src/mainboard/google/auron/
211 F:      src/mainboard/google/beltino/
212 F:      src/mainboard/google/butterfly/
213 F:      src/mainboard/google/cyan/
214 F:      src/mainboard/google/glados/
215 F:      src/mainboard/google/jecht/
216 F:      src/mainboard/google/link/
217 F:      src/mainboard/google/parrot/
218 F:      src/mainboard/google/slippy/
219 F:      src/mainboard/google/stout/
221 OCP MAINBOARDS
222 M:      Philipp Deppenwiese <zaolin.daisuki@gmail.com>
223 M:      Patrick Rudolph <patrick.rudolph@9elements.com>
224 S:      Supported
225 F:      src/mainboard/ocp/wedge100s/
226 F:      src/mainboard/ocp/monolake/
228 OPENCELLULAR MAINBOARDS
229 M:      Philipp Deppenwiese <zaolin.daisuki@gmail.com>
230 M:      Patrick Rudolph <patrick.rudolph@9elements.com>
231 S:      Supported
232 F:      src/mainboard/opencellular/rotundu/
233 F:      src/mainboard/opencellular/elgon/
235 PURISM MAINBOARDS
236 M:      Matt DeVillier <matt.devillier@puri.sm>
237 S:      Supported
238 F:      src/mainboard/purism
240 SAMSUNG CHROMEOS MAINBOARDS
241 M:      Matt DeVillier <MrChromebox@gmail.com>
242 S:      Maintained
243 F:      src/mainboard/samsung/lumpy/
244 F:      src/mainboard/samsung/stumpy/
246 INTEL MINNOWBOARD MAX MAINBOARD
247 M:      Huang Jin <huang.jin@intel.com>
248 M:      York Yang <york.yang@intel.com>
249 S:      Supported
250 F:      src/mainboard/intel/minnowmax/
252 INTEL FSP BAYTRAIL CHIP & CRBs
253 M:      Huang Jin <huang.jin@intel.com>
254 M:      York Yang <york.yang@intel.com>
255 M:      Philipp Deppenwiese <zaolin.daisuki@gmail.com>
256 S:      Supported
257 F:      src/soc/intel/fsp_baytrail/
258 F:      src/vendorcode/intel/fsp1_0/baytrail/
259 F:      src/mainboard/intel/bakersport_fsp/
260 F:      src/mainboard/intel/bayleybay_fsp/
262 INTEL FSP BROADWELL-DE SOC & CRB
263 M:      York Yang <york.yang@intel.com>
264 M:      Philipp Deppenwiese <zaolin.daisuki@gmail.com>
265 S:      Supported
266 F:      src/soc/intel/fsp_broadwell_de/
267 F:      src/vendorcode/intel/fsp1_0/broadwell_de/
268 F:      src/mainboard/intel/camelbackmountain_fsp/
270 INTEL FSP DENVERTON-NS SOC & HARCUVAR CRB
271 M:      Vanessa Eusebio <vanessa.f.eusebio@intel.com>
272 M:      David Guckian <david.guckian@intel.com>
273 S:      Odd Fixes
274 F:      src/mainboard/intel/harcuvar/
275 F:      src/soc/intel/denverton_ns/
276 F:      src/vendorcode/intel/fsp/fsp2_0/denverton_ns/
278 FSP 1.0 RANGELEY & CRB
279 M:      David Guckian <david.guckian@intel.com>
280 M:      Fei Wang <fei.z.wang@intel.com>
281 S:      Supported
282 F:      src/cpu/intel/fsp_model_406dx/
283 F:      src/northbridge/intel/fsp_rangeley/
284 F:      src/southbridge/intel/fsp_rangeley/
285 F:      src/vendorcode/intel/fsp1_0/rangeley/
286 F:      src/mainboard/intel/mohonpeak/
288 INTEL FSP 1.0
289 M:      Huang Jin <huang.jin@intel.com>
290 M:      York Yang <york.yang@intel.com>
291 M:      Philipp Deppenwiese <zaolin.daisuki@gmail.com>
292 S:      Supported
293 F:      src/drivers/intel/fsp1_0/
294 F:      src/vendorcode/intel/fsp1_0/broadwell_de/
296 INTEL FSP 1.1
297 M:      Lee Leahy <leroy.p.leahy@intel.com>
298 M:      Huang Jin <huang.jin@intel.com>
299 M:      York Yang <york.yang@intel.com>
300 S:      Supported
301 F:      src/drivers/intel/fsp1_1/
303 INTEL FSP 2.0
304 M:      Andrey Petrov <andrey.petrov@gmail.com>
305 S:      Maintained
306 F:      src/drivers/intel/fsp2_0/
308 INTEL STRAGO MAINBOARD
309 M:      Hannah Williams <hannah.williams@intel.com>
310 S:      Supported
311 F:      /src/mainboard/intel/strago/
313 INTEL BRASWELL SOC
314 M:      Piotr Król <piotr.krol@3mdeb.com>
315 M:      Michał Żygowski <michal.zygowski@3mdeb.com>
316 M:      Frans Hendriks <fhendriks@eltan.com>
317 S:      Maintained
318 F:      /src/soc/intel/braswell
319 F:      /src/vendorcode/intel/fsp/fsp1_1/braswell
321 INTEL APOLLOLAKE_SOC
322 M:      Andrey Petrov <andrey.petrov@gmail.com>
323 S:      Maintained
324 F:      src/soc/intel/apollolake/
326 ASROCK G41C-GS MAINBOARD & VARIANTS
327 M:      Angel Pons <th3fanbus@gmail.com>
328 S:      Maintained
329 F:      src/mainboard/asrock/g41c-gs/
331 ASROCK H81M-HDS MAINBOARD
332 M:      Tristan Corrick <tristan@corrick.kiwi>
333 S:      Maintained
334 F:      src/mainboard/asrock/h81m-hds/
336 ASUS KFSN4-DRE & KFSN4-DRE_K8 MAINBOARDS
337 M:      Timothy Pearson <tpearson@raptorengineeringinc.com>
338 S:      Supported
339 F:      src/mainboard/asus/kfsn4-dre/
340 F:      src/mainboard/asus/kfsn4-dre_k8/
342 ASUS KCMA-D8 MAINBOARD
343 M:      Timothy Pearson <tpearson@raptorengineeringinc.com>
344 S:      Supported
345 F:      src/mainboard/asus/kcma-d8/
347 ASUS KGPE-D16 MAINBOARD
348 M:      Timothy Pearson <tpearson@raptorengineeringinc.com>
349 S:      Supported
350 F:      src/mainboard/asus/kgpe-d16/
352 ASUS MAXIMUS IV GENE-Z MAINBOARD
353 M:      Tristan Corrick <tristan@corrick.kiwi>
354 S:      Maintained
355 F:      src/mainboard/asus/maximus_iv_gene-z/
357 ASUS P5QC PRO MAINBOARD & VARIANTS
358 M:      Angel Pons <th3fanbus@gmail.com>
359 S:      Maintained
360 F:      src/mainboard/asus/p5qc/
362 ASUS P8H61-M LX MAINBOARD
363 M:      Tristan Corrick <tristan@corrick.kiwi>
364 S:      Maintained
365 F:      src/mainboard/asus/p8h61-m_lx/
367 ASUS P8H61-M PRO MAINBOARD
368 M:      Angel Pons <th3fanbus@gmail.com>
369 S:      Maintained
370 F:      src/mainboard/asus/p8h61-m_pro/
372 ASUS P8Z77-M PRO MAINBOARD
373 M:      Vlado Cibic <vladocb@protonmail.com>
374 S:      Maintained
375 F:      src/mainboard/asus/p8z77-m_pro/
377 PC ENGINES ALL MAINBOARDS
378 M:      Piotr Król <piotr.krol@3mdeb.com>
379 M:      Michał Żygowski <michal.zygowski@3mdeb.com>
380 S:      Supported
381 F:      src/mainboard/pcengines/
383 SIEMENS MC_xxxx MAINBOARDS
384 M:      Werner Zeh <werner.zeh@siemens.com>
385 S:      Maintained
386 F:      src/mainboard/siemens/mc_apl1/
387 F:      src/mainboard/siemens/mc_bdx1/
388 F:      src/mainboard/siemens/mc_tcu3/
390 SUPERMICRO X10SLM+-F MAINBOARD
391 M:      Tristan Corrick <tristan@corrick.kiwi>
392 S:      Maintained
393 F:      src/mainboard/supermicro/x10slm-f/
395 FACEBOOK FBG1701 MAINBOARD
396 M:      Frans Hendriks <fhendriks@eltan.com>
397 M:      Wim Vervoorn <wvervoorn@eltan.com>
398 S:      Maintained
399 F:      src/mainboard/facebook/fbg1701/
401 AMD FAMILY10H & FAMILY15H (NON-AGESA) CPUS & NORTHBRIDGE
402 M:      Timothy Pearson <tpearson@raptorengineeringinc.com>
403 S:      Supported
404 F:      src/cpu/amd/family_10h-family_15h/
405 F:      src/northbridge/amd/amdfam10/
406 F:      src/northbridge/amd/amdmct/
407 F:      src/northbridge/amd/amdht/
409 AMD SB700 (NON-CIMX) SOUTHBRIDGE
410 M:      Timothy Pearson <tpearson@raptorengineeringinc.com>
411 S:      Supported
412 F:      src/southbridge/amd/sb700/
414 AMD SR5650 SOUTHBRIDGE
415 M:      Timothy Pearson <tpearson@raptorengineeringinc.com>
416 S:      Supported
417 F:      src/southbridge/amd/sr5650/
419 ASPEED AST2050 DRIVER & COMMON CODE
420 M:      Timothy Pearson <tpearson@raptorengineeringinc.com>
421 S:      Supported
422 F:      src/drivers/aspeed/common/
423 F:      src/drivers/aspeed/ast2050/
425 ATI MACH64 Driver
426 S:      Orphan
427 F:      src/drivers/ati/mach64/
429 ABUILD
430 M:      Patrick Georgi <patrick@georgi-clan.de>
431 M:      Martin Roth <gaumless@gmail.com>
432 S:      Supported
433 F:      util/abuild/
435 ACPI
436 F:      src/acpi/
437 F:      src/arch/x86/acpi/
438 F:      util/acpi/
440 LZ4 COMPRESSION
441 M:      Julius Werner <jwerner@chromium.org>
442 S:      Supported
443 F:      src/commonlib/lz4*
444 F:      payloads/libpayload/liblz4/
445 F:      util/cbfstool/lz4/
447 ARM ARCHITECTURE
448 M:      Julius Werner <jwerner@chromium.org>
449 S:      Supported
450 F:      src/arch/arm/
451 F:      src/arch/arm64/
452 F:      src/soc/mediatek/
453 F:      src/soc/nvidia/
454 F:      src/soc/rockchip/
455 F:      util/nvidia/
456 F:      util/rockchip/
458 ORPHANED ARM SOCS
459 S:      Orphaned
460 F:      src/cpu/allwinner/
461 F:      src/cpu/armltd/
462 F:      src/cpu/ti/
463 F:      src/soc/marvell/
464 F:      src/soc/qualcomm/
465 F:      src/soc/samsung/
466 F:      util/arm_boot_tools/
467 F:      util/exynos/
468 F:      util/ipqheader/
470 MIPS ARCHITECTURE
471 F:      src/arch/mips/
472 F:      src/cpu/mips/
473 F:      src/soc/imgtec/
474 F:      util/bimgtool/
476 X86 ARCHITECTURE
477 F:      src/arch/x86/
478 F:      src/cpu/x86/
479 F:      src/drivers/pc80/
480 F:      src/include/pc80/
481 F:      src/include/cpu/x86/
483 INTEL SUPPORT
484 M:      Patrick Rudolph <siro@das-labor.org>
485 S:      Maintained
486 F:      src/vendorcode/intel/
487 F:      src/cpu/intel/
488 F:      src/northbridge/intel/
489 F:      src/southbridge/intel/
490 F:      src/soc/intel/
491 F:      src/drivers/intel/
492 F:      src/include/cpu/intel/
494 AMD SUPPORT
495 F:      src/vendorcode/amd/
496 F:      src/cpu/amd/
497 F:      src/northbridge/amd/
498 F:      src/southbridge/amd/
499 F:      src/include/cpu/amd/
501 VIA SUPPORT
502 F:      src/cpu/via/
503 F:      src/northbridge/via/
504 F:      src/southbridge/via/
506 LINT SCRIPTS
507 M:      Patrick Georgi <patrick@georgi-clan.de>
508 M:      Martin Roth <gaumless@gmail.com>
509 S:      Supported
510 F:      util/lint/
512 INTELTOOL
513 M:      Stefan Reinauer <stefan.reinauer@coreboot.org>
514 F:      util/inteltool/
516 INTELMETOOL
517 M:      Philipp Deppenwiese <zaolin.daisuki@gmail.com>
518 F:      util/intelmetool/
520 ME_CLEANER
521 M:      Nicola Corna <nicola@corna.info>
522 W:      https://github.com/corna/me_cleaner
523 S:      Maintained
524 F:      util/me_cleaner/
526 IFDTOOL
527 M:      Stefan Reinauer <stefan.reinauer@coreboot.org>
528 F:      util/ifdtool/
530 BUILD SYSTEM
531 M:      Patrick Georgi <patrick@georgi-clan.de>
532 M:      Martin Roth <gaumless@gmail.com>
533 S:      Supported
534 F:      Makefile
535 F:      *.inc
536 F:      src/include/kconfig.h
537 F:      util/kconfig/
538 F:      util/sconfig/
539 F:      util/xcompile/
540 F:      util/genbuild_h/
542 BOARD STATUS
543 F:      util/board_status/
545 BINARY OBJECTS
546 F:      3rdparty/blobs/
548 VERIFIED BOOT
549 F:      3rdparty/vboot/
550 F:      src/vendorcode/google/chromeos/
551 F:      src/include/tpm.h
552 F:      src/include/tpm_lite/
554 RESOURCE ALLOCATOR
555 F:      src/device/*
556 F:      src/include/device/
557 F:      src/include/cpu/cpu.h
559 OPTION ROM EXECUTION & X86EMU
560 F:      src/device/oprom/
562 CBFS
563 F:      src/include/cbfs.h
564 F:      src/include/cbfs_serialized.h
565 F:      util/cbfstool/
567 CBMEM
568 F:      src/include/cbmem.h
569 F:      src/include/cbmem_id.h
570 F:      util/cbmem/
572 CONSOLE
573 F:      src/console/
574 F:      src/include/console/
575 F:      src/drivers/uart/
577 NVRAM
578 F:      util/nvramtool/
579 F:      util/optionlist/
580 F:      payloads/nvramcui/
582 LIBPAYLOAD
583 F:      payloads/libpayload/
585 BAYOU PAYLOAD
586 F:      payloads/bayou/
588 COREINFO PAYLOAD
589 F:      payloads/coreinfo/
591 EXTERNAL PAYLOADS INTEGRATION
592 M:      Stefan Reinauer <stefan.reinauer@coreboot.org>
593 M:      Martin Roth <gaumless@gmail.com>
594 F:      payloads/external
596 LINUXBOOT PAYLOAD INTEGRATION
597 M:      Philipp Deppenwiese <zaolin.daisuki@gmail.com>
598 M:      Marcello Sylvester Bauer <info@marcellobauer.com>
599 S:      Supported
600 F:      payloads/external/LinuxBoot
602 VERIFIED BOOT 2
603 M:      Aaron Durbin <adurbin@chromium.org>
604 F:      src/security/vboot/
606 TPM SUPPORT
607 M:      Philipp Deppenwiese <zaolin.daisuki@gmail.com>
608 S:      Supported
609 F:      src/drivers/*/tpm/
610 F:      src/security/vboot/vboot_crtm.*
611 F:      src/security/tpm
613 DOCKER
614 M:      Martin Roth <gaumless@gmail.com>
615 S:      Supported
616 F:      util/docker/
618 TOOLCHAIN
619 F:      util/crossgcc/
622 F:      .git*
623 F:      /util/gitconfig
625 SUPERIOS & SUPERIOTOOL
626 M:      Felix Held <felix-coreboot@felixheld.de>
627 S:      Maintained
628 F:      src/superio/
629 F:      util/superiotool/
631 MEMLAYOUT
632 M:      Julius Werner <jwerner@chromium.org>
633 S:      Supported
634 F:      */memlayout.h
635 F:      *.ld
637 ELTAN VENDORCODE
638 M:      Frans Hendriks <fhendriks@eltan.com>
639 M:      Wim Vervoorn <wvervoorn@eltan.com>
640 S:      Maintained
641 F:      src/vendorcode/eltan
643 MISSING: TIMERS / DELAYS
645 MISSING: TIMESTAMPS
647 MISSING: FMAP
649 MISSING: GPIO
651 MISSING: SMP
653 MISSING: DMP / QEMU-X86
655 MISSING: ELOG
657 MISSING: SPI
659 # *** Infrastructure Owners***
660 # This is intended to let people know who they should contact for issues with various infrastructure pieces.
661 # Hardware
662 #       Owners: Stefan, Patrick
663 #       Backups:
665 # Web Server
666 #       Owners: Stefan, Patrick
667 #       Backups:
669 # Website
670 #       Owners: Martin, Philipp
671 #       Backups: Patrick, Stefan
673 # Documentation Website
674 #       Owners: Patrick, Philipp
675 #       Backups:
677 # Wiki
678 #       Owners: Stefan, Patrick
679 #       Backups:
681 # Gerrit
682 #       Owners: Stefan, Patrick
683 #       Backups: Martin
685 # Jenkins
686 #       Owners: Patrick, Martin
687 #       Backups:
689 # Bug Tracker
690 #       Owners: Lynxis,
691 #       Backups: Martin,
693 # Mailing List
694 #       Owners: Stefan, Patrick
695 #       Backups: Martin,
697 # Software Freedom Conservancy
698 #       Main contact: Martin
699 #       “Official” contact: Stefan