summaryrefslogtreecommitdiff
path: root/tools/buildman
diff options
context:
space:
mode:
Diffstat (limited to 'tools/buildman')
-rw-r--r--tools/buildman/board.py2
-rw-r--r--tools/buildman/func_test.py2
-rw-r--r--tools/buildman/pyproject.toml2
3 files changed, 3 insertions, 3 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)
diff --git a/tools/buildman/pyproject.toml b/tools/buildman/pyproject.toml
index 5f5c405afbf..8a27bbaf167 100644
--- a/tools/buildman/pyproject.toml
+++ b/tools/buildman/pyproject.toml
@@ -24,7 +24,7 @@ classifiers = [
[project.urls]
"Homepage" = "https://docs.u-boot-project.org/en/latest/build/buildman.html"
-"Bug Tracker" = "https://source.denx.de/groups/u-boot/-/issues"
+"Bug Tracker" = "https://git.u-boot-project.org/groups/u-boot/-/issues"
[project.scripts]
buildman = "buildman.main:run_buildman"