Files
build/patch/u-boot/u-boot-qemu-x86/0003-hack-bump-bzimage-max-size-to-45mb-from-15mb.patch
Ricardo Pardini d6c1414d2f u-boot: rewrite/rebase u-boot patches for a few boards; drop long-forgotten old version patches; no actual changes
- I guess this is most of the u-boot's I've touched over the years; notable exception is the orangepi3b (patches live in Kwiboo's tree)
- this is in preparation for bumping versions, hopefully soon
- radxa-zero, radxa-zero2, khadas-vim3, khadas-vim3l: drop patches for old u-boot versions no longer used
2024-03-09 20:03:29 +01:00

26 lines
773 B
Diff

From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
From: Ricardo Pardini <ricardo@pardini.net>
Date: Tue, 26 Sep 2023 16:51:20 +0200
Subject: hack: bump bzimage max size to 45mb from 15mb
---
arch/x86/include/asm/zimage.h | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/arch/x86/include/asm/zimage.h b/arch/x86/include/asm/zimage.h
index 9ad74dc0b946..e1f057df3806 100644
--- a/arch/x86/include/asm/zimage.h
+++ b/arch/x86/include/asm/zimage.h
@@ -22,7 +22,7 @@
#define COMMAND_LINE_MAGIC 0xA33F
/* limits */
-#define BZIMAGE_MAX_SIZE 15*1024*1024 /* 15MB */
+#define BZIMAGE_MAX_SIZE 45*1024*1024 /* 45MB */
#define ZIMAGE_MAX_SIZE 512*1024 /* 512k */
#define SETUP_MAX_SIZE 32768
--
Armbian