[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Qemu-ppc] [PATCH v2 03/11] uImage: increase the gzip load size
From: |
Alexander Graf |
Subject: |
[Qemu-ppc] [PATCH v2 03/11] uImage: increase the gzip load size |
Date: |
Thu, 21 Jun 2012 15:33:52 +0200 |
Recent u-boot has different defines for its gzip extract buffer, but the
common ground seems to be 64MB. So let's bump it up to that, enabling me
to load my test image again ;).
Signed-off-by: Alexander Graf <address@hidden>
---
hw/loader.c | 4 ++--
1 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/hw/loader.c b/hw/loader.c
index 7d64113..33acc2f 100644
--- a/hw/loader.c
+++ b/hw/loader.c
@@ -377,9 +377,9 @@ static void zfree(void *x, void *addr)
#define DEFLATED 8
-/* This is the maximum in uboot, so if a uImage overflows this, it would
+/* 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 0x800000
+#define UBOOT_MAX_GUNZIP_BYTES (64 << 20)
static ssize_t gunzip(void *dst, size_t dstlen, uint8_t *src,
size_t srclen)
--
1.6.0.2
- [Qemu-ppc] [PATCH v2 00/11] PPC: e5500 emulation, Alexander Graf, 2012/06/21
- [Qemu-ppc] [PATCH v2 05/11] PPC: Add support for MSR_CM, Alexander Graf, 2012/06/21
- [Qemu-ppc] [PATCH v2 07/11] PPC: BookE: Make ivpr selectable by CPU type, Alexander Graf, 2012/06/21
- [Qemu-ppc] [PATCH v2 02/11] PPC: e500: allow users to set the /compatible property via -machine, Alexander Graf, 2012/06/21
- [Qemu-ppc] [PATCH v2 03/11] uImage: increase the gzip load size,
Alexander Graf <=
- [Qemu-ppc] [PATCH v2 01/11] dt: make setprop argument static, Alexander Graf, 2012/06/21
- [Qemu-ppc] [PATCH v2 09/11] PPC: Extract SPR dump generation into its own function, Alexander Graf, 2012/06/21
- [Qemu-ppc] [PATCH v2 10/11] PPC: BookE: Support 32 and 64 bit wide MAS2, Alexander Graf, 2012/06/21
- [Qemu-ppc] [PATCH v2 06/11] PPC: BookE: Implement EPR SPR, Alexander Graf, 2012/06/21
- [Qemu-ppc] [PATCH v2 08/11] PPC: Add e5500 CPU target, Alexander Graf, 2012/06/21
- [Qemu-ppc] [PATCH v2 04/11] PPC: Add some booke SPR defines, Alexander Graf, 2012/06/21
- [Qemu-ppc] [PATCH v2 11/11] PPC: BookE206: Bump MAS2 to 64bit, Alexander Graf, 2012/06/21