diff options
author | Simon Glass | 2022-01-09 20:13:47 -0700 |
---|---|---|
committer | Simon Glass | 2022-01-25 12:36:11 -0700 |
commit | 7f29583113b2d9aeba116183df5a8bc8ae2d86e2 (patch) | |
tree | ddfcc5126fb786690cef99386e0122c35f1d6612 /tools/binman | |
parent | f4590e02c133e7a971bb425d1e83c7ab0cdbf64a (diff) |
binman: Correct path for fip_util
This should be imported from the binman module. Fix it.
Signed-off-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'tools/binman')
-rwxr-xr-x | tools/binman/fip_util_test.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/binman/fip_util_test.py b/tools/binman/fip_util_test.py index 4839b298762..06827f59322 100755 --- a/tools/binman/fip_util_test.py +++ b/tools/binman/fip_util_test.py @@ -22,7 +22,7 @@ sys.path.insert(2, os.path.join(OUR_PATH, '..')) # pylint: disable=C0413 from patman import test_util from patman import tools -import fip_util +from binman import fip_util HAVE_FIPTOOL = True try: |