blob: 5c42d68030832a39594b6c039c9bd7ba40f2e73e [file] [log] [blame]
Brad Bishopc68388fc2019-08-26 01:33:31 -04001From 235b94f1188597873c8776b019fed49947983392 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
4Subject: [PATCH] qemu: Add addition environment space to boot loader
5 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---
18 hw/mips/mips_malta.c | 2 +-
19 1 file changed, 1 insertion(+), 1 deletion(-)
20
21diff --git a/hw/mips/mips_malta.c b/hw/mips/mips_malta.c
Brad Bishopc68388fc2019-08-26 01:33:31 -040022index 20e019bf..d150b01c 100644
Brad Bishopc342db32019-05-15 21:57:59 -040023--- a/hw/mips/mips_malta.c
24+++ b/hw/mips/mips_malta.c
25@@ -60,7 +60,7 @@
26
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