blob: 5152dcafe5b5843ff5db04c483be39755e33f6e7 [file] [log] [blame]
Brad Bishop1a4b7ee2018-12-16 17:11:34 -08001From dd4404a334a545e9beafa1b1e41b3a8f35ef31a9 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>
16---
Brad Bishopd5ae7d92018-06-14 09:52:03 -070017 hw/mips/mips_malta.c | 2 +-
18 1 file changed, 1 insertion(+), 1 deletion(-)
Patrick Williamsc124f4f2015-09-15 14:41:29 -050019
20diff --git a/hw/mips/mips_malta.c b/hw/mips/mips_malta.c
Brad Bishop1a4b7ee2018-12-16 17:11:34 -080021index f6513a4fd5..d5efafb1e8 100644
Patrick Williamsc124f4f2015-09-15 14:41:29 -050022--- a/hw/mips/mips_malta.c
23+++ b/hw/mips/mips_malta.c
Brad Bishop1a4b7ee2018-12-16 17:11:34 -080024@@ -62,7 +62,7 @@
Patrick Williamsc124f4f2015-09-15 14:41:29 -050025
26 #define ENVP_ADDR 0x80002000l
27 #define ENVP_NB_ENTRIES 16
28-#define ENVP_ENTRY_SIZE 256
29+#define ENVP_ENTRY_SIZE 1024
30
31 /* Hardware addresses */
32 #define FLASH_ADDRESS 0x1e000000ULL