blob: 39055fbc2c98c1db2dc9718b0c54689b1cec7ddd [file] [log] [blame]
Ioannis Glaropoulosa2bd2882020-04-07 15:34:09 +02001# This file contains information on who maintains what. It is parsed by
2# get_maintainer.py.
3#
4# File format
5# ###########
6#
7# "Area title" (the quotes are only needed for titles with special characters,
8# like colons):
9# status:
10# One of the following:
11#
12# * maintained:
13# The area has a Maintainer (approved by the TSC) who
14# looks after the area.
15#
16# * orphaned:
17# No current maintainer (but maybe you could take the role as you
18# write your new code).
19#
20# * obsolete:
21# Old code. Something being marked obsolete generally means it has
22# been replaced by something better that you should be using
23# instead.
24#
25# maintainers:
26# List of GitHub handles for the people who maintain the area. Usually,
27# there's only one maintainer.
28#
29# collaborators (not to be confused with the GitHub collaborator role):
30# Very involved contributors, who know the area well and contribute
31# significantly to it.
32#
33# labels:
34# List of GitHub labels to add to pull requests that modify the area.
35#
36# files:
37# List of paths and/or glob patterns giving the files in the area,
38# relative to the root directory.
39#
40# If a path or glob pattern ends in a '/', it matches all files within
41# the given directory or directories. Otherwise, an exact match is
42# required.
43#
44# Paths to directories should always have a trailing '/'.
45#
46# files-regex:
47# List of regular expressions applied to paths to determine if they
48# belong to the area. The regular expression may match anywhere within
49# the path, but can be anchored with ^ and $ as usual.
50#
51# Can be combined with a 'files' key.
52#
53# Note: Prefer plain 'files' patterns where possible. get_maintainer.py
54# will check that they match some file, but won't check regexes
55# (because it might be slow).
56#
57# files-exclude:
58# Like 'files', but any matching files will be excluded from the area.
59#
60# files-regex-exclude:
61# Like 'files-regex', but any matching files will be excluded from the
62# area.
63#
64# description: >-
65# Plain-English description. Describe what the system is about, from an
66# outsider's perspective.
67#
68#
69# All areas must have a 'files' and/or 'files-regex' key. The other keys are
70# optional.
71#
72# It is very advisable to have a `status` key in all entries. Exceptions to
73# this would be sub-areas which add extra fields (for ex. more `collaborators`
74# who work only in that sub-area) to other areas.
75#
76#
77# Workflow
78# ########
79#
80# Ideally, any file in the tree will be covered by some area.
81#
82# When a GitHub pull request is sent, this happens:
83#
84# * A user mentioned in 'maintainers' is added as Assignee to
85# the pull request
86#
87# * Users mentioned in 'maintainers' and 'collaborators' are added as
88# reviewers to the pull request
89#
90# * The labels listed in 'labels' are automatically added to the pull
91# request
92#
93# * The bot posts this comment:
94#
95# This PR affects the following areas:
96# <area name>:
97# Status: ...
98# Maintainers: <list of maintainers>
99# Collaborators: <list of sub-maintainers>
100#
101# <area name>:
102# ...
103#
104#
105# Changes to MAINTAINERS.yml need to be approved as follows:
106#
107# * Changing the 'maintainers' for an area needs approval from the
108# Technical Steering Committee
109#
110# * Changing the 'collaborators' lines requires the maintainer and
111# collaborators of that area to agree (or vote on it)
112
113# Areas are sorted by name
114
115ARC arch:
116 status: maintained
117 maintainers:
118 - ruuddw
119 collaborators:
120 - abrodkin
121 - evgeniy-paltsev
122 - IRISZZW
123 files:
124 - arch/arc/
125 - include/arch/arc/
126 labels:
127 - "area: ARC"
128
129ARM arch:
130 status: maintained
131 maintainers:
132 - ioannisg
133 collaborators:
134 - carlocaione
135 - galak
136 - MaureenHelm
137 - stephanosio
Bradley Bolen505c22e2021-05-26 13:53:19 -0400138 - bbolen
Ioannis Glaropoulosa2bd2882020-04-07 15:34:09 +0200139 files:
Anas Nashifd9250b12021-09-15 17:21:15 -0400140 - arch/arm/
141 - arch/arm/core/offsets/
142 - include/arch/arm/aarch32/
143 - include/arch/arm/
Ioannis Glaropoulosa2bd2882020-04-07 15:34:09 +0200144 - tests/arch/arm/
145 labels:
146 - "area: ARM"
147
Carlo Caionefe0969c2021-03-02 09:03:55 +0100148ARM64 arch:
149 status: maintained
150 maintainers:
151 - carlocaione
152 collaborators:
153 - npitre
154 - ioannisg
Carlo Caione8eea9eb2021-05-12 09:47:23 +0200155 - povergoing
Carlo Caionefe0969c2021-03-02 09:03:55 +0100156 files:
Carlo Caionea43f3ba2021-03-26 15:22:59 +0100157 - arch/arm64/
158 - include/arch/arm64/
Carlo Caionefe0969c2021-03-02 09:03:55 +0100159 - tests/arch/arm64/
Carlo Caione8eea9eb2021-05-12 09:47:23 +0200160 - soc/arm64/
161 - boards/arm64/
Carlo Caionea43f3ba2021-03-26 15:22:59 +0100162 - dts/arm64/
Carlo Caionefe0969c2021-03-02 09:03:55 +0100163 labels:
164 - "area: ARM64"
165
Ioannis Glaropoulosa2bd2882020-04-07 15:34:09 +0200166Bluetooth:
167 status: maintained
168 maintainers:
169 - jhedberg
170 collaborators:
171 - joerchan
172 - Vudentz
Asbjørn Sæbø66f699b2021-03-04 16:17:11 +0100173 - Thalley
174 - asbjornsabo
Ioannis Glaropoulosa2bd2882020-04-07 15:34:09 +0200175 files:
176 - doc/reference/bluetooth/
177 - doc/guides/bluetooth/
178 - drivers/bluetooth/
179 - include/bluetooth/
180 - include/drivers/bluetooth/
181 - samples/bluetooth/
Anas Nashifd9250b12021-09-15 17:21:15 -0400182 - subsys/bluetooth/
Anas Nashif3de9adb2020-12-19 23:15:40 -0500183 - subsys/bluetooth/common/
184 - subsys/bluetooth/host/
185 - subsys/bluetooth/services/
186 - subsys/bluetooth/shell/
Asbjørn Sæbø66f699b2021-03-04 16:17:11 +0100187 - subsys/bluetooth/audio/
Ioannis Glaropoulosa2bd2882020-04-07 15:34:09 +0200188 - tests/bluetooth/
189 labels:
190 - "area: Bluetooth"
191
192Bluetooth controller:
193 status: maintained
194 maintainers:
195 - cvinayak
196 collaborators:
197 - carlescufi
198 - thoh-ot
Andries Kruithof324ad242021-10-26 16:05:27 +0200199 - kruithofa
Ioannis Glaropoulosa2bd2882020-04-07 15:34:09 +0200200 files:
201 - subsys/bluetooth/controller/
Anas Nashifc7fc9cd2020-12-07 09:55:15 -0500202 labels:
203 - "area: Bluetooth Controller"
Ioannis Glaropoulosa2bd2882020-04-07 15:34:09 +0200204
205Bluetooth Mesh:
Ioannis Glaropoulosa2bd2882020-04-07 15:34:09 +0200206 status: maintained
207 maintainers:
Paul He1810cec2020-10-08 23:24:59 -0700208 - trond-snekvik
Ioannis Glaropoulosa2bd2882020-04-07 15:34:09 +0200209 collaborators:
210 - jhedberg
211 files:
212 - subsys/bluetooth/mesh/
213 - include/bluetooth/mesh/
Anas Nashif3de9adb2020-12-19 23:15:40 -0500214 - tests/bluetooth/mesh*/
Ioannis Glaropoulosa2bd2882020-04-07 15:34:09 +0200215 labels:
216 - "area: Bluetooth Mesh"
217
218Build system:
219 status: maintained
220 maintainers:
221 - tejlmand
222 collaborators:
223 - nashif
224 files:
225 - cmake/
Anas Nashif3de9adb2020-12-19 23:15:40 -0500226 - CMakeLists.txt
227 - scripts/zephyr_module.py
Anas Nashifcb67b2c2021-01-15 15:58:58 -0500228 - share/
Anas Nashif3de9adb2020-12-19 23:15:40 -0500229 - doc/guides/build/
230 - doc/guides/modules.rst
Ioannis Glaropoulosa2bd2882020-04-07 15:34:09 +0200231 labels:
232 - "area: Build System"
233
Stephanos Ioannidiscc128772021-06-12 23:54:39 +0900234"C++":
235 status: maintained
236 maintainers:
237 - stephanosio
238 collaborators:
239 - alexanderwachter
240 files:
241 - subsys/cpp/
242 - tests/subsys/cpp/
243 - samples/subsys/cpp/
244 labels:
245 - "area: C++"
246
Ioannis Glaropoulosa2bd2882020-04-07 15:34:09 +0200247C library:
Stephanos Ioannidis325e6cb2021-06-12 23:32:16 +0900248 status: maintained
249 maintainers:
250 - stephanosio
Ioannis Glaropoulosa2bd2882020-04-07 15:34:09 +0200251 collaborators:
252 - nashif
peng1 chen8779a9e2021-03-11 14:30:22 +0800253 - enjiamai
254 - KangJianX
Ioannis Glaropoulosa2bd2882020-04-07 15:34:09 +0200255 files:
256 - lib/libc/
257 - tests/lib/c_lib/
Stephanos Ioannidis325e6cb2021-06-12 23:32:16 +0900258 - tests/lib/newlib/
Ioannis Glaropoulosa2bd2882020-04-07 15:34:09 +0200259 labels:
260 - "area: C Library"
261
262CMSIS API layer:
263 status: orphaned
264 collaborators:
265 - nashif
266 files:
Anas Nashiff63c9b12021-03-26 09:55:30 -0400267 - subsys/portability/cmsis_rtos_v*/
268 - include/portability/cmsis*
269 - samples/subsys/portability/cmsis_rtos_v*/
270 - tests/subsys/portability/cmsis_rtos_v*/
Anas Nashifc7fc9cd2020-12-07 09:55:15 -0500271 labels:
272 - "area: Portability"
Ioannis Glaropoulosa2bd2882020-04-07 15:34:09 +0200273
Stephanos Ioannidis31457162021-06-12 23:47:20 +0900274CMSIS-DSP integration:
Anas Nashif5591ff52021-06-17 16:27:30 -0400275 status: maintained
Stephanos Ioannidis31457162021-06-12 23:47:20 +0900276 maintainers:
277 - stephanosio
278 collaborators:
279 - galak
280 - ioannisg
281 files:
282 - modules/Kconfig.cmsis_dsp
283 - tests/benchmarks/cmsis_dsp/
284 - tests/lib/cmsis_dsp/
285 labels:
286 - "area: CMSIS-DSP"
287
Ioannis Glaropoulosa2bd2882020-04-07 15:34:09 +0200288Common arch:
Martí Bolívar08c35aa2021-04-27 13:15:39 -0700289 status: orphaned
Anas Nashifebaf5872021-02-02 08:55:53 -0500290 collaborators:
291 - dcpleung
292 - nashif
Ioannis Glaropoulosa2bd2882020-04-07 15:34:09 +0200293 files:
294 - arch/common/
295 - include/arch/common/
296 labels:
297 - "area: Architectures"
298
299Console:
Ioannis Glaropoulosa2bd2882020-04-07 15:34:09 +0200300 status: maintained
301 maintainers:
302 - pfalcon
303 files:
304 - include/console/
305 - subsys/console/
306 labels:
307 - "area: Console"
308
309Debug:
310 status: maintained
311 maintainers:
312 - nashif
Anas Nashif3de9adb2020-12-19 23:15:40 -0500313 collaborators:
314 - dcpleung
peng1 chen8779a9e2021-03-11 14:30:22 +0800315 - chen-png
Ioannis Glaropoulosa2bd2882020-04-07 15:34:09 +0200316 files:
317 - include/debug/
318 - subsys/debug/
Anas Nashif3de9adb2020-12-19 23:15:40 -0500319 - tests/subsys/debug/
Ioannis Glaropoulosa2bd2882020-04-07 15:34:09 +0200320 labels:
321 - "area: Debugging"
322
Anas Nashif3de9adb2020-12-19 23:15:40 -0500323Device Driver Model:
324 status: maintained
325 maintainers:
326 - tbursztyka
327 collaborators:
328 - dcpleung
329 - nashif
330 files:
331 - include/device.h
332 - kernel/device.c
333 - include/init.h
334 - tests/kernel/device/
335 - doc/reference/drivers/
336 labels:
337 - "area: Device Model"
338
Ioannis Glaropoulosa2bd2882020-04-07 15:34:09 +0200339DFU:
340 status: maintained
341 maintainers:
342 - nvlsianpu
343 files:
344 - include/dfu/
345 - subsys/dfu/
346 - tests/subsys/dfu/
Anas Nashifc7fc9cd2020-12-07 09:55:15 -0500347 labels:
348 - "area: DFU"
Ioannis Glaropoulosa2bd2882020-04-07 15:34:09 +0200349
350Devicetree:
351 status: maintained
352 maintainers:
353 - galak
354 collaborators:
355 - mbolivar-nordic
356 files:
357 - scripts/dts/
358 - dts/bindings/
359 - dts/common/
Anas Nashif3de9adb2020-12-19 23:15:40 -0500360 - tests/lib/devicetree/
361 - dts/bindings/test/
362 - doc/guides/dts/
Anas Nashifebaf5872021-02-02 08:55:53 -0500363 - include/devicetree/
Ioannis Glaropoulosa2bd2882020-04-07 15:34:09 +0200364 labels:
Anas Nashif3de9adb2020-12-19 23:15:40 -0500365 - "area: Devicetree"
Ioannis Glaropoulosa2bd2882020-04-07 15:34:09 +0200366
367Disk:
Johann Fischer8c1e75c2021-03-24 16:47:05 +0100368 status: maintained
369 maintainers:
370 - jfischer-no
Ioannis Glaropoulosa2bd2882020-04-07 15:34:09 +0200371 files:
Johann Fischer8c1e75c2021-03-24 16:47:05 +0100372 - include/storage/disk_access.h
373 - include/drivers/disk.h
374 - drivers/disk/
Ioannis Glaropoulosa2bd2882020-04-07 15:34:09 +0200375 - subsys/disk/
Ioannis Glaropoulosa2bd2882020-04-07 15:34:09 +0200376 labels:
377 - "area: Disk Access"
378
379Display drivers:
380 status: maintained
381 maintainers:
382 - vanwinkeljan
383 collaborators:
Johann Fischer591740b2020-11-16 00:04:08 +0100384 - jfischer-no
Gerard Marull-Paretas4addbe42021-10-14 17:18:54 +0200385 - gmarull
Ioannis Glaropoulosa2bd2882020-04-07 15:34:09 +0200386 files:
387 - drivers/display/
388 - dts/bindings/display/
389 - include/drivers/display.h
390 - include/display/
391 - include/drivers/display.h
392 - lib/gui/
393 - subsys/fb/
Anas Nashifd9250b12021-09-15 17:21:15 -0400394 - samples/subsys/display/
Ioannis Glaropoulosa2bd2882020-04-07 15:34:09 +0200395 labels:
396 - "area: Display"
397
398Documentation:
Ioannis Glaropoulosa2bd2882020-04-07 15:34:09 +0200399 status: maintained
400 maintainers:
401 - carlescufi
402 collaborators:
403 - nashif
Anas Nashif3de9adb2020-12-19 23:15:40 -0500404 - utzig
Martí Bolívar62153532021-04-27 13:16:06 -0700405 - mbolivar-nordic
Gerard Marull-Paretas4addbe42021-10-14 17:18:54 +0200406 - gmarull
Ioannis Glaropoulosa2bd2882020-04-07 15:34:09 +0200407 files:
Anas Nashifd9250b12021-09-15 17:21:15 -0400408 - doc/
409 - doc/_static/
410 - doc/_templates/
411 - doc/_doxygen/
412 - doc/_scripts/
Anas Nashif3de9adb2020-12-19 23:15:40 -0500413 - README.rst
Anas Nashifd9250b12021-09-15 17:21:15 -0400414 - doc/Makefile
Ioannis Glaropoulosa2bd2882020-04-07 15:34:09 +0200415 labels:
416 - "area: Documentation"
417
418"Drivers: ADC":
Ioannis Glaropoulosa2bd2882020-04-07 15:34:09 +0200419 status: maintained
420 maintainers:
421 - anangl
422 files:
423 - drivers/adc/
424 - include/drivers/adc.h
425 - tests/drivers/adc/
Anas Nashif3de9adb2020-12-19 23:15:40 -0500426 - samples/drivers/adc/
Ioannis Glaropoulosa2bd2882020-04-07 15:34:09 +0200427 labels:
428 - "area: ADC"
429
430"Drivers: Audio":
431 status: maintained
432 maintainers:
Anas Nashif3de9adb2020-12-19 23:15:40 -0500433 - andyross
434 collaborators:
435 - nashif
436 - lyakh
437 - lgirdwood
peng1 chen8779a9e2021-03-11 14:30:22 +0800438 - mengxianglinx
Marc Herbert1ef19a82021-11-02 11:06:20 -0700439 - marc-hb
Ioannis Glaropoulosa2bd2882020-04-07 15:34:09 +0200440 files:
441 - drivers/audio/
442 - include/audio/
Anas Nashifd9250b12021-09-15 17:21:15 -0400443 - samples/subsys/audio/
Anas Nashifc7fc9cd2020-12-07 09:55:15 -0500444 labels:
445 - "area: Audio"
Ioannis Glaropoulosa2bd2882020-04-07 15:34:09 +0200446
447"Drivers: CAN":
448 status: maintained
449 maintainers:
450 - alexanderwachter
451 collaborators:
452 - henrikbrixandersen
453 - karstenkoenig
Alexander Wachtera0905ef2021-04-14 17:34:16 +0200454 - nixward
455 - martinjaeger
456 - legoabram
Ioannis Glaropoulosa2bd2882020-04-07 15:34:09 +0200457 files:
458 - drivers/can/
Anas Nashif3de9adb2020-12-19 23:15:40 -0500459 - include/canbus/
460 - subsys/canbus/
461 - subsys/net/l2/canbus/
462 - tests/subsys/canbus/
Ioannis Glaropoulosa2bd2882020-04-07 15:34:09 +0200463 - dts/bindings/can/
464 - include/drivers/can.h
Yasushi SHOJI0dc18752020-08-13 15:53:00 +0900465 - samples/drivers/can/
Ioannis Glaropoulosa2bd2882020-04-07 15:34:09 +0200466 - tests/drivers/can/
Anas Nashif3de9adb2020-12-19 23:15:40 -0500467 - samples/subsys/canbus/
Anas Nashifcb67b2c2021-01-15 15:58:58 -0500468 - doc/reference/networking/can_api.rst
Henrik Brix Andersen3c6177a2021-10-27 15:21:21 +0200469 - modules/canopennode/
470 - samples/modules/canopennode/
Ioannis Glaropoulosa2bd2882020-04-07 15:34:09 +0200471 labels:
472 - "area: CAN"
473
474"Drivers: Clock control":
Ioannis Glaropoulosa2bd2882020-04-07 15:34:09 +0200475 status: maintained
476 maintainers:
477 - nordic-krch
478 files:
479 - drivers/clock_control/
480 - dts/bindings/clock/
481 - include/drivers/clock_control.h
482 - include/dt-bindings/clock/
483 - tests/drivers/clock_control/
484 labels:
485 - "area: Clock control"
486
487"Drivers: Console":
488 status: orphaned
489 collaborators:
490 - pfalcon
491 files:
492 - drivers/console/
493 - include/drivers/console/
494 - tests/drivers/console/
495 labels:
496 - "area: Console"
497
498"Drivers: Counter":
499 status: maintained
500 maintainers:
501 - nordic-krch
502 files:
503 - drivers/counter/
504 - include/drivers/counter.h
505 - tests/drivers/counter/
506 labels:
507 - "area: Counter"
508
509"Drivers: Crypto":
510 status: orphaned
511 files:
512 - drivers/crypto/
513 - dts/bindings/crypto/
514 - include/crypto/
515 - samples/drivers/crypto/
516 labels:
517 - "area: Crypto / RNG"
518
519"Drivers: DAC":
Ioannis Glaropoulosa2bd2882020-04-07 15:34:09 +0200520 status: maintained
521 maintainers:
522 - martinjaeger
523 files:
524 - drivers/dac/
525 - include/drivers/dac.h
526 - tests/drivers/dac/
Anas Nashif3de9adb2020-12-19 23:15:40 -0500527 - samples/drivers/dac/
Ioannis Glaropoulosa2bd2882020-04-07 15:34:09 +0200528 labels:
529 - "area: DAC"
530
531"Drivers: DMA":
532 status: orphaned
533 files:
534 - drivers/dma/
Ioannis Glaropoulosa2bd2882020-04-07 15:34:09 +0200535 - tests/drivers/dma/
536 labels:
537 - "area: DMA"
538
539"Drivers: EEPROM":
Ioannis Glaropoulosa2bd2882020-04-07 15:34:09 +0200540 status: maintained
541 maintainers:
542 - henrikbrixandersen
543 files:
544 - drivers/eeprom/
545 - dts/bindings/mtd/*eeprom*
546 - include/drivers/eeprom.h
Henrik Brix Andersenc16d7f12021-06-18 13:32:57 +0200547 - samples/drivers/eeprom/
Ioannis Glaropoulosa2bd2882020-04-07 15:34:09 +0200548 - tests/drivers/eeprom/
549 labels:
550 - "area: EEPROM"
551
552"Drivers: Entropy":
Ioannis Glaropoulosa2bd2882020-04-07 15:34:09 +0200553 status: maintained
554 maintainers:
555 - ceolin
556 files:
557 - drivers/entropy/
558 - include/drivers/entropy.h
Ioannis Glaropoulosa2bd2882020-04-07 15:34:09 +0200559 - tests/drivers/entropy/
Anas Nashifc7fc9cd2020-12-07 09:55:15 -0500560 labels:
561 - "area: Crypto / RNG"
Ioannis Glaropoulosa2bd2882020-04-07 15:34:09 +0200562
563"Drivers: ESPI":
Anas Nashif3de9adb2020-12-19 23:15:40 -0500564 status: maintained
565 maintainers:
566 - albertofloyd
567 collaborators:
568 - VenkatKotakonda
569 - scottwcpg
Ioannis Glaropoulosa2bd2882020-04-07 15:34:09 +0200570 files:
571 - drivers/espi/
572 - include/drivers/espi.h
573 - samples/drivers/espi/
574 labels:
Anas Nashifc7fc9cd2020-12-07 09:55:15 -0500575 - "area: eSPI"
Ioannis Glaropoulosa2bd2882020-04-07 15:34:09 +0200576
577"Drivers: Ethernet":
578 status: maintained
579 maintainers:
580 - tbursztyka
581 collaborators:
Ioannis Glaropoulosa2bd2882020-04-07 15:34:09 +0200582 - pfalcon
583 files:
584 - drivers/ethernet/
585 labels:
586 - "area: Ethernet"
587
588"Drivers: Flash":
589 status: maintained
590 maintainers:
591 - nvlsianpu
592 files:
593 - drivers/flash/
594 - dts/bindings/flash_controller/
595 - include/drivers/flash.h
596 - samples/drivers/flash_shell/
Anas Nashif3de9adb2020-12-19 23:15:40 -0500597 - tests/drivers/flash/
Ioannis Glaropoulosa2bd2882020-04-07 15:34:09 +0200598 labels:
599 - "area: Flash"
600
601"Drivers: GPIO":
602 status: maintained
603 maintainers:
604 - mnkp
605 files:
606 - doc/reference/peripherals/gpio.rst
607 - drivers/gpio/
608 - include/drivers/gpio/
609 - include/drivers/gpio.h
610 - include/dt-bindings/gpio/
611 - tests/drivers/gpio/
Ioannis Glaropoulosa2bd2882020-04-07 15:34:09 +0200612 labels:
613 - "area: GPIO"
614
615"Drivers: HW Info":
Ioannis Glaropoulosa2bd2882020-04-07 15:34:09 +0200616 status: maintained
617 maintainers:
618 - alexanderwachter
619 files:
620 - drivers/hwinfo/
621 - dts/bindings/hwinfo/
622 - include/drivers/hwinfo.h
623 - tests/drivers/hwinfo/
624 labels:
625 - "area: HWINFO"
626
627"Drivers: I2C":
Peter A. Bigot6f90d3f2021-03-17 08:52:46 -0500628 status: orphaned
Ioannis Glaropoulosa2bd2882020-04-07 15:34:09 +0200629 files:
630 - drivers/i2c/
631 - dts/bindings/i2c/
632 - include/drivers/i2c.h
Ioannis Glaropoulosa2bd2882020-04-07 15:34:09 +0200633 labels:
634 - "area: I2C"
635
636"Drivers: I2S":
Ioannis Glaropoulosa2bd2882020-04-07 15:34:09 +0200637 status: maintained
638 maintainers:
639 - anangl
640 files:
641 - doc/reference/audio/i2s.rst
642 - drivers/i2s/
643 - dts/bindings/i2s/
644 - include/drivers/i2s.h
645 - tests/drivers/i2s/
646 labels:
647 - "area: I2S"
648
649"Drivers: IEEE 802.15.4":
650 status: maintained
651 maintainers:
652 - tbursztyka
653 collaborators:
Jukka Rissanen3eb4ea22021-06-16 18:18:40 +0300654 - rlubos
Ioannis Glaropoulosa2bd2882020-04-07 15:34:09 +0200655 files:
656 - drivers/ieee802154/
Anas Nashifc7fc9cd2020-12-07 09:55:15 -0500657 labels:
658 - "area: IEEE 802.15.4"
Ioannis Glaropoulosa2bd2882020-04-07 15:34:09 +0200659
660"Drivers: Interrupt controllers":
661 status: orphaned
662 files:
663 - drivers/interrupt_controller/
664 - dts/bindings/interrupt-controller/
665 - include/drivers/interrupt_controller/
666 - include/dt-bindings/interrupt-controller/
Anas Nashifc7fc9cd2020-12-07 09:55:15 -0500667 labels:
668 - "area: Interrupt Controller"
Ioannis Glaropoulosa2bd2882020-04-07 15:34:09 +0200669
670"Drivers: IPM":
671 status: maintained
Anas Nashifebaf5872021-02-02 08:55:53 -0500672 collaborators:
673 - dcpleung
Ioannis Glaropoulosa2bd2882020-04-07 15:34:09 +0200674 files:
675 - drivers/ipm/
676 description: >-
677 Inter-processor mailboxes
Anas Nashifc7fc9cd2020-12-07 09:55:15 -0500678 labels:
679 - "area: IPM"
Ioannis Glaropoulosa2bd2882020-04-07 15:34:09 +0200680
681"Drivers: kscan":
Anas Nashif3b542682021-03-26 09:11:53 -0400682 status: maintained
683 maintainers:
684 - albertofloyd
685 collaborators:
686 - VenkatKotakonda
Gerard Marull-Paretas4addbe42021-10-14 17:18:54 +0200687 - gmarull
Ioannis Glaropoulosa2bd2882020-04-07 15:34:09 +0200688 files:
689 - drivers/kscan/
690 - include/drivers/kscan.h
691 - samples/drivers/espi/
692 - tests/drivers/kscan/
Anas Nashifc7fc9cd2020-12-07 09:55:15 -0500693 labels:
694 - "area: Kscan"
Ioannis Glaropoulosa2bd2882020-04-07 15:34:09 +0200695
696"Drivers: LED":
Ioannis Glaropoulosa2bd2882020-04-07 15:34:09 +0200697 status: maintained
698 maintainers:
699 - Mani-Sadhasivam
700 files:
701 - drivers/led/
702 - include/drivers/led/
703 - include/drivers/led.h
704 - samples/drivers/led_*/
705 labels:
706 - "area: LED"
707
708"Drivers: LED Strip":
709 status: maintained
710 maintainers:
711 - mbolivar-nordic
712 files:
713 - drivers/led_strip/
714 - dts/bindings/led_strip/
715 - include/drivers/led_strip.h
Anas Nashifc7fc9cd2020-12-07 09:55:15 -0500716 labels:
717 - "area: LED"
Ioannis Glaropoulosa2bd2882020-04-07 15:34:09 +0200718
719"Drivers: lora":
Ioannis Glaropoulosa2bd2882020-04-07 15:34:09 +0200720 status: maintained
721 maintainers:
722 - Mani-Sadhasivam
Manivannan Sadhasivamdfe8aba2021-02-28 20:16:05 +0530723 collaborators:
724 - mniestroj
Ioannis Glaropoulosa2bd2882020-04-07 15:34:09 +0200725 files:
726 - drivers/lora/
727 - include/drivers/lora.h
728 - samples/drivers/lora/
Anas Nashif3de9adb2020-12-19 23:15:40 -0500729 - include/lorawan/
730 - subsys/lorawan/
Anas Nashifd9250b12021-09-15 17:21:15 -0400731 - samples/subsys/lorawan/
Anas Nashifc7fc9cd2020-12-07 09:55:15 -0500732 labels:
733 - "area: LoRa"
Ioannis Glaropoulosa2bd2882020-04-07 15:34:09 +0200734
735"Drivers: Modem":
Ryan Ericksonac029cf2021-09-20 09:59:06 -0500736 status: maintained
737 maintainers:
738 - rerickson1
Ioannis Glaropoulosa2bd2882020-04-07 15:34:09 +0200739 files:
740 - drivers/modem/
741 labels:
742 - "area: Modem"
743
Anas Nashifc7fc9cd2020-12-07 09:55:15 -0500744"Drivers: Neural Networks":
Ioannis Glaropoulosa2bd2882020-04-07 15:34:09 +0200745 status: orphaned
Anas Nashif3b542682021-03-26 09:11:53 -0400746 collaborators:
747 - nashif
Ioannis Glaropoulosa2bd2882020-04-07 15:34:09 +0200748 files:
749 - drivers/neural_net/
Anas Nashifc7fc9cd2020-12-07 09:55:15 -0500750 labels:
751 - "area: Neural Networks"
Ioannis Glaropoulosa2bd2882020-04-07 15:34:09 +0200752
753"Drivers: PCI":
754 status: maintained
755 maintainers:
756 - dcpleung
757 collaborators:
Anas Nashifebaf5872021-02-02 08:55:53 -0500758 - jhedberg
759 - finikorg
760 - tbursztyka
Ioannis Glaropoulosa2bd2882020-04-07 15:34:09 +0200761 files:
762 - drivers/pcie/
763 - include/drivers/pcie/
764 labels:
765 - "area: PCI"
766
Anas Nashifc7fc9cd2020-12-07 09:55:15 -0500767"Drivers: PECI":
Anas Nashif3b542682021-03-26 09:11:53 -0400768 status: maintained
769 maintainers:
770 - albertofloyd
771 collaborators:
772 - VenkatKotakonda
Ioannis Glaropoulosa2bd2882020-04-07 15:34:09 +0200773 files:
774 - drivers/peci/
775 - include/drivers/peci.h
776 - samples/drivers/peci/
Anas Nashifc7fc9cd2020-12-07 09:55:15 -0500777 labels:
778 - "area: PECI"
Ioannis Glaropoulosa2bd2882020-04-07 15:34:09 +0200779
780"Drivers: Pinmux":
781 status: maintained
782 maintainers:
783 - mnkp
Gerard Marull-Paretas4addbe42021-10-14 17:18:54 +0200784 collaborators:
785 - gmarull
Ioannis Glaropoulosa2bd2882020-04-07 15:34:09 +0200786 files:
787 - doc/reference/peripherals/pinmux.rst
788 - drivers/pinmux/
789 - include/drivers/pinmux.h
790 labels:
791 - "area: Pinmux"
792
793"Drivers: PTP Clock":
Ioannis Glaropoulosa2bd2882020-04-07 15:34:09 +0200794 status: maintained
795 maintainers:
Jukka Rissanen3eb4ea22021-06-16 18:18:40 +0300796 - tbursztyka
Ioannis Glaropoulosa2bd2882020-04-07 15:34:09 +0200797 files:
798 - drivers/ptp_clock/
Kumar Gala0bb46652021-03-24 08:53:53 -0500799 - include/drivers/ptp_clock.h
Anas Nashifc7fc9cd2020-12-07 09:55:15 -0500800 labels:
801 - "area: Clocks"
Ioannis Glaropoulosa2bd2882020-04-07 15:34:09 +0200802
Carlo Caione0f940622021-03-01 08:57:15 +0100803"Drivers: PM CPU ops":
Carlo Caione57f7e312020-12-19 15:52:48 +0100804 status: maintained
805 maintainers:
806 - carlocaione
807 files:
Carlo Caione0f940622021-03-01 08:57:15 +0100808 - drivers/pm_cpu_ops/
809 - include/drivers/pm_cpu_ops/
810 - include/drivers/pm_cpu_ops.h
Anas Nashifd9250b12021-09-15 17:21:15 -0400811 - include/arch/arm64/arm-smccc.h
Carlo Caione57f7e312020-12-19 15:52:48 +0100812 labels:
Carlo Caione0f940622021-03-01 08:57:15 +0100813 - "area: PM CPU ops"
Carlo Caione57f7e312020-12-19 15:52:48 +0100814
Ioannis Glaropoulosa2bd2882020-04-07 15:34:09 +0200815"Drivers: PWM":
Ioannis Glaropoulosa2bd2882020-04-07 15:34:09 +0200816 status: maintained
817 maintainers:
818 - anangl
Henrik Brix Andersen9259fb42020-12-27 16:50:14 +0100819 collaborators:
820 - henrikbrixandersen
Gerard Marull-Paretas4addbe42021-10-14 17:18:54 +0200821 - gmarull
Ioannis Glaropoulosa2bd2882020-04-07 15:34:09 +0200822 files:
823 - drivers/pwm/
824 - dts/bindings/pwm/
Ioannis Glaropoulosa2bd2882020-04-07 15:34:09 +0200825 - tests/drivers/pwm/
Anas Nashifebaf5872021-02-02 08:55:53 -0500826 - include/*/pwms.h
Ioannis Glaropoulosa2bd2882020-04-07 15:34:09 +0200827 labels:
828 - "area: PWM"
829
830"Drivers: Serial/UART":
831 status: maintained
832 maintainers:
833 - dcpleung
834 files:
835 - drivers/serial/
Anas Nashif3de9adb2020-12-19 23:15:40 -0500836 - include/drivers/uart.h
837 - include/drivers/uart/
Ioannis Glaropoulosa2bd2882020-04-07 15:34:09 +0200838 - dts/bindings/serial/
Anas Nashif3de9adb2020-12-19 23:15:40 -0500839 - tests/drivers/uart/
Ioannis Glaropoulosa2bd2882020-04-07 15:34:09 +0200840 labels:
841 - "area: UART"
842
843"Drivers: Sensors":
844 status: maintained
845 maintainers:
846 - MaureenHelm
847 collaborators:
848 - avisconti
Gerard Marull-Paretas4addbe42021-10-14 17:18:54 +0200849 - gmarull
Tom Burdick9cb94df2021-10-20 09:01:08 -0500850 - teburd
Ioannis Glaropoulosa2bd2882020-04-07 15:34:09 +0200851 files:
852 - drivers/sensor/
853 - include/drivers/sensor.h
854 - samples/sensor/
Anas Nashif3de9adb2020-12-19 23:15:40 -0500855 - tests/drivers/sensor/
856 - dts/bindings/sensor/
Ioannis Glaropoulosa2bd2882020-04-07 15:34:09 +0200857 labels:
858 - "area: Sensors"
859
860"Drivers: SPI":
861 status: maintained
862 maintainers:
863 - tbursztyka
864 files:
865 - drivers/spi/
866 - include/drivers/spi.h
867 - tests/drivers/spi/
868 labels:
869 - "area: SPI"
870
871"Drivers: System timer":
872 status: maintained
873 maintainers:
874 - andyross
peng1 chen8779a9e2021-03-11 14:30:22 +0800875 collaborators:
876 - KangJianX
Ioannis Glaropoulosa2bd2882020-04-07 15:34:09 +0200877 files:
878 - drivers/timer/
879 - include/drivers/timer/
880 labels:
881 - "area: Timer"
882
883"Drivers: video":
884 status: orphaned
885 collaborators:
886 - loicpoulain
887 files:
888 - drivers/video/
889 - include/drivers/video.h
890 - include/drivers/video-controls.h
891 labels:
892 - "area: Video"
893
894"Drivers: Watchdog":
895 status: orphaned
Katsuhiro Suzuki302db102020-12-02 11:11:40 +0900896 collaborators:
897 - katsuster
Ioannis Glaropoulosa2bd2882020-04-07 15:34:09 +0200898 files:
899 - doc/reference/peripherals/watchdog.rst
900 - drivers/watchdog/
901 - dts/bindings/watchdog/
902 - include/drivers/watchdog.h
903 - samples/drivers/watchdog/
904 - tests/drivers/watchdog/
905 labels:
906 - "area: Watchdog"
907
908"Drivers: WiFi":
909 status: maintained
910 maintainers:
911 - tbursztyka
912 collaborators:
Jukka Rissanen3eb4ea22021-06-16 18:18:40 +0300913 - rlubos
Nicolai Glud8c4090c2020-10-08 10:38:09 +0200914 - kludentwo
Ioannis Glaropoulosa2bd2882020-04-07 15:34:09 +0200915 files:
916 - drivers/wifi/
917 labels:
918 - "area: Wifi"
919
920"Drivers: WiFi es-WiFi":
921 status: orphaned
922 collaborators:
923 - loicpoulain
924 files:
925 - drivers/wifi/eswifi/
926 description: >-
927 Inventek es-WiFi
928
Anas Nashifc7fc9cd2020-12-07 09:55:15 -0500929 labels:
930 - "area: Wifi"
931
Ioannis Glaropoulosa2bd2882020-04-07 15:34:09 +0200932Filesystems:
Ioannis Glaropoulosa2bd2882020-04-07 15:34:09 +0200933 status: maintained
934 maintainers:
935 - nvlsianpu
936 collaborators:
937 - de-nordic
938 - Laczen
939 - nashif
Ioannis Glaropoulosa2bd2882020-04-07 15:34:09 +0200940 - vanwinkeljan
Ioannis Glaropoulosa2bd2882020-04-07 15:34:09 +0200941 files:
942 - include/fs/
943 - samples/subsys/fs/
944 - subsys/fs/
945 - tests/subsys/fs/
946 labels:
947 - "area: File System"
948
Carlo Caionea7b119f2021-09-27 10:17:55 +0200949IPC:
950 status: maintained
951 maintainers:
952 - carlocaione
953 - arnopo
954 files:
955 - include/ipc/
956 - samples/subsys/ipc/
957 - subsys/ipc/
958 description: >-
959 Inter-Processor Communication
960 labels:
961 - "area: IPC"
962
Ioannis Glaropoulosa2bd2882020-04-07 15:34:09 +0200963JSON Web Token:
964 status: orphaned
965 collaborators:
966 - mrfuchs
Ramiro Merello324374d2021-09-14 23:29:42 -0400967 - sir-branch
Ioannis Glaropoulosa2bd2882020-04-07 15:34:09 +0200968 files:
969 - subsys/jwt/
Ramiro Merello324374d2021-09-14 23:29:42 -0400970 - include/data/
971 - lib/os/json.c
Anas Nashifc7fc9cd2020-12-07 09:55:15 -0500972 labels:
973 - "area: JSON"
974
Ioannis Glaropoulosa2bd2882020-04-07 15:34:09 +0200975Kconfig:
Ioannis Glaropoulosa2bd2882020-04-07 15:34:09 +0200976 status: orphaned
Anas Nashif3b542682021-03-26 09:11:53 -0400977 collaborators:
978 - tejlmand
979 - nashif
Ioannis Glaropoulosa2bd2882020-04-07 15:34:09 +0200980 files:
981 - scripts/kconfig/
Anas Nashifd9250b12021-09-15 17:21:15 -0400982 - doc/guides/build/kconfig/
Ioannis Glaropoulosa2bd2882020-04-07 15:34:09 +0200983 labels:
984 - "area: Kconfig"
985 description: >-
986 See https://docs.zephyrproject.org/latest/guides/kconfig/index.html and
987 https://docs.zephyrproject.org/latest/guides/porting/board_porting.html#default-board-configuration
988
989Kernel:
990 status: maintained
991 maintainers:
992 - andyross
993 collaborators:
Anas Nashifebaf5872021-02-02 08:55:53 -0500994 - nashif
995 - ceolin
996 - dcpleung
Anas Nashif5fad40e2021-09-16 07:02:20 -0400997 - peter-mitsis
Ioannis Glaropoulosa2bd2882020-04-07 15:34:09 +0200998 files:
999 - doc/reference/kernel/
1000 - include/kernel*.h
1001 - kernel/
1002 - tests/kernel/
Anas Nashif3de9adb2020-12-19 23:15:40 -05001003 - include/sys_clock.h
Ioannis Glaropoulosa2bd2882020-04-07 15:34:09 +02001004 labels:
1005 - "area: Kernel"
1006
Anas Nashif3de9adb2020-12-19 23:15:40 -05001007Base OS:
1008 status: maintained
1009 maintainers:
1010 - andyross
1011 collaborators:
Anas Nashifebaf5872021-02-02 08:55:53 -05001012 - dcpleung
Anas Nashif3de9adb2020-12-19 23:15:40 -05001013 - nashif
1014 files:
1015 - include/sys/
1016 - lib/os/
1017 labels:
1018 - "area: Base OS"
1019
Ioannis Glaropoulosa2bd2882020-04-07 15:34:09 +02001020Little FS:
Peter A. Bigot6f90d3f2021-03-17 08:52:46 -05001021 status: orphaned
Ioannis Glaropoulosa2bd2882020-04-07 15:34:09 +02001022 files:
1023 - subsys/fs/Kconfig.littlefs
1024 - subsys/fs/littlefs_fs.c
Yasushi SHOJI0dc18752020-08-13 15:53:00 +09001025 - tests/subsys/fs/littlefs/
Ioannis Glaropoulosa2bd2882020-04-07 15:34:09 +02001026 description: >-
1027 Little FS
Anas Nashifc7fc9cd2020-12-07 09:55:15 -05001028 labels:
1029 - "area: File System"
1030
Ioannis Glaropoulosa2bd2882020-04-07 15:34:09 +02001031Logging:
1032 status: maintained
1033 maintainers:
1034 - nordic-krch
peng1 chen8779a9e2021-03-11 14:30:22 +08001035 collaborators:
1036 - chen-png
Ioannis Glaropoulosa2bd2882020-04-07 15:34:09 +02001037 files:
1038 - include/logging/
1039 - samples/subsys/logging/
1040 - subsys/logging/
1041 - tests/subsys/logging/
1042 labels:
1043 - "area: Logging"
1044
1045MAINTAINERS file:
Ioannis Glaropoulosa2bd2882020-04-07 15:34:09 +02001046 status: maintained
1047 maintainers:
1048 - MaureenHelm
1049 collaborators:
1050 - ioannisg
Anas Nashif3b542682021-03-26 09:11:53 -04001051 - nashif
Ioannis Glaropoulosa2bd2882020-04-07 15:34:09 +02001052 files:
1053 - MAINTAINERS.yml
1054 labels:
1055 - "area: Process"
1056 description: >-
1057 Zephyr Maintainers File
1058
David Brown365853a2021-10-19 09:35:47 -06001059Mbed TLS:
1060 status: maintained
1061 maintainers:
1062 - d3zd3z
1063 - ceolin
1064 files:
1065 - modules/mbedtls/
1066 - tests/crypto/mbedtls/
1067 labels:
1068 - "area: Crypto / RNG"
1069 description: >-
1070 Mbed TLS module implementing the PSA Crypto API and TLS.
1071
Ioannis Glaropoulosa2bd2882020-04-07 15:34:09 +02001072MCU Manager:
Ioannis Glaropoulosa2bd2882020-04-07 15:34:09 +02001073 status: maintained
1074 maintainers:
1075 - de-nordic
Jamie McCraeb100faf2021-11-02 09:42:13 +00001076 collaborators:
1077 - lairdjm
Ioannis Glaropoulosa2bd2882020-04-07 15:34:09 +02001078 files:
Carles Cufic200b1c2020-07-30 18:01:18 +02001079 - subsys/mgmt/mcumgr/
1080 - include/mgmt/mcumgr/
1081 - samples/subsys/mgmt/mcumgr/
Ioannis Glaropoulosa2bd2882020-04-07 15:34:09 +02001082 labels:
1083 - "area: mcumgr"
1084
Siddharth Chandrasekaran2bdbf362020-09-09 09:05:45 +05301085OSDP:
Martí Bolívar08c35aa2021-04-27 13:15:39 -07001086 status: orphaned
Siddharth Chandrasekaran2bdbf362020-09-09 09:05:45 +05301087 collaborators:
Siddharth Chandrasekaran491fb7a2021-05-08 23:57:34 +02001088 - sidcha
Siddharth Chandrasekaran2bdbf362020-09-09 09:05:45 +05301089 files:
1090 - subsys/mgmt/osdp/
1091 - include/mgmt/osdp.h
1092 - samples/subsys/mgmt/osdp/
1093 labels:
1094 - "area: OSDP"
1095
Yong Cong Sin87400402021-10-02 15:59:01 +08001096hawkBit:
1097 status: orphaned
1098 collaborators:
1099 - ycsin
1100 files:
1101 - subsys/mgmt/hawkbit/
1102 - include/mgmt/hawkbit.h
1103 - samples/subsys/mgmt/hawkbit/
1104 labels:
1105 - "area: hawkBit"
1106
Ioannis Glaropoulosa2bd2882020-04-07 15:34:09 +02001107Native POSIX and POSIX arch:
1108 status: maintained
1109 maintainers:
1110 - aescolar
1111 files:
1112 - arch/posix/
1113 - boards/posix/native_posix/
1114 - drivers/*/*native_posix*
1115 - drivers/*/*/*native_posix*
1116 - dts/posix/
1117 - include/arch/posix/
1118 - scripts/valgrind.supp
1119 - soc/posix/
1120 - tests/boards/native_posix/
1121 labels:
1122 - "area: native port"
1123 description: >-
1124 POSIX architecture and SOC, native_posix board, and related drivers
1125
1126Networking:
1127 status: maintained
1128 maintainers:
Jukka Rissanen3eb4ea22021-06-16 18:18:40 +03001129 - rlubos
Ioannis Glaropoulosa2bd2882020-04-07 15:34:09 +02001130 collaborators:
1131 - tbursztyka
1132 - pfalcon
peng1 chen8779a9e2021-03-11 14:30:22 +08001133 - mengxianglinx
Ioannis Glaropoulosa2bd2882020-04-07 15:34:09 +02001134 files:
1135 - drivers/net/
1136 - include/net/
1137 - samples/net/
1138 - subsys/net/
1139 files-exclude:
1140 - samples/net/sockets/coap_*/
1141 - samples/net/lwm2m_client/
1142 - subsys/net/lib/coap/
1143 - subsys/net/lib/lwm2m/
1144 - subsys/net/lib/openthread/
1145 - subsys/net/lib/tls_credentials/
1146 labels:
1147 - "area: Networking"
1148
1149"Networking: BSD sockets":
1150 status: maintained
1151 maintainers:
1152 - pfalcon
1153 collaborators:
Jukka Rissanen3eb4ea22021-06-16 18:18:40 +03001154 - rlubos
Ioannis Glaropoulosa2bd2882020-04-07 15:34:09 +02001155 files:
1156 - samples/net/sockets/
1157 - subsys/net/lib/sockets/
1158 - tests/net/socket/
1159 labels:
1160 - "area: Sockets"
1161
1162"Networking: Buffers":
1163 status: maintained
1164 maintainers:
1165 - jhedberg
1166 collaborators:
Jukka Rissanen3eb4ea22021-06-16 18:18:40 +03001167 - rlubos
Ioannis Glaropoulosa2bd2882020-04-07 15:34:09 +02001168 - tbursztyka
1169 files:
1170 - include/net/buf.h
1171 - subsys/net/buf.c
1172 - tests/net/buf/
Anas Nashifc7fc9cd2020-12-07 09:55:15 -05001173 labels:
1174 - "area: Networking"
1175
Ioannis Glaropoulosa2bd2882020-04-07 15:34:09 +02001176"Networking: CoAP":
Ioannis Glaropoulosa2bd2882020-04-07 15:34:09 +02001177 status: maintained
1178 maintainers:
1179 - rlubos
Pieter De Gendta891a6a2021-10-14 14:48:25 +02001180 collaborators:
1181 - pdgendt
Ioannis Glaropoulosa2bd2882020-04-07 15:34:09 +02001182 files:
1183 - subsys/net/lib/coap/
1184 - samples/net/sockets/coap_*/
1185 - tests/net/lib/coap/
Anas Nashifc7fc9cd2020-12-07 09:55:15 -05001186 labels:
1187 - "area: Networking"
Martí Bolívar584fed32021-04-27 13:15:07 -07001188
Ioannis Glaropoulosa2bd2882020-04-07 15:34:09 +02001189"Networking: LWM2M":
Ioannis Glaropoulosa2bd2882020-04-07 15:34:09 +02001190 status: maintained
1191 maintainers:
1192 - rlubos
Ioannis Glaropoulosa2bd2882020-04-07 15:34:09 +02001193 files:
1194 - samples/net/lwm2m_client/
1195 - subsys/net/lib/lwm2m/
1196 labels:
1197 - "area: LWM2M"
1198
1199"Networking: MQTT":
1200 status: maintained
1201 maintainers:
1202 - rlubos
Ioannis Glaropoulosa2bd2882020-04-07 15:34:09 +02001203 files:
1204 - subsys/net/lib/mqtt/
1205 - tests/net/lib/mqtt_packet/
1206 - samples/net/mqtt_publisher/
Anas Nashifc7fc9cd2020-12-07 09:55:15 -05001207 labels:
1208 - "area: Networking"
Ioannis Glaropoulosa2bd2882020-04-07 15:34:09 +02001209
Pieter De Gendtfabdd732021-10-14 14:46:34 +02001210"Networking: OpenThread":
1211 status: maintained
1212 maintainers:
1213 - rlubos
1214 collaborators:
1215 - pdgendt
1216 files:
1217 - subsys/net/l2/openthread/
1218 - subsys/net/lib/openthread/
1219 - samples/net/openthread/
1220 labels:
1221 - "area: Networking"
1222 - "area: OpenThread"
1223
Ioannis Glaropoulosa2bd2882020-04-07 15:34:09 +02001224NIOS-2 arch:
1225 status: maintained
1226 maintainers:
1227 - nashif
1228 files:
1229 - arch/nios2/
1230 - include/arch/nios2/
1231 labels:
1232 - "area: NIOS2"
1233
1234nRF52 BSIM:
1235 status: maintained
1236 maintainers:
1237 - aescolar
1238 files:
1239 - boards/posix/nrf52_bsim/
1240 labels:
1241 - "platform: nrf52_bsim"
1242
1243POSIX API layer:
Paul Sokolovskyc041a672020-11-03 13:24:14 +03001244 status: orphaned
1245 collaborators:
Ioannis Glaropoulosa2bd2882020-04-07 15:34:09 +02001246 - pfalcon
peng1 chen8779a9e2021-03-11 14:30:22 +08001247 - enjiamai
1248 - KangJianX
Ioannis Glaropoulosa2bd2882020-04-07 15:34:09 +02001249 files:
1250 - include/posix/
1251 - lib/posix/
1252 - tests/posix/
1253 labels:
1254 - "area: POSIX"
1255
1256Power management:
Ioannis Glaropoulosa2bd2882020-04-07 15:34:09 +02001257 status: maintained
1258 maintainers:
Anas Nashif3de9adb2020-12-19 23:15:40 -05001259 - ceolin
1260 collaborators:
1261 - nashif
peng1 chen8779a9e2021-03-11 14:30:22 +08001262 - mengxianglinx
Gerard Marull-Paretas4addbe42021-10-14 17:18:54 +02001263 - gmarull
Tom Burdick9cb94df2021-10-20 09:01:08 -05001264 - teburd
Ioannis Glaropoulosa2bd2882020-04-07 15:34:09 +02001265 files:
Gerard Marull-Paretas25bb1632021-04-29 13:32:28 +02001266 - include/pm/pm.h
Gerard Marull-Paretas605a3d12021-04-29 13:48:39 +02001267 - samples/subsys/pm/
Gerard Marull-Paretas99cbee32021-04-29 13:45:57 +02001268 - subsys/pm/
Gerard Marull-Paretasef915462021-04-29 13:58:03 +02001269 - tests/subsys/pm/
Ioannis Glaropoulosa2bd2882020-04-07 15:34:09 +02001270 labels:
1271 - "area: Power Management"
1272
1273RISCV arch:
Tomasz Gorochowik7accce32021-10-14 15:03:28 +02001274 status: maintained
1275 maintainers:
1276 - kgugala
1277 - pgielda
1278 - tgorochowik
Ioannis Glaropoulosa2bd2882020-04-07 15:34:09 +02001279 collaborators:
Tomasz Gorochowik7accce32021-10-14 15:03:28 +02001280 - fkokosinski
Ioannis Glaropoulosa2bd2882020-04-07 15:34:09 +02001281 - mgielda
Katsuhiro Suzukic9112fb2020-11-16 04:30:14 +09001282 - katsuster
Henrik Brix Andersen8b8fed92021-08-26 19:59:47 +02001283 - henrikbrixandersen
Ioannis Glaropoulosa2bd2882020-04-07 15:34:09 +02001284 files:
1285 - arch/riscv/
Katsuhiro Suzukia48d0b82020-11-18 12:35:52 +09001286 - boards/riscv/
1287 - dts/bindings/riscv/
Ioannis Glaropoulosa2bd2882020-04-07 15:34:09 +02001288 - include/arch/riscv/
Katsuhiro Suzukia48d0b82020-11-18 12:35:52 +09001289 - soc/riscv/
Ioannis Glaropoulosa2bd2882020-04-07 15:34:09 +02001290 labels:
1291 - "area: RISCV"
1292
Anas Nashif8b4cfcf2020-12-07 11:49:58 -05001293Twister:
Ioannis Glaropoulosa2bd2882020-04-07 15:34:09 +02001294 status: maintained
1295 maintainers:
1296 - nashif
peng1 chen8779a9e2021-03-11 14:30:22 +08001297 collaborators:
1298 - chen-png
Anas Nashifa9e48712021-03-10 14:48:04 -05001299 - galak
1300 - PerMac
1301 - enjiamai
1302 - hakehuang
Ioannis Glaropoulosa2bd2882020-04-07 15:34:09 +02001303 files:
Anas Nashif8b4cfcf2020-12-07 11:49:58 -05001304 - scripts/twister
Anas Nashif3de9adb2020-12-19 23:15:40 -05001305 - scripts/pylib/twister/
1306 - scripts/tests/twister/
Ioannis Glaropoulosa2bd2882020-04-07 15:34:09 +02001307 labels:
Anas Nashif8b4cfcf2020-12-07 11:49:58 -05001308 - "area: Twister"
Ioannis Glaropoulosa2bd2882020-04-07 15:34:09 +02001309
1310Settings:
1311 status: maintained
1312 maintainers:
1313 - nvlsianpu
1314 files:
1315 - include/settings/
1316 - subsys/settings/
1317 - tests/subsys/settings/
1318 labels:
1319 - "area: Settings"
1320
1321Shell:
1322 status: maintained
1323 maintainers:
1324 - jakub-uC
1325 collaborators:
1326 - carlescufi
1327 files:
1328 - include/shell/
1329 - samples/subsys/shell/
1330 - subsys/shell/
Ioannis Glaropoulosa2bd2882020-04-07 15:34:09 +02001331 - tests/subsys/shell/
1332 labels:
1333 - "area: Shell"
1334
1335Shields:
1336 status: maintained
1337 maintainers:
1338 - erwango
1339 collaborators:
1340 - avisconti
Johann Fischer591740b2020-11-16 00:04:08 +01001341 - jfischer-no
Ioannis Glaropoulosa2bd2882020-04-07 15:34:09 +02001342 files:
1343 - boards/shields/
Anas Nashif3de9adb2020-12-19 23:15:40 -05001344 - doc/guides/porting/shields.rst
Ioannis Glaropoulosa2bd2882020-04-07 15:34:09 +02001345 labels:
1346 - "area: Shields"
1347
Martin Åberg7faec882020-11-13 09:52:02 +01001348SPARC arch:
Martí Bolívar08c35aa2021-04-27 13:15:39 -07001349 status: orphaned
Martin Åberg7faec882020-11-13 09:52:02 +01001350 collaborators:
1351 - martin-aberg
1352 files:
1353 - arch/sparc/
1354 - include/arch/sparc/
1355 labels:
1356 - "area: SPARC"
1357
Keith Shortb5882212021-10-26 14:21:19 -06001358State machine framework:
1359 status: maintained
1360 maintainers:
1361 - sambhurst
1362 collaborators:
1363 - keith-zephyr
1364 files:
1365 - doc/guides/smf/
1366 - include/smf.h
1367 - lib/smf/
1368 - tests/lib/smf/
1369 labels:
1370 - "area: State Machine Framework"
1371
Anas Nashif3de9adb2020-12-19 23:15:40 -05001372Synopsys Platforms:
1373 status: maintained
1374 maintainers:
Anas Nashifa4632222021-10-01 09:42:46 -04001375 - ruuddw
Anas Nashif3de9adb2020-12-19 23:15:40 -05001376 collaborators:
1377 - abrodkin
1378 - evgeniy-paltsev
1379 - IRISZZW
1380 files:
1381 - soc/arc/
1382 - boards/arc/
1383 labels:
1384 - "platform: Synopsys"
1385
Mulin Chao47954a82021-07-19 23:57:15 -07001386Nuvoton_NPCX Platforms:
1387 status: maintained
1388 maintainers:
Anas Nashifebaf5872021-02-02 08:55:53 -05001389 - MulinChao
Mulin Chao6c3d4142021-02-22 17:23:58 -08001390 - ChiHuaL
1391 - WealianLiao
Mulin Chao47954a82021-07-19 23:57:15 -07001392 collaborators:
1393 - MulinChao
1394 - ChiHuaL
1395 - WealianLiao
1396 - sjg20
1397 - keith-zephyr
1398 - jackrosenthal
1399 - fabiobaltieri
1400 - yperess
Anas Nashifebaf5872021-02-02 08:55:53 -05001401 files:
Mulin Chao47954a82021-07-19 23:57:15 -07001402 - soc/arm/nuvoton_npcx/
Anas Nashifebaf5872021-02-02 08:55:53 -05001403 - boards/arm/npcx*/
1404 - dts/arm/nuvoton/
Mulin Chao47954a82021-07-19 23:57:15 -07001405 - dts/bindings/*/*npcx*
Anas Nashifd9250b12021-09-15 17:21:15 -04001406 - drivers/*/*_npcx*.c
Anas Nashifebaf5872021-02-02 08:55:53 -05001407 labels:
Mulin Chao47954a82021-07-19 23:57:15 -07001408 - "platform: Nuvoton_NPCX"
Anas Nashifebaf5872021-02-02 08:55:53 -05001409
Mulin Chao19991702021-08-04 18:50:27 -07001410Nuvoton_Numicro Platforms:
1411 status: orphaned
1412 collaborators:
1413 - ssekar15
1414 files:
1415 - soc/arm/nuvoton_numicro/
1416 - boards/arm/nuvoton_pfm*/
1417 - dts/arm/nuvoton/
1418 - dts/bindings/*/*numicro*
1419 - drivers/*/*_numicro*
1420 labels:
1421 - "platform: Nuvoton_Numicro"
1422
Anas Nashifebaf5872021-02-02 08:55:53 -05001423SiLabs Platforms:
Martí Bolívar08c35aa2021-04-27 13:15:39 -07001424 status: orphaned
Anas Nashifebaf5872021-02-02 08:55:53 -05001425 collaborators:
1426 - chrta
1427 files:
1428 - soc/arm/silabs_*/
1429 - boards/arm/ef*/
1430 - dts/arm/silabs/
1431 - dts/bindings/*/silabs*
1432 - drivers/*/*_gecko*
1433 labels:
1434 - "platform: SiLabs"
1435
Anas Nashif3de9adb2020-12-19 23:15:40 -05001436Intel Platforms (X86):
1437 status: maintained
1438 maintainers:
Anas Nashif5fad40e2021-09-16 07:02:20 -04001439 - enjiamai
Anas Nashif3de9adb2020-12-19 23:15:40 -05001440 collaborators:
1441 - jhedberg
1442 - aasthagr
Lauren Murphye28fcf82021-10-26 14:31:46 -05001443 - laurenmurphyx64
Anas Nashif3de9adb2020-12-19 23:15:40 -05001444 files:
1445 - boards/x86/
1446 - soc/x86/
1447 labels:
1448 - "platform: X86"
1449
1450Intel Platforms (Xtensa):
1451 status: maintained
1452 maintainers:
1453 - nashif
1454 collaborators:
1455 - andyross
1456 - dcpleung
1457 files:
1458 - boards/xtensa/intel_*/
1459 - soc/xtensa/intel_*/
1460 - samples/boards/intel_s1000_crb/
1461 labels:
1462 - "platform: Intel CAVS"
1463
1464NXP Platforms:
1465 status: maintained
1466 maintainers:
Anas Nashifb38d8232021-09-20 10:19:27 -04001467 - dleach02
Maureen Helmcdd2c452021-03-30 17:06:52 -05001468 collaborators:
1469 - mmahadevan108
Anas Nashif3de9adb2020-12-19 23:15:40 -05001470 files:
1471 - boards/arm/mimx*/
1472 - boards/arm/frdm_k*/
1473 - boards/arm/lpcxpress*/
Anas Nashifd9250b12021-09-15 17:21:15 -04001474 - boards/arm/twr_*/
Anas Nashif3de9adb2020-12-19 23:15:40 -05001475 - soc/arm/nxp_*/
1476 - drivers/*/*imx*
Anas Nashifd9250b12021-09-15 17:21:15 -04001477 - drivers/*/*lpc*.c
1478 - drivers/*/*mcux*.c
Anas Nashif3de9adb2020-12-19 23:15:40 -05001479 - dts/arm/nxp/
Anas Nashifcb67b2c2021-01-15 15:58:58 -05001480 - dts/bindings/*/nxp*
Anas Nashif3de9adb2020-12-19 23:15:40 -05001481 labels:
1482 - "platform: NXP"
1483
1484Microchip Platforms:
1485 status: maintained
1486 maintainers:
1487 - scottwcpg
1488 collaborators:
1489 - VenkatKotakonda
1490 - albertofloyd
1491 files:
1492 - boards/arm/mec*/
1493 - dts/arm/microchip/
1494 - soc/arm/microchip_mec/
Anas Nashifd9250b12021-09-15 17:21:15 -04001495 - drivers/*/*mchp*.c
Anas Nashif3de9adb2020-12-19 23:15:40 -05001496 labels:
1497 - "platform: Microchip"
1498
1499nRF Platforms:
1500 status: maintained
1501 maintainers:
1502 - ioannisg
1503 files:
Anas Nashifcb67b2c2021-01-15 15:58:58 -05001504 - boards/arm/*nrf*/
Anas Nashifd9250b12021-09-15 17:21:15 -04001505 - drivers/*/*nrfx*.c
Anas Nashif3de9adb2020-12-19 23:15:40 -05001506 - soc/arm/nordic_nrf/
1507 - samples/boards/nrf/
1508 - dts/arm/nordic/
1509 labels:
1510 - "platform: nRF"
1511
1512STM32 Platforms:
Ioannis Glaropoulosa2bd2882020-04-07 15:34:09 +02001513 status: maintained
1514 maintainers:
1515 - erwango
Erwan Gouriou1eaee992021-04-09 09:03:06 +02001516 collaborators:
1517 - ABOSTM
1518 - FRASTM
Gerard Marull-Paretas4addbe42021-10-14 17:18:54 +02001519 - gmarull
Ioannis Glaropoulosa2bd2882020-04-07 15:34:09 +02001520 files:
1521 - boards/arm/nucleo_*/
1522 - boards/arm/stm32*_disco/
Erwan Gouriou1eaee992021-04-09 09:03:06 +02001523 - boards/arm/stm32*_dk*/
Ioannis Glaropoulosa2bd2882020-04-07 15:34:09 +02001524 - boards/arm/stm32*_eval/
1525 - drivers/*/*stm32*/
Anas Nashifd9250b12021-09-15 17:21:15 -04001526 - drivers/*/*stm32*.c
1527 - drivers/*/*stm32*.h
Ioannis Glaropoulosa2bd2882020-04-07 15:34:09 +02001528 - drivers/*/*/*stm32*
1529 - dts/arm/st/
1530 - dts/bindings/*/*stm32*
1531 - soc/arm/st_stm32/
1532 labels:
1533 - "platform: STM32"
1534 description: >-
1535 STM32 SOCs, dts files and related drivers. ST nucleo, disco and eval
1536 boards.
1537
Anas Nashif234efa42021-03-12 08:12:31 -05001538Espressif Platforms:
1539 status: maintained
1540 maintainers:
1541 - sylvioalves
Sylvio Alves2835fb92021-07-27 11:19:06 -03001542 - glaubermaroto
1543 - ulipe
Anas Nashif234efa42021-03-12 08:12:31 -05001544 files:
Anas Nashifd9250b12021-09-15 17:21:15 -04001545 - drivers/*/*esp32*.c
Sylvio Alves2835fb92021-07-27 11:19:06 -03001546 - boards/xtensa/esp32*/
1547 - soc/xtensa/esp32*/
1548 - boards/riscv/esp32*/
1549 - soc/riscv/esp32*/
Anas Nashif234efa42021-03-12 08:12:31 -05001550 - dts/xtensa/espressif/
Sylvio Alves2835fb92021-07-27 11:19:06 -03001551 - dts/riscv/espressif/
Anas Nashif234efa42021-03-12 08:12:31 -05001552 - dts/bindings/*/*esp32*
Anas Nashifd9250b12021-09-15 17:21:15 -04001553 - samples/boards/esp32*/
Anas Nashif234efa42021-03-12 08:12:31 -05001554 labels:
1555 - "platform: ESP32"
1556
Ruibin Changde384b42021-05-14 10:25:55 +08001557ITE Platforms:
1558 status: maintained
1559 maintainers:
1560 - Dino-Li
1561 - GTLin08
1562 - RuibinChang
1563 collaborators:
1564 - Dino-Li
1565 - GTLin08
1566 - RuibinChang
1567 - jackrosenthal
1568 - keith-zephyr
1569 - brockus-zephyr
1570 - yperess
1571 - sjg20
1572 files:
1573 - boards/riscv/it8xxx2_evb/
Ruibin Chang3c5944b2021-08-26 17:26:31 +08001574 - drivers/*/*it8xxx2*
Ruibin Changde384b42021-05-14 10:25:55 +08001575 - dts/bindings/*/*ite*
Ruibin Chang3c5944b2021-08-26 17:26:31 +08001576 - dts/riscv/*it8xxx2*
Ruibin Changde384b42021-05-14 10:25:55 +08001577 - soc/riscv/riscv-ite/
1578 labels:
1579 - "platform: ITE"
1580
Ioannis Glaropoulosa2bd2882020-04-07 15:34:09 +02001581Storage:
Ioannis Glaropoulosa2bd2882020-04-07 15:34:09 +02001582 status: maintained
1583 maintainers:
1584 - nvlsianpu
1585 files:
1586 - subsys/storage/
1587 - include/storage/
1588 - tests/subsys/storage/
1589 labels:
1590 - "area: Storage"
1591
1592TF-M Integration:
Ioannis Glaropoulosa2bd2882020-04-07 15:34:09 +02001593 status: maintained
1594 maintainers:
1595 - microbuilder
1596 collaborators:
1597 - ioannisg
1598 files:
1599 - samples/tfm_integration/
Christopher Friedt79f8af02021-10-13 10:54:34 -04001600 - modules/trusted-firmware-m/
Ioannis Glaropoulosa2bd2882020-04-07 15:34:09 +02001601 labels:
1602 - "area: TF-M"
1603
1604Tracing:
1605 status: maintained
1606 maintainers:
1607 - nashif
Tom Burdick9cb94df2021-10-20 09:01:08 -05001608 collaborators:
1609 - teburd
Ioannis Glaropoulosa2bd2882020-04-07 15:34:09 +02001610 files:
1611 - subsys/tracing/
1612 - include/tracing/
Anas Nashif3de9adb2020-12-19 23:15:40 -05001613 - subsys/timing/
1614 - samples/subsys/tracing/
Anas Nashifd9250b12021-09-15 17:21:15 -04001615 - doc/guides/debug_tools/tracing/
Anas Nashifcb67b2c2021-01-15 15:58:58 -05001616 - tests/subsys/tracing/
Ioannis Glaropoulosa2bd2882020-04-07 15:34:09 +02001617 labels:
1618 - "area: tracing"
1619
1620USB:
Ioannis Glaropoulosa2bd2882020-04-07 15:34:09 +02001621 status: maintained
1622 maintainers:
Johann Fischer591740b2020-11-16 00:04:08 +01001623 - jfischer-no
Ioannis Glaropoulosa2bd2882020-04-07 15:34:09 +02001624 files:
1625 - drivers/usb/
1626 - dts/bindings/usb/
1627 - include/*/usb/
1628 - include/usb/
1629 - samples/subsys/usb/
1630 - subsys/usb/
1631 - tests/subsys/usb/
1632 labels:
1633 - "area: USB"
1634
1635Userspace:
1636 status: maintained
Anas Nashif3b542682021-03-26 09:11:53 -04001637 maintainers:
Anas Nashifebaf5872021-02-02 08:55:53 -05001638 - dcpleung
Anas Nashif3b542682021-03-26 09:11:53 -04001639 collaborators:
Anas Nashifebaf5872021-02-02 08:55:53 -05001640 - ioannisg
peng1 chen8779a9e2021-03-11 14:30:22 +08001641 - enjiamai
Ioannis Glaropoulosa2bd2882020-04-07 15:34:09 +02001642 files:
1643 - doc/reference/usermode/kernelobjects.rst
1644 - include/app_memory/
1645 - include/linker/app_smem*.ld
Anas Nashif3de9adb2020-12-19 23:15:40 -05001646 - tests/kernel/mem_protect/
1647 - samples/userspace/
1648 - include/syscall.h
1649 - kernel/userspace*
Anas Nashifebaf5872021-02-02 08:55:53 -05001650 - scripts/gen_app_partitions.py
1651 - scripts/gen_kobject_list.py
1652 - scripts/gen_syscalls.py
1653 - scripts/process_gperf.py
1654 - scripts/gen_relocate_app.py
1655 - include/sys/kobject.h
Ioannis Glaropoulosa2bd2882020-04-07 15:34:09 +02001656 labels:
1657 - "area: Userspace"
1658
1659VFS:
Ioannis Glaropoulosa2bd2882020-04-07 15:34:09 +02001660 status: maintained
1661 maintainers:
1662 - de-nordic
1663 files:
1664 - subsys/fs/fat_fs.c
1665 - tests/subsys/fs/fat_fs_api/
1666 description: >-
1667 VFS implementation
1668
Anas Nashifc7fc9cd2020-12-07 09:55:15 -05001669 labels:
1670 - "area: File System"
1671
Ioannis Glaropoulosa2bd2882020-04-07 15:34:09 +02001672West:
1673 status: maintained
1674 maintainers:
1675 - mbolivar-nordic
1676 collaborators:
1677 - carlescufi
Steve Winslowfd31b9b2021-04-20 23:04:52 -04001678 - swinslow
Ioannis Glaropoulosa2bd2882020-04-07 15:34:09 +02001679 files:
1680 - scripts/west-commands.yml
1681 - scripts/west_commands/
Anas Nashif83800702021-03-12 08:13:05 -05001682 - doc/guides/west/
Ioannis Glaropoulosa2bd2882020-04-07 15:34:09 +02001683 labels:
1684 - "area: West"
1685
1686Xtensa arch:
1687 status: maintained
1688 maintainers:
1689 - dcpleung
1690 collaborators:
1691 - andyross
Anas Nashifebaf5872021-02-02 08:55:53 -05001692 - nashif
Ioannis Glaropoulosa2bd2882020-04-07 15:34:09 +02001693 files:
1694 - arch/xtensa/
1695 - include/arch/xtensa/
1696 - dts/xtensa/
1697 - tests/arch/xtensa_asm2/
1698 labels:
1699 - "area: Xtensa"
1700
1701x86 arch:
1702 status: maintained
1703 maintainers:
Anas Nashif3de9adb2020-12-19 23:15:40 -05001704 - jhedberg
Ioannis Glaropoulosa2bd2882020-04-07 15:34:09 +02001705 collaborators:
1706 - andyross
Anas Nashif3de9adb2020-12-19 23:15:40 -05001707 - nashif
Anas Nashifebaf5872021-02-02 08:55:53 -05001708 - dcpleung
Anas Nashif3de9adb2020-12-19 23:15:40 -05001709 - ceolin
Anas Nashif5fad40e2021-09-16 07:02:20 -04001710 - enjiamai
Anas Nashif3de9adb2020-12-19 23:15:40 -05001711 - aasthagr
Lauren Murphye28fcf82021-10-26 14:31:46 -05001712 - laurenmurphyx64
Ioannis Glaropoulosa2bd2882020-04-07 15:34:09 +02001713 files:
1714 - arch/x86/
1715 - include/arch/x86/
1716 - tests/arch/x86/
Anas Nashiff3e57942021-03-10 14:45:29 -05001717 - drivers/interrupt_controller/*intel*
1718 - drivers/interrupt_controller/*ioapic*
1719 - drivers/interrupt_controller/*loapic*
Ioannis Glaropoulosa2bd2882020-04-07 15:34:09 +02001720 labels:
1721 - "area: X86"
1722
Anas Nashif3de9adb2020-12-19 23:15:40 -05001723CI:
1724 status: maintained
1725 maintainers:
1726 - nashif
1727 - galak
1728 files:
1729 - .github/
1730 - .buildkite/
1731 - scripts/ci/
Anas Nashifcb67b2c2021-01-15 15:58:58 -05001732 - .checkpatch.conf
1733 - scripts/gitlint/
Anas Nashif3de9adb2020-12-19 23:15:40 -05001734 labels:
1735 - "area: Continuous Integration"
1736
Ioannis Glaropoulosa2bd2882020-04-07 15:34:09 +02001737ZTest:
1738 status: maintained
1739 maintainers:
1740 - nashif
1741 files:
1742 - subsys/testsuite/
1743 - tests/ztest/
1744 - tests/unit/util/
1745 labels:
1746 - "area: Testsuite"