blob: 6fb160e6d3d69e8f014ebf6687672c64b715ac5e [file] [log] [blame]
Andrew Geisslerd5838332022-05-27 11:33:10 -05001From de64af82950a6908f9407dfc92b83c17e2af3eab Mon Sep 17 00:00:00 2001
Brad Bishopc342db32019-05-15 21:57:59 -04002From: Jason Wessel <jason.wessel@windriver.com>
3Date: Fri, 28 Mar 2014 17:42:43 +0800
Andrew Geisslerd5838332022-05-27 11:33:10 -05004Subject: [PATCH 01/12] qemu: Add addition environment space to boot loader
Brad Bishopc342db32019-05-15 21:57:59 -04005 qemu-system-mips
6
7Upstream-Status: Inappropriate - OE uses deep paths
8
9If you create a project with very long directory names like 128 characters
10deep and use NFS, the kernel arguments will be truncated. The kernel will
11accept longer strings such as 1024 bytes, but the qemu boot loader defaulted
12to only 256 bytes. This patch expands the limit.
13
14Signed-off-by: Jason Wessel <jason.wessel@windriver.com>
15Signed-off-by: Roy Li <rongqing.li@windriver.com>
16
17---
Andrew Geissler635e0e42020-08-21 15:58:33 -050018 hw/mips/malta.c | 2 +-
Brad Bishopc342db32019-05-15 21:57:59 -040019 1 file changed, 1 insertion(+), 1 deletion(-)
20
Andrew Geisslerd5838332022-05-27 11:33:10 -050021diff --git a/hw/mips/malta.c b/hw/mips/malta.c
22index 628851172..12d37f35d 100644
23--- a/hw/mips/malta.c
24+++ b/hw/mips/malta.c
25@@ -61,7 +61,7 @@
William A. Kennington IIIac69b482021-06-02 12:28:27 -070026 #define ENVP_PADDR 0x2000
27 #define ENVP_VADDR cpu_mips_phys_to_kseg0(NULL, ENVP_PADDR)
Andrew Geissler82c905d2020-04-13 13:39:40 -050028 #define ENVP_NB_ENTRIES 16
29-#define ENVP_ENTRY_SIZE 256
30+#define ENVP_ENTRY_SIZE 1024
Brad Bishopc342db32019-05-15 21:57:59 -040031
32 /* Hardware addresses */
Andrew Geissler82c905d2020-04-13 13:39:40 -050033 #define FLASH_ADDRESS 0x1e000000ULL
Andrew Geisslerd5838332022-05-27 11:33:10 -050034--
352.30.2
36