1
0
mirror of https://xff.cz/git/u-boot/ synced 2025-09-02 01:02:19 +02:00

binman: Move to absolute imports

At present binman sets the python path on startup so that it can access
the libraries it needs. If we convert to use absolute imports this is not
necessary.

Move binman to use absolute imports. This enables removable of the path
adjusting in Entry also.

Signed-off-by: Simon Glass <sjg@chromium.org>
This commit is contained in:
Simon Glass
2020-04-17 18:09:03 -06:00
parent 0ede00fdaf
commit 16287933a8
70 changed files with 199 additions and 214 deletions

View File

@@ -16,9 +16,9 @@ import struct
import tempfile
import unittest
import cbfs_util
from cbfs_util import CbfsWriter
import elf
from binman import cbfs_util
from binman.cbfs_util import CbfsWriter
from binman import elf
import test_util
import tools