diff options
| author | Jeff Polk <jeff.polk@windriver.com> | 2014-03-28 17:42:43 +0800 |
|---|---|---|
| committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2014-04-01 23:37:01 +0100 |
| commit | 3008b12d41c8c16032a9ae15af4ff53bc511aabc (patch) | |
| tree | ee2c41a9175c158bdd9a4eb6b8471d40013536cd /meta/recipes-devtools/qemu/files | |
| parent | f4dc1e568636f7bfe216f4fb1386bbed4ee305af (diff) | |
| download | poky-3008b12d41c8c16032a9ae15af4ff53bc511aabc.tar.gz | |
qemu: Add addition environment space to boot loader qemu-system-mips
The qemu mips malta base board boot loader uses environment strings
with a max length of 256 bytes which is not long enough to accommodate
a long NFS path in addition to the normal kernel boot command line
arguments.
The solution is to expand the environment string length to 1024 bytes.
(From OE-Core rev: 1e9e26304b77dd11b30ec983b7fa058378b29c47)
Signed-off-by: Jason Wessel <jason.wessel@windriver.com>
Signed-off-by: Roy Li <rongqing.li@windriver.com>
Signed-off-by: Jeff Polk <jeff.polk@windriver.com>
Signed-off-by: Hongxu Jia <hongxu.jia@windriver.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-devtools/qemu/files')
| -rw-r--r-- | meta/recipes-devtools/qemu/files/qemu-enlarge-env-entry-size.patch | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/meta/recipes-devtools/qemu/files/qemu-enlarge-env-entry-size.patch b/meta/recipes-devtools/qemu/files/qemu-enlarge-env-entry-size.patch new file mode 100644 index 0000000000..c7425ab8d4 --- /dev/null +++ b/meta/recipes-devtools/qemu/files/qemu-enlarge-env-entry-size.patch | |||
| @@ -0,0 +1,31 @@ | |||
| 1 | qemu: Add addition environment space to boot loader qemu-system-mips | ||
| 2 | |||
| 3 | Upstream-Status: Inappropriate - OE uses deep paths | ||
| 4 | |||
| 5 | If you create a project with very long directory names like 128 characters | ||
| 6 | deep and use NFS, the kernel arguments will be truncated. The kernel will | ||
| 7 | accept longer strings such as 1024 bytes, but the qemu boot loader defaulted | ||
| 8 | to only 256 bytes. This patch expands the limit. | ||
| 9 | |||
| 10 | Signed-off-by: Jason Wessel <jason.wessel@windriver.com> | ||
| 11 | Signed-off-by: Roy Li <rongqing.li@windriver.com> | ||
| 12 | --- | ||
| 13 | hw/mips/mips_malta.c | 2 +- | ||
| 14 | 1 files changed, 1 insertions(+), 1 deletions(-) | ||
| 15 | |||
| 16 | diff --git a/hw/mips/mips_malta.c b/hw/mips/mips_malta.c | ||
| 17 | index 9d521cc..17c0391 100644 | ||
| 18 | --- a/hw/mips/mips_malta.c | ||
| 19 | +++ b/hw/mips/mips_malta.c | ||
| 20 | @@ -53,7 +53,7 @@ | ||
| 21 | |||
| 22 | #define ENVP_ADDR 0x80002000l | ||
| 23 | #define ENVP_NB_ENTRIES 16 | ||
| 24 | -#define ENVP_ENTRY_SIZE 256 | ||
| 25 | +#define ENVP_ENTRY_SIZE 1024 | ||
| 26 | |||
| 27 | /* Hardware addresses */ | ||
| 28 | #define FLASH_ADDRESS 0x1e000000ULL | ||
| 29 | -- | ||
| 30 | 1.7.10.4 | ||
| 31 | |||
