diff options
author | 2014-09-30 01:34:34 +0000 | |
---|---|---|
committer | 2014-09-30 01:34:34 +0000 | |
commit | f8a36ed552dcb5f30b79a42b64025d836aa3cb85 (patch) | |
tree | 94fd09f62aeca2607a852469a49ddef83432247d | |
parent | sync sets; req by deraadt (diff) | |
download | wireguard-openbsd-f8a36ed552dcb5f30b79a42b64025d836aa3cb85.tar.xz wireguard-openbsd-f8a36ed552dcb5f30b79a42b64025d836aa3cb85.zip |
Increase text segment size on Arm to 32MB
ok deraadt@ miod@
-rw-r--r-- | sys/arch/arm/include/vmparam.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/arch/arm/include/vmparam.h b/sys/arch/arm/include/vmparam.h index cfc9c935acc..5f86b05f270 100644 --- a/sys/arch/arm/include/vmparam.h +++ b/sys/arch/arm/include/vmparam.h @@ -1,4 +1,4 @@ -/* $OpenBSD: vmparam.h,v 1.13 2014/01/30 18:16:41 miod Exp $ */ +/* $OpenBSD: vmparam.h,v 1.14 2014/09/30 01:34:34 tobiasu Exp $ */ /* $NetBSD: vmparam.h,v 1.18 2003/05/21 18:04:44 thorpej Exp $ */ /* @@ -51,7 +51,7 @@ * Note that MAXTSIZ can't be larger than 32M, otherwise the compiler * would have to be changed to not generate "bl" instructions. */ -#define MAXTSIZ (16*1024*1024) /* max text size */ +#define MAXTSIZ (32*1024*1024) /* max text size */ #ifndef DFLDSIZ #define DFLDSIZ (128*1024*1024) /* initial data size limit */ #endif |