diff options
author | Bartlomiej Sieka <tur@semihalf.com> | 2008-02-29 16:00:24 +0100 |
---|---|---|
committer | Marian Balakowicz <m8@semihalf.com> | 2008-02-29 16:00:24 +0100 |
commit | 8cf30809a82902a471866d2f07725ce3b8a22291 (patch) | |
tree | 87ab025457f538b8313c418ffab396f68b5f2821 /libfdt/fdt_strerror.c | |
parent | a6e530f00d31a8494a0422799b2b9a692a9c0eb9 (diff) | |
download | u-boot-imx-8cf30809a82902a471866d2f07725ce3b8a22291.zip u-boot-imx-8cf30809a82902a471866d2f07725ce3b8a22291.tar.gz u-boot-imx-8cf30809a82902a471866d2f07725ce3b8a22291.tar.bz2 |
[new uImage] Add libfdt support to mkimage
Signed-off-by: Bartlomiej Sieka <tur@semihalf.com>
Diffstat (limited to 'libfdt/fdt_strerror.c')
-rw-r--r-- | libfdt/fdt_strerror.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/libfdt/fdt_strerror.c b/libfdt/fdt_strerror.c index f9d32ef..abf792e 100644 --- a/libfdt/fdt_strerror.c +++ b/libfdt/fdt_strerror.c @@ -50,8 +50,12 @@ */ #include "libfdt_env.h" +#ifndef USE_HOSTCC #include <fdt.h> #include <libfdt.h> +#else +#include "fdt_host.h" +#endif #include "libfdt_internal.h" |