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_ro.c | |
parent | a6e530f00d31a8494a0422799b2b9a692a9c0eb9 (diff) |
[new uImage] Add libfdt support to mkimage
Signed-off-by: Bartlomiej Sieka <tur@semihalf.com>
Diffstat (limited to 'libfdt/fdt_ro.c')
-rw-r--r-- | libfdt/fdt_ro.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/libfdt/fdt_ro.c b/libfdt/fdt_ro.c index 12a37d59f96..1ae3a550039 100644 --- a/libfdt/fdt_ro.c +++ b/libfdt/fdt_ro.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" |