summaryrefslogtreecommitdiff
path: root/tools/patman/tools.py
diff options
context:
space:
mode:
authorSimon Glass <sjg@chromium.org>2018-10-01 21:12:44 -0600
committerSimon Glass <sjg@chromium.org>2018-10-08 07:34:34 -0600
commit1fda18205ff425d00faad57dc2ad69995cdbd15d (patch)
treea3f9df4c6e33b761b9971f1c51e646c0a1b69168 /tools/patman/tools.py
parent4b4bc06ef4e37f79604ff8fa2142057e2cb05437 (diff)
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 <sjg@chromium.org>
Diffstat (limited to 'tools/patman/tools.py')
-rw-r--r--tools/patman/tools.py3
1 files changed, 3 insertions, 0 deletions
diff --git a/tools/patman/tools.py b/tools/patman/tools.py
index 1c9bf4e810..bf099798e6 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.