diff options
| author | Arnaud Patard | 2009-06-19 09:39:36 +0200 |
|---|---|---|
| committer | Riku Voipio | 2009-07-08 16:01:08 +0200 |
| commit | fd4d81dd04b4e606ce40a41d66368ba77c77c753 (patch) | |
| tree | 54b9de691a9fe2a0d5b87fdf5d6922825b13cdbf /linux-user/qemu.h | |
| parent | Fix the PCI header type of APB (diff) | |
| download | qemu-fd4d81dd04b4e606ce40a41d66368ba77c77c753.tar.gz qemu-fd4d81dd04b4e606ce40a41d66368ba77c77c753.tar.xz qemu-fd4d81dd04b4e606ce40a41d66368ba77c77c753.zip | |
linux-user: increment MAX_ARG_PAGES
There's a error When doing something like that :
find / -type f -print0 | xargs -0 echo
[ done in a arm chroot with qemu-arm and linux binfmt stuff or with
find / -type f -print0 | qemu-arm -L <path> <path>/usr/bin/xargs -0
echo ]
Doing this outsite qemu is fine. The problem was the huge number of
parameters. Increasing MAX_ARG_PAGES is fixing that.
While I was at it, I've modified linux-user/main.c to report error code
of loader_exec. It helps to debug/know what's wrong.
Signed-off-by: Arnaud Patard <arnaud.patard@rtp-net.org>
Signed-off-by: Riku Voipio <riku.voipio@iki.fi>
Diffstat (limited to 'linux-user/qemu.h')
| -rw-r--r-- | linux-user/qemu.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/linux-user/qemu.h b/linux-user/qemu.h index e04a31c69c..83ad443c23 100644 --- a/linux-user/qemu.h +++ b/linux-user/qemu.h @@ -140,7 +140,7 @@ extern const char *qemu_uname_release; * and envelope for the new program. 32 should suffice, this gives * a maximum env+arg of 128kB w/4KB pages! */ -#define MAX_ARG_PAGES 32 +#define MAX_ARG_PAGES 33 /* * This structure is used to hold the arguments that are |
