blob: b4d4c587bd42091ad78dfd6f4eaa3a643ce58607 [file] [log] [blame]
Brad Bishop19323692019-04-05 15:28:33 -04001From 3de7a5635093c31dcb960ce9dff27da629b85d4d Mon Sep 17 00:00:00 2001
Brad Bishopd5ae7d92018-06-14 09:52:03 -07002From: Jason Wessel <jason.wessel@windriver.com>
3Date: Fri, 28 Mar 2014 17:42:43 +0800
4Subject: [PATCH] qemu: Add addition environment space to boot loader
5 qemu-system-mips
Patrick Williamsc124f4f2015-09-15 14:41:29 -05006
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>
Brad Bishop19323692019-04-05 15:28:33 -040016
Patrick Williamsc124f4f2015-09-15 14:41:29 -050017---
Brad Bishopd5ae7d92018-06-14 09:52:03 -070018 hw/mips/mips_malta.c | 2 +-
19 1 file changed, 1 insertion(+), 1 deletion(-)
Patrick Williamsc124f4f2015-09-15 14:41:29 -050020
21diff --git a/hw/mips/mips_malta.c b/hw/mips/mips_malta.c
Brad Bishop19323692019-04-05 15:28:33 -040022index c1cf0fe1..decffd2f 100644
Patrick Williamsc124f4f2015-09-15 14:41:29 -050023--- a/hw/mips/mips_malta.c
24+++ b/hw/mips/mips_malta.c
Brad Bishop1a4b7ee2018-12-16 17:11:34 -080025@@ -62,7 +62,7 @@
Patrick Williamsc124f4f2015-09-15 14:41:29 -050026
27 #define ENVP_ADDR 0x80002000l
28 #define ENVP_NB_ENTRIES 16
29-#define ENVP_ENTRY_SIZE 256
30+#define ENVP_ENTRY_SIZE 1024
31
32 /* Hardware addresses */
33 #define FLASH_ADDRESS 0x1e000000ULL