summaryrefslogtreecommitdiff
path: root/tools
diff options
context:
space:
mode:
Diffstat (limited to 'tools')
-rw-r--r--tools/buildman/board.py2
-rw-r--r--tools/buildman/func_test.py2
2 files changed, 2 insertions, 2 deletions
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)