summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorOtto Moerbeek <otto@cvs.openbsd.org>2009-04-29 15:11:21 +0000
committerOtto Moerbeek <otto@cvs.openbsd.org>2009-04-29 15:11:21 +0000
commit2bc5dd923582e7fc145039e7077d75455b58e4e5 (patch)
tree5bc41b136a70e4ce4b4933d0a1dc66150008cdea
parent053908e1bb1eab87a940554dbfcd7a257b3453e7 (diff)
increase the max for medium a bit, so e.g. a 6GB disk gets fully used
-rw-r--r--sbin/disklabel/editor.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/sbin/disklabel/editor.c b/sbin/disklabel/editor.c
index 1cc6ffa7a89..b374b1f10d3 100644
--- a/sbin/disklabel/editor.c
+++ b/sbin/disklabel/editor.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: editor.c,v 1.198 2009/04/26 20:25:09 deraadt Exp $ */
+/* $OpenBSD: editor.c,v 1.199 2009/04/29 15:11:20 otto 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.198 2009/04/26 20:25:09 deraadt Exp $";
+static char rcsid[] = "$OpenBSD: editor.c,v 1.199 2009/04/29 15:11:20 otto Exp $";
#endif /* not lint */
#include <sys/types.h>
@@ -91,8 +91,8 @@ const struct space_allocation alloc_big[] = {
const struct space_allocation alloc_medium[] = {
{ MEG(800), GIG(2), 15, "/" },
{ MEG(80), MEG(256), 10, "swap" },
- { MEG(900), GIG(1), 10, "/usr" },
- { MEG(512), GIG(1), 65, "/home" }
+ { MEG(900), GIG(2), 10, "/usr" },
+ { MEG(512), GIG(4), 65, "/home" }
};
const struct space_allocation alloc_small[] = {