From: Simon Glass Date: Tue, 2 Oct 2018 03:12:44 +0000 (-0600) Subject: tools: Set an initial value for indir X-Git-Tag: v2018.11-rc2~7^2~63 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=1fda18205ff425d00faad57dc2ad69995cdbd15d;p=platform%2Fkernel%2Fu-boot.git tools: Set an initial value for indir This variable is not documented or set up in the module. Fix this. Signed-off-by: Simon Glass --- diff --git a/tools/patman/tools.py b/tools/patman/tools.py index 1c9bf4e..bf09979 100644 --- a/tools/patman/tools.py +++ b/tools/patman/tools.py @@ -28,6 +28,9 @@ packages = { 'lz4': 'liblz4-tool', } +# List of paths to use when looking for an input file +indir = [] + def PrepareOutputDir(dirname, preserve=False): """Select an output directory, ensuring it exists.