Skip to content
Snippets Groups Projects
Commit 80d2ae5e authored by Emmanuel Vadot's avatar Emmanuel Vadot Committed by Tom Rini
Browse files

binman: add tools directory to the python path


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: default avatarEmmanuel Vadot <manu@bidouilliste.com>
parent 1905c8fc
No related branches found
No related tags found
No related merge requests found
......@@ -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'))
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment