diff options
author | Otto Moerbeek <otto@cvs.openbsd.org> | 2011-05-23 08:22:30 +0000 |
---|---|---|
committer | Otto Moerbeek <otto@cvs.openbsd.org> | 2011-05-23 08:22:30 +0000 |
commit | 9b8ac44c2fdd8b28befafebda6619f26bd22b355 (patch) | |
tree | 8648f94535958682c52eb31a59ae815ef7bf0a8d /sbin/disklabel | |
parent | f76603d35da216c3c97db0534fd07a3bab7df320 (diff) |
Make /usr/obj a bit bigger, on small disks it ends up just a little
bit too small. ok krw@
Diffstat (limited to 'sbin/disklabel')
-rw-r--r-- | sbin/disklabel/editor.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sbin/disklabel/editor.c b/sbin/disklabel/editor.c index b1a2a7358b1..688c1113c8a 100644 --- a/sbin/disklabel/editor.c +++ b/sbin/disklabel/editor.c @@ -1,4 +1,4 @@ -/* $OpenBSD: editor.c,v 1.254 2011/05/22 17:49:26 otto Exp $ */ +/* $OpenBSD: editor.c,v 1.255 2011/05/23 08:22:29 otto Exp $ */ /* * Copyright (c) 1997-2000 Todd C. Miller <Todd.Miller@courtesan.com> @@ -77,8 +77,8 @@ const struct space_allocation alloc_big[] = { { MEG(900), GIG(2), 5, "/usr" }, { MEG(512), GIG(1), 3, "/usr/X11R6" }, { GIG(2), GIG(10), 10, "/usr/local" }, - { GIG(1), GIG(2), 3, "/usr/src" }, - { GIG(1), GIG(2), 3, "/usr/obj" }, + { GIG(1), GIG(2), 2, "/usr/src" }, + { MEG(1300), GIG(2), 4, "/usr/obj" }, { GIG(1), GIG(300), 45, "/home" } /* Anything beyond this leave for the user to decide */ }; |