diff options
author | kuriyama <kuriyama@FreeBSD.org> | 2002-12-15 12:05:00 +0000 |
---|---|---|
committer | kuriyama <kuriyama@FreeBSD.org> | 2002-12-15 12:05:00 +0000 |
commit | 01b4b67a6d1f8c6c842c0777669a4d7ecfa1b43b (patch) | |
tree | beacacd51a4d8dd1f2ddfddac835a70ab2f55a89 /usr.sbin | |
parent | e6e7b3cddd35aac138869d54d4e724c46361d21c (diff) | |
download | FreeBSD-src-01b4b67a6d1f8c6c842c0777669a4d7ecfa1b43b.zip FreeBSD-src-01b4b67a6d1f8c6c842c0777669a4d7ecfa1b43b.tar.gz |
Update ROOT_MIN_SIZE for i386 to 118MB (and other ROOT_*_SIZE).
Diffstat (limited to 'usr.sbin')
-rw-r--r-- | usr.sbin/sade/help/partition.hlp | 2 | ||||
-rw-r--r-- | usr.sbin/sade/label.c | 8 | ||||
-rw-r--r-- | usr.sbin/sysinstall/help/partition.hlp | 2 | ||||
-rw-r--r-- | usr.sbin/sysinstall/label.c | 8 |
4 files changed, 10 insertions, 10 deletions
diff --git a/usr.sbin/sade/help/partition.hlp b/usr.sbin/sade/help/partition.hlp index 19cfb5a..8b84795 100644 --- a/usr.sbin/sade/help/partition.hlp +++ b/usr.sbin/sade/help/partition.hlp @@ -27,7 +27,7 @@ filesystems: Name Purpose Min Size? Optional? ---- ------- --------- --------- - / Root filesystem 20MB No + / Root filesystem 118MB No swap Swap space 2 * MEM No /usr System & user files 80MB or more Yes diff --git a/usr.sbin/sade/label.c b/usr.sbin/sade/label.c index fca61c1..6ef1526 100644 --- a/usr.sbin/sade/label.c +++ b/usr.sbin/sade/label.c @@ -60,9 +60,9 @@ * Minimum partition sizes */ #if defined(__alpha__) || defined(__ia64__) || defined(__sparc64__) -#define ROOT_MIN_SIZE 40 +#define ROOT_MIN_SIZE 128 #else -#define ROOT_MIN_SIZE 30 +#define ROOT_MIN_SIZE 118 #endif #define SWAP_MIN_SIZE 32 #define USR_MIN_SIZE 80 @@ -80,7 +80,7 @@ * for this configuration we scale things relative to the NOM vs DEFAULT * sizes. If the disk is larger then /home will get any remaining space. */ -#define ROOT_DEFAULT_SIZE 128 +#define ROOT_DEFAULT_SIZE 256 #define USR_DEFAULT_SIZE 3072 #define VAR_DEFAULT_SIZE 256 #define TMP_DEFAULT_SIZE 256 @@ -91,7 +91,7 @@ * when we have insufficient disk space. If this isn't sufficient we scale * down using the MIN sizes instead. */ -#define ROOT_NOMINAL_SIZE 128 +#define ROOT_NOMINAL_SIZE 192 #define USR_NOMINAL_SIZE 512 #define VAR_NOMINAL_SIZE 64 #define TMP_NOMINAL_SIZE 64 diff --git a/usr.sbin/sysinstall/help/partition.hlp b/usr.sbin/sysinstall/help/partition.hlp index 19cfb5a..8b84795 100644 --- a/usr.sbin/sysinstall/help/partition.hlp +++ b/usr.sbin/sysinstall/help/partition.hlp @@ -27,7 +27,7 @@ filesystems: Name Purpose Min Size? Optional? ---- ------- --------- --------- - / Root filesystem 20MB No + / Root filesystem 118MB No swap Swap space 2 * MEM No /usr System & user files 80MB or more Yes diff --git a/usr.sbin/sysinstall/label.c b/usr.sbin/sysinstall/label.c index fca61c1..6ef1526 100644 --- a/usr.sbin/sysinstall/label.c +++ b/usr.sbin/sysinstall/label.c @@ -60,9 +60,9 @@ * Minimum partition sizes */ #if defined(__alpha__) || defined(__ia64__) || defined(__sparc64__) -#define ROOT_MIN_SIZE 40 +#define ROOT_MIN_SIZE 128 #else -#define ROOT_MIN_SIZE 30 +#define ROOT_MIN_SIZE 118 #endif #define SWAP_MIN_SIZE 32 #define USR_MIN_SIZE 80 @@ -80,7 +80,7 @@ * for this configuration we scale things relative to the NOM vs DEFAULT * sizes. If the disk is larger then /home will get any remaining space. */ -#define ROOT_DEFAULT_SIZE 128 +#define ROOT_DEFAULT_SIZE 256 #define USR_DEFAULT_SIZE 3072 #define VAR_DEFAULT_SIZE 256 #define TMP_DEFAULT_SIZE 256 @@ -91,7 +91,7 @@ * when we have insufficient disk space. If this isn't sufficient we scale * down using the MIN sizes instead. */ -#define ROOT_NOMINAL_SIZE 128 +#define ROOT_NOMINAL_SIZE 192 #define USR_NOMINAL_SIZE 512 #define VAR_NOMINAL_SIZE 64 #define TMP_NOMINAL_SIZE 64 |