diff options
author | Juergen Lock <nox@FreeBSD.org> | 2015-01-06 19:47:28 +0000 |
---|---|---|
committer | Juergen Lock <nox@FreeBSD.org> | 2015-01-06 19:47:28 +0000 |
commit | dbc8d4a8be751066be977999cb8e6bd9d56cd6e6 (patch) | |
tree | 98ea2e3e5e43b906f6267887acd9ac55a87c2af4 /emulators/qemu-devel/files/extra-patch-max-arg-pages | |
parent | Update to GNU Chess 6.2.1 (diff) |
- Update emulators/qemu-sbruno to latest github snapshot, fixing
the bsd-user targets on 8 and 9.
- Switch emulators/qemu-user-static to be slave of emulators/qemu-sbruno.
- Update emulators/qemu-devel to latest upstream release 2.2.0, now
w/o bsd-user patches and knob again. (Or at least until the
patches are merged upstream...) [1]
- Add appropriate CONFLICTS to emulators/qemu too and bump its
PORTREVISION.
Suggested by: andrew [1] (for the benefit of testing aarch64 guests)
Notes
Notes:
svn path=/head/; revision=376437
Diffstat (limited to 'emulators/qemu-devel/files/extra-patch-max-arg-pages')
-rw-r--r-- | emulators/qemu-devel/files/extra-patch-max-arg-pages | 28 |
1 files changed, 0 insertions, 28 deletions
diff --git a/emulators/qemu-devel/files/extra-patch-max-arg-pages b/emulators/qemu-devel/files/extra-patch-max-arg-pages deleted file mode 100644 index ca447f0d6090..000000000000 --- a/emulators/qemu-devel/files/extra-patch-max-arg-pages +++ /dev/null @@ -1,28 +0,0 @@ -From 200e09e4bf497b43cace6b2b2b85b943f5d59dc1 Mon Sep 17 00:00:00 2001 -From: Sean Bruno <sbruno@freebsd.org> -Date: Fri, 29 Aug 2014 14:56:00 +0000 -Subject: [PATCH] Increase MAX_ARG_PAGES to 64 (256k total arg). - -I've found that building packages, like binutils, exceeded 128k easily ---- - bsd-user/qemu.h | 6 +++--- - 1 file changed, 3 insertions(+), 3 deletions(-) - -diff --git a/bsd-user/qemu.h b/bsd-user/qemu.h -index 09af1b4..0731c64 100644 ---- a/bsd-user/qemu.h -+++ b/bsd-user/qemu.h -@@ -121,10 +121,10 @@ extern unsigned long mmap_min_addr; - /* ??? See if we can avoid exposing so much of the loader internals. */ - /* - * MAX_ARG_PAGES defines the number of pages allocated for arguments -- * and envelope for the new program. 32 should suffice, this gives -- * a maximum env+arg of 128kB w/4KB pages! -+ * and envelope for the new program. 64 should suffice, this gives -+ * a maximum env+arg of 256kB w/4KB pages! - */ --#define MAX_ARG_PAGES 32 -+#define MAX_ARG_PAGES 64 - - /* - * This structure is used to hold the arguments that are |