From: Simon Glass Date: Tue, 26 Jul 2016 00:59:03 +0000 (-0600) Subject: dtoc: Rename fdt.py to fdt_normal.py X-Git-Tag: v2016.11-rc1~122^2~15 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=66051b1f59dfba48566dc3e0eee4c093e1104590;p=platform%2Fkernel%2Fu-boot.git 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 --- diff --git a/tools/dtoc/fdt.py b/tools/dtoc/fdt_normal.py similarity index 100% rename from tools/dtoc/fdt.py rename to 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