diff options
author | Simon Glass <sjg@chromium.org> | 2017-05-27 07:38:18 -0600 |
---|---|---|
committer | Simon Glass <sjg@chromium.org> | 2017-06-02 10:16:47 -0600 |
commit | 555ba4889c8ffc5bac933976db9fd915c796f72d (patch) | |
tree | f2e03ee11524d3a7b673f836bbc0360582c4f471 /tools/dtoc | |
parent | 330274f19d287723e7f2dc507765e836639b7783 (diff) | |
download | u-boot-555ba4889c8ffc5bac933976db9fd915c796f72d.tar.gz u-boot-555ba4889c8ffc5bac933976db9fd915c796f72d.tar.xz u-boot-555ba4889c8ffc5bac933976db9fd915c796f72d.zip |
fdt: Rename existing python libfdt module
Now that this module has been accepted upstream we should stop using the
local U-Boot one. In preparation for this, rename it to indicate it is for
legacy use.
Signed-off-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'tools/dtoc')
-rw-r--r-- | tools/dtoc/fdt_normal.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/dtoc/fdt_normal.py b/tools/dtoc/fdt_normal.py index cce5c06d8c..17b0a9a726 100644 --- a/tools/dtoc/fdt_normal.py +++ b/tools/dtoc/fdt_normal.py @@ -12,7 +12,7 @@ import sys import fdt from fdt import Fdt, NodeBase, PropBase import fdt_util -import libfdt +import libfdt_legacy as libfdt # This deals with a device tree, presenting it as a list of Node and Prop # objects, representing nodes and properties, respectively. |