]> git.kernelconcepts.de Git - karo-tx-uboot.git/commitdiff
dtoc: Rename fdt.py to fdt_normal.py
authorSimon Glass <sjg@chromium.org>
Tue, 26 Jul 2016 00:59:03 +0000 (18:59 -0600)
committerSimon Glass <sjg@chromium.org>
Mon, 19 Sep 2016 03:04:38 +0000 (21:04 -0600)
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>
tools/dtoc/fdt_normal.py [moved from tools/dtoc/fdt.py with 100% similarity]
tools/dtoc/fdt_select.py

similarity index 100%
rename from tools/dtoc/fdt.py
rename to tools/dtoc/fdt_normal.py
index 5aff297c8fefdecdd44e4107e5673098a2d7f71e..681dfbfda0266d5f73d986e9cff8b749ef0194ff 100644 (file)
@@ -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