diff options
author | Tobias Ulmer <tobiasu@cvs.openbsd.org> | 2014-09-30 01:34:35 +0000 |
---|---|---|
committer | Tobias Ulmer <tobiasu@cvs.openbsd.org> | 2014-09-30 01:34:35 +0000 |
commit | 5357d3b9ea66cbe0e503753d0dcddd3737793753 (patch) | |
tree | b022416274b83520ca43de727c4f5a68b07d4407 /sys | |
parent | 491b65a3532b300975435401c279f14c7de65cbb (diff) |
Increase text segment size on Arm to 32MB
ok deraadt@ miod@
Diffstat (limited to 'sys')
-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 |