[U-Boot] [PATCH 22/29] patman: Show the current directory in GetInputFilename()

Simon Glass sjg at chromium.org
Tue Jul 17 19:25:45 UTC 2018


When this fails it is useful to see the current directory, since U-Boot's
build system will typically change into the output directory during the
build. Add this information to the error.

Signed-off-by: Simon Glass <sjg at chromium.org>
---

 tools/patman/tools.py | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/tools/patman/tools.py b/tools/patman/tools.py
index 006306bd60..e80481438b 100644
--- a/tools/patman/tools.py
+++ b/tools/patman/tools.py
@@ -116,8 +116,8 @@ def GetInputFilename(fname):
         if os.path.exists(pathname):
             return pathname
 
-    raise ValueError("Filename '%s' not found in input path (%s)" %
-                     (fname, ','.join(indir)))
+    raise ValueError("Filename '%s' not found in input path (%s) (cwd='%s')" %
+                     (fname, ','.join(indir), os.getcwd()))
 
 def Align(pos, align):
     if align:
-- 
2.18.0.203.gfac676dfb9-goog



More information about the U-Boot mailing list