diff options
Diffstat (limited to 'meta')
-rw-r--r-- | meta/recipes-devtools/qemu/files/qemu-enlarge-env-entry-size.patch | 31 | ||||
-rw-r--r-- | meta/recipes-devtools/qemu/qemu_1.7.0.bb | 3 |
2 files changed, 33 insertions, 1 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 | |||
diff --git a/meta/recipes-devtools/qemu/qemu_1.7.0.bb b/meta/recipes-devtools/qemu/qemu_1.7.0.bb index c0e8b5523e..be6dd51df4 100644 --- a/meta/recipes-devtools/qemu/qemu_1.7.0.bb +++ b/meta/recipes-devtools/qemu/qemu_1.7.0.bb | |||
@@ -3,7 +3,8 @@ require qemu.inc | |||
3 | LIC_FILES_CHKSUM = "file://COPYING;md5=441c28d2cf86e15a37fa47e15a72fbac \ | 3 | LIC_FILES_CHKSUM = "file://COPYING;md5=441c28d2cf86e15a37fa47e15a72fbac \ |
4 | file://COPYING.LIB;endline=24;md5=c04def7ae38850e7d3ef548588159913" | 4 | file://COPYING.LIB;endline=24;md5=c04def7ae38850e7d3ef548588159913" |
5 | 5 | ||
6 | SRC_URI += "file://fxrstorssefix.patch" | 6 | SRC_URI += "file://fxrstorssefix.patch \ |
7 | file://qemu-enlarge-env-entry-size.patch" | ||
7 | 8 | ||
8 | SRC_URI_prepend = "http://wiki.qemu.org/download/qemu-${PV}.tar.bz2" | 9 | SRC_URI_prepend = "http://wiki.qemu.org/download/qemu-${PV}.tar.bz2" |
9 | SRC_URI[md5sum] = "32893941d40d052a5e649efcf06aca06" | 10 | SRC_URI[md5sum] = "32893941d40d052a5e649efcf06aca06" |