diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 2009-08-12 20:01:55 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 2009-08-12 20:01:55 +0000 |
commit | 910d450cbb67000b11dde35a22bad296166a7129 (patch) | |
tree | 47f0db68eb6a2766d925490840a540a7a144e958 /sbin/disklabel | |
parent | d5280a760b949863f95c9d5595cbf2e05a17d3cb (diff) |
Crank the /usr sizes in the large configuration
ok krw otto
Diffstat (limited to 'sbin/disklabel')
-rw-r--r-- | sbin/disklabel/editor.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/sbin/disklabel/editor.c b/sbin/disklabel/editor.c index dbd6381e8b4..c69835eeab9 100644 --- a/sbin/disklabel/editor.c +++ b/sbin/disklabel/editor.c @@ -1,4 +1,4 @@ -/* $OpenBSD: editor.c,v 1.220 2009/08/07 00:26:34 martynas Exp $ */ +/* $OpenBSD: editor.c,v 1.221 2009/08/12 20:01:54 deraadt Exp $ */ /* * Copyright (c) 1997-2000 Todd C. Miller <Todd.Miller@courtesan.com> @@ -17,7 +17,7 @@ */ #ifndef lint -static char rcsid[] = "$OpenBSD: editor.c,v 1.220 2009/08/07 00:26:34 martynas Exp $"; +static char rcsid[] = "$OpenBSD: editor.c,v 1.221 2009/08/12 20:01:54 deraadt Exp $"; #endif /* not lint */ #include <sys/types.h> @@ -77,12 +77,12 @@ const struct space_allocation alloc_big[] = { { MEG(80), MEG(256), 5, "swap" }, { MEG(120), GIG(4), 8, "/tmp" }, { MEG(80), GIG(4), 13, "/var" }, - { MEG(600), GIG(2), 2, "/usr" }, + { MEG(900), GIG(2), 5, "/usr" }, { MEG(512), GIG(1), 3, "/usr/X11R6" }, { GIG(2), GIG(6), 5, "/usr/local" }, { GIG(1), GIG(2), 3, "/usr/src" }, { GIG(1), GIG(2), 3, "/usr/obj" }, - { GIG(1), GIG(300), 53, "/home" } + { GIG(1), GIG(300), 50, "/home" } /* Anything beyond this leave for the user to decide */ }; |