summaryrefslogtreecommitdiffstats
path: root/hw/core/loader.c
diff options
context:
space:
mode:
authorPaul Burton2016-09-08 16:51:56 +0200
committerYongbok Kim2017-02-22 00:47:40 +0100
commit51b58561c1dacdb0ce999ada94912caaed157f83 (patch)
treef00f17849c7265a7ce760c088c25c10e8dfaba4c /hw/core/loader.c
parentdtc: Update requirement to v1.4.2 (diff)
downloadqemu-51b58561c1dacdb0ce999ada94912caaed157f83.tar.gz
qemu-51b58561c1dacdb0ce999ada94912caaed157f83.tar.xz
qemu-51b58561c1dacdb0ce999ada94912caaed157f83.zip
loader: Support Flattened Image Trees (FIT images)
Introduce support for loading Flattened Image Trees, as used by modern U-Boot. FIT images are essentially flattened device tree files which contain binary images such as kernels, FDTs or ramdisks along with one or more configuration nodes describing boot configurations. The MIPS Boston board typically boots kernels in the form of FIT images, and will make use of this code. Signed-off-by: Paul Burton <paul.burton@imgtec.com> [yongbok.kim@imgtec.com: fixed potential memory leaks, isolated building option] Signed-off-by: Yongbok Kim <yongbok.kim@imgtec.com>
Diffstat (limited to 'hw/core/loader.c')
-rw-r--r--hw/core/loader.c7
1 files changed, 1 insertions, 6 deletions
diff --git a/hw/core/loader.c b/hw/core/loader.c
index ee5abd6eb7..8b980e91fb 100644
--- a/hw/core/loader.c
+++ b/hw/core/loader.c
@@ -527,12 +527,7 @@ static void zfree(void *x, void *addr)
#define DEFLATED 8
-/* This is the usual maximum in uboot, so if a uImage overflows this, it would
- * overflow on real hardware too. */
-#define UBOOT_MAX_GUNZIP_BYTES (64 << 20)
-
-static ssize_t gunzip(void *dst, size_t dstlen, uint8_t *src,
- size_t srclen)
+ssize_t gunzip(void *dst, size_t dstlen, uint8_t *src, size_t srclen)
{
z_stream s;
ssize_t dstbytes;