binman: add tools directory to the python path
authorEmmanuel Vadot <manu@bidouilliste.com>
Mon, 16 Jan 2017 07:14:46 +0000 (08:14 +0100)
committerTom Rini <trini@konsulko.com>
Fri, 20 Jan 2017 20:38:03 +0000 (15:38 -0500)
The built _libfdt.so is placed in the /tools dir and need to say here
as it contains relative paths.
Add the directory to the python path so binman can use this module.

Signed-off-by: Emmanuel Vadot <manu@bidouilliste.com>
tools/binman/binman.py

index 4cc431fbbe5f51a340d663948ce2c84441f9ae14..e1cb2fbb6f077b664a614ec15e40f77198e31f8d 100755 (executable)
@@ -19,6 +19,7 @@ import unittest
 our_path = os.path.dirname(os.path.realpath(__file__))
 sys.path.append(os.path.join(our_path, '../patman'))
 sys.path.append(os.path.join(our_path, '../dtoc'))
+sys.path.append(os.path.join(our_path, '../'))
 
 # Also allow entry-type modules to be brought in from the etype directory.
 sys.path.append(os.path.join(our_path, 'etype'))