summaryrefslogtreecommitdiff
path: root/sbin/disklabel
diff options
context:
space:
mode:
authorAlexander Bluhm <bluhm@cvs.openbsd.org>2018-09-18 13:53:10 +0000
committerAlexander Bluhm <bluhm@cvs.openbsd.org>2018-09-18 13:53:10 +0000
commitd96b76394d41f14d28769052aad48809224ad521 (patch)
tree42b1e07594086cbdfe2f13c37d72dd3dbd334ae2 /sbin/disklabel
parentd6af3c23680e1d6c21eb12617f4ef14f00cd39e8 (diff)
Increase minimum size for /usr/obj partition to 5 Gig. This allows
to run make build and make regress after a default install. OK deraadt@
Diffstat (limited to 'sbin/disklabel')
-rw-r--r--sbin/disklabel/editor.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sbin/disklabel/editor.c b/sbin/disklabel/editor.c
index b669a1df40f..28dc5329492 100644
--- a/sbin/disklabel/editor.c
+++ b/sbin/disklabel/editor.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: editor.c,v 1.349 2018/09/11 09:13:19 krw Exp $ */
+/* $OpenBSD: editor.c,v 1.350 2018/09/18 13:53:09 bluhm Exp $ */
/*
* Copyright (c) 1997-2000 Todd C. Miller <Todd.Miller@courtesan.com>
@@ -90,7 +90,7 @@ struct space_allocation alloc_big[] = {
{ MEG(384), GIG(1), 3, "/usr/X11R6" },
{ GIG(1), GIG(10), 15, "/usr/local" },
{ MEG(1300), GIG(2), 2, "/usr/src" },
- { GIG(3), GIG(6), 4, "/usr/obj" },
+ { GIG(5), GIG(6), 4, "/usr/obj" },
{ GIG(1), GIG(300), 35, "/home" }
/* Anything beyond this leave for the user to decide */
};