From: Simon Glass Date: Tue, 23 Nov 2021 18:03:38 +0000 (-0700) Subject: dtoc: Bring in the libfdt module automatically X-Git-Tag: v2022.07~227^2~19^2~31 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=ff139b6c70ff452df7f231627c796bdd259f6bbc;p=platform%2Fkernel%2Fu-boot.git dtoc: Bring in the libfdt module automatically Use the same technique as with binman to load this module from the U-Boot tree if available. This allows running tests without having to specify the PYTHONPATH variable. Signed-off-by: Simon Glass --- diff --git a/tools/dtoc/test_fdt.py b/tools/dtoc/test_fdt.py index d104f3c..d86fc86 100755 --- a/tools/dtoc/test_fdt.py +++ b/tools/dtoc/test_fdt.py @@ -16,6 +16,12 @@ import unittest our_path = os.path.dirname(os.path.realpath(__file__)) sys.path.insert(1, os.path.join(our_path, '..')) +# Bring in the libfdt module +sys.path.insert(2, 'scripts/dtc/pylibfdt') +sys.path.insert(2, os.path.join(our_path, '../../scripts/dtc/pylibfdt')) +sys.path.insert(2, os.path.join(our_path, + '../../build-sandbox_spl/scripts/dtc/pylibfdt')) + from dtoc import fdt from dtoc import fdt_util from dtoc.fdt_util import fdt32_to_cpu