diff options
author | Simon Glass <sjg@chromium.org> | 2016-07-25 18:59:03 -0600 |
---|---|---|
committer | Simon Glass <sjg@chromium.org> | 2016-09-18 21:04:38 -0600 |
commit | 66051b1f59dfba48566dc3e0eee4c093e1104590 (patch) | |
tree | e4f9b7704b710533e97c06a9520ce8dd6251a79a /tools | |
parent | ba482585661431dde74eb69c7a94ac2d5a772d9f (diff) | |
download | u-boot-66051b1f59dfba48566dc3e0eee4c093e1104590.zip u-boot-66051b1f59dfba48566dc3e0eee4c093e1104590.tar.gz u-boot-66051b1f59dfba48566dc3e0eee4c093e1104590.tar.bz2 |
dtoc: Rename fdt.py to fdt_normal.py
In preparation for creating an Fdt base class, rename this file to indicate
it is the normal Fdt implementation.
Signed-off-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'tools')
-rw-r--r-- | tools/dtoc/fdt_normal.py (renamed from tools/dtoc/fdt.py) | 0 | ||||
-rw-r--r-- | tools/dtoc/fdt_select.py | 2 |
2 files changed, 1 insertions, 1 deletions
diff --git a/tools/dtoc/fdt.py b/tools/dtoc/fdt_normal.py index 1d913a9..1d913a9 100644 --- a/tools/dtoc/fdt.py +++ b/tools/dtoc/fdt_normal.py diff --git a/tools/dtoc/fdt_select.py b/tools/dtoc/fdt_select.py index 5aff297..681dfbf 100644 --- a/tools/dtoc/fdt_select.py +++ b/tools/dtoc/fdt_select.py @@ -10,7 +10,7 @@ # fallback one (which uses fdtget and is slower). Both provide the same # interface for this file to use. try: - import fdt + import fdt_normal as fdt have_libfdt = True except ImportError: have_libfdt = False |