diff options
author | Simon Glass <sjg@chromium.org> | 2025-02-09 14:26:00 -0700 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2025-02-17 11:17:55 -0600 |
commit | 5c33fb028865bdc490aa0db2980987149786b00f (patch) | |
tree | 875d297c912f835aa95e56d9911e97e3166543e6 /tools/u_boot_pylib/__init__.py | |
parent | 064556910e61044f1295162ceaad600582b66cda (diff) |
u_boot_pylib: Move gitutil into the library
Move this file into U-Boot's Python library, so that it is no-longer
part of patman.
This makes a start on:
https://source.denx.de/u-boot/custodians/u-boot-dm/-/issues/35
Signed-off-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'tools/u_boot_pylib/__init__.py')
-rw-r--r-- | tools/u_boot_pylib/__init__.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/u_boot_pylib/__init__.py b/tools/u_boot_pylib/__init__.py index 63c88e85ec0..807a62e0743 100644 --- a/tools/u_boot_pylib/__init__.py +++ b/tools/u_boot_pylib/__init__.py @@ -1,4 +1,4 @@ # SPDX-License-Identifier: GPL-2.0+ -__all__ = ['command', 'cros_subprocess','terminal', 'test_util', 'tools', - 'tout'] +__all__ = ['command', 'cros_subprocess', 'gitutil', 'terminal', 'test_util', + 'tools', 'tout'] |