summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichal Simek <[email protected]>2026-08-24 10:32:51 +0200
committerTom Rini <[email protected]>2026-08-28 12:21:02 -0600
commit65305d0e450580e611eb13bc5079e34dcbd35964 (patch)
tree3c02c0e29d9c63a200b2bc7bccdd991e04023df6
parent547b4d3bba7ecb4446fa55ed27f048fd27928f59 (diff)
MAINTAINERS: Use proper Orphan status marking
Orphaned is not correct status based on description. s/Orphaned/Orphan/g Signed-off-by: Michal Simek <[email protected]> Reviewed-by: Quentin Schulz <[email protected]>
-rw-r--r--MAINTAINERS10
-rw-r--r--tools/buildman/board.py2
-rw-r--r--tools/buildman/func_test.py2
3 files changed, 7 insertions, 7 deletions
diff --git a/MAINTAINERS b/MAINTAINERS
index eb48eea55c5..e41ff7700df 100644
--- a/MAINTAINERS
+++ b/MAINTAINERS
@@ -1063,7 +1063,7 @@ F: tools/file2include.c
F: tools/mkeficapsule.c
ENVIRONMENT
-S: Orphaned
+S: Orphan
F: env/
F: include/env/
F: include/env*
@@ -1442,7 +1442,7 @@ F: drivers/net/phy/nxp-c45-tja11xx.c
ONENAND
#M: Lukasz Majewski <[email protected]>
-S: Orphaned (Since 2017-01)
+S: Orphan (Since 2017-01)
T: git https://git.u-boot-project.org/u-boot/custodians/u-boot-onenand.git
F: drivers/mtd/onenand/
@@ -1480,7 +1480,7 @@ F: drivers/pci/pcie_dw_imx.c
F: drivers/phy/phy-imx8m-pcie.c
PCI Endpoint
-S: Orphaned
+S: Orphan
F: drivers/pci_endpoint/
F: include/pci_ep.h
@@ -1651,7 +1651,7 @@ F: test/cmd/seama.c
SEMIHOSTING
R: Sean Anderson <[email protected]>
-S: Orphaned
+S: Orphan
N: semihosting
SETEXPR
@@ -1703,7 +1703,7 @@ S: Maintained
F: drivers/rng/smccc_trng.c
SPI
-S: Orphaned
+S: Orphan
T: git https://git.u-boot-project.org/u-boot/custodians/u-boot-spi.git
F: drivers/spi/
F: include/spi*
diff --git a/tools/buildman/board.py b/tools/buildman/board.py
index 248d8bfff18..231454dc8cd 100644
--- a/tools/buildman/board.py
+++ b/tools/buildman/board.py
@@ -10,7 +10,7 @@ class Board:
"""Create a new board type.
Args:
- status: define whether the board is 'Active' or 'Orphaned'
+ status: define whether the board is 'Active' or 'Orphan'
arch: Architecture name (e.g. arm)
cpu: Cpu name (e.g. arm1136)
soc: Name of SOC, or '' if none (e.g. mx31)
diff --git a/tools/buildman/func_test.py b/tools/buildman/func_test.py
index 51c6855420e..fce615ba8b8 100644
--- a/tools/buildman/func_test.py
+++ b/tools/buildman/func_test.py
@@ -951,7 +951,7 @@ Active aarch64 armv8 - armltd total_compute board2
self.assertEqual(["WARNING: no maintainers for 'board0'"], warnings)
# Mark a board as orphaned - this should give a warning
- lines = ['S: Orphaned' if line.startswith('S') else line
+ lines = ['S: Orphan' if line.startswith('S') else line
for line in orig_data.splitlines(keepends=True)]
tools.write_file(main, ''.join(lines), binary=False)
params_list, warnings = self._boards.build_board_list(config_dir, src)