Browse Source

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>
Simon Glass 8 years ago
parent
commit
66051b1f59
2 changed files with 1 additions and 1 deletions
  1. 0 0
      tools/dtoc/fdt_normal.py
  2. 1 1
      tools/dtoc/fdt_select.py

+ 0 - 0
tools/dtoc/fdt.py → tools/dtoc/fdt_normal.py


+ 1 - 1
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