diff options
author | Peter Hessler <phessler@cvs.openbsd.org> | 2019-03-31 14:06:47 +0000 |
---|---|---|
committer | Peter Hessler <phessler@cvs.openbsd.org> | 2019-03-31 14:06:47 +0000 |
commit | 4587851df0dd87d1982678af818055425ac5d6ad (patch) | |
tree | 36293cc9618848ab0c653cbe542c785935811884 /sbin/disklabel | |
parent | 3f5de57c3a844b1e77595638921400f37bb0f3f8 (diff) |
when using the auto partitioner, grow minimum size for /usr to 1300M.
bare minimum /usr for all sets on amd64 is 920M used space, and we need
some more for upgrades, as well as relinking libs and kernels.
OK deraadt@
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 77082a776d6..e7585ed0a60 100644 --- a/sbin/disklabel/editor.c +++ b/sbin/disklabel/editor.c @@ -1,4 +1,4 @@ -/* $OpenBSD: editor.c,v 1.356 2019/03/31 02:27:28 krw Exp $ */ +/* $OpenBSD: editor.c,v 1.357 2019/03/31 14:06:46 phessler Exp $ */ /* * Copyright (c) 1997-2000 Todd C. Miller <millert@openbsd.org> @@ -86,7 +86,7 @@ struct space_allocation alloc_big[] = { { MEG(80), MEG(256), 10, "swap" }, { MEG(120), GIG(4), 8, "/tmp" }, { MEG(80), GIG(4), 13, "/var" }, - { MEG(900), GIG(2), 5, "/usr" }, + { MEG(1300), GIG(2), 5, "/usr" }, { MEG(384), GIG(1), 3, "/usr/X11R6" }, { GIG(1), GIG(20), 15, "/usr/local" }, { MEG(1300), GIG(2), 2, "/usr/src" }, @@ -98,7 +98,7 @@ struct space_allocation alloc_big[] = { struct space_allocation alloc_medium[] = { { MEG(800), GIG(2), 5, "/" }, { MEG(80), MEG(256), 10, "swap" }, - { MEG(900), GIG(3), 78, "/usr" }, + { MEG(1300), GIG(3), 78, "/usr" }, { MEG(256), GIG(2), 7, "/home" } }; |