diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 2009-05-03 16:49:17 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 2009-05-03 16:49:17 +0000 |
commit | 50d3397595a44dd26dc6483bb9783acbb2e54ea9 (patch) | |
tree | 8e15cc8dad786ca9f23024678820cbbb76fe3d4b /sbin | |
parent | b871cbc67974444e31d27543389f8d0161aaab13 (diff) |
Tune the medium profile to provide more /usr space as 'requested' by beck
also make the %'s add up to 100 again, which was part of the problem
ok krw otto
Diffstat (limited to 'sbin')
-rw-r--r-- | sbin/disklabel/editor.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/sbin/disklabel/editor.c b/sbin/disklabel/editor.c index 45e2c3ad1c5..d3224fc8e38 100644 --- a/sbin/disklabel/editor.c +++ b/sbin/disklabel/editor.c @@ -1,4 +1,4 @@ -/* $OpenBSD: editor.c,v 1.201 2009/04/30 06:56:34 deraadt Exp $ */ +/* $OpenBSD: editor.c,v 1.202 2009/05/03 16:49:16 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.201 2009/04/30 06:56:34 deraadt Exp $"; +static char rcsid[] = "$OpenBSD: editor.c,v 1.202 2009/05/03 16:49:16 deraadt Exp $"; #endif /* not lint */ #include <sys/types.h> @@ -90,10 +90,10 @@ const struct space_allocation alloc_big[] = { }; const struct space_allocation alloc_medium[] = { - { MEG(800), GIG(2), 15, "/" }, + { MEG(800), GIG(2), 5, "/" }, { MEG(80), MEG(256), 10, "swap" }, - { MEG(900), GIG(2), 10, "/usr" }, - { MEG(512), GIG(4), 65, "/home" } + { MEG(900), GIG(3), 78, "/usr" }, + { MEG(256), GIG(2), 7, "/home" } }; const struct space_allocation alloc_small[] = { |