diff options
author | jkh <jkh@FreeBSD.org> | 1995-05-17 15:41:52 +0000 |
---|---|---|
committer | jkh <jkh@FreeBSD.org> | 1995-05-17 15:41:52 +0000 |
commit | 1e842985cba826cb510fd2502bc923a44e693475 (patch) | |
tree | 673dd3049103de0f84b87439c793a68fce3cbebe /usr.sbin/sade/label.c | |
parent | 51db685ce5136b113343b379f9e1ff5110ce2097 (diff) | |
download | FreeBSD-src-1e842985cba826cb510fd2502bc923a44e693475.zip FreeBSD-src-1e842985cba826cb510fd2502bc923a44e693475.tar.gz |
Remove the seat-belts from the root partition creation code; for some
reason I'm *always* getting CHUNK_PAST_1024 set now, even when it's
definitely not! :-( Poul, can you perhaps take a look? Thanks!
Diffstat (limited to 'usr.sbin/sade/label.c')
-rw-r--r-- | usr.sbin/sade/label.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/usr.sbin/sade/label.c b/usr.sbin/sade/label.c index 58feeef..f671a27 100644 --- a/usr.sbin/sade/label.c +++ b/usr.sbin/sade/label.c @@ -4,7 +4,7 @@ * This is probably the last program in the `sysinstall' line - the next * generation being essentially a complete rewrite. * - * $Id: label.c,v 1.2 1995/05/16 11:37:16 jkh Exp $ + * $Id: label.c,v 1.3 1995/05/17 14:39:45 jkh Exp $ * * Copyright (c) 1995 * Jordan Hubbard. All rights reserved. @@ -211,6 +211,7 @@ get_mountpoint(struct chunk *parent, struct chunk *me) return NULL; } else if (!strcmp(val, "/")) { +#if 0 if (parent) { if (parent->flags & CHUNK_PAST_1024) { msgConfirm("This region cannot be used for your root partition as\nit is past the 1024'th cylinder mark and the system would not be\nable to boot from it. Please pick another location for your\nroot partition and try again!"); @@ -221,6 +222,7 @@ get_mountpoint(struct chunk *parent, struct chunk *me) return NULL; } } +#endif if (me) me->flags |= CHUNK_IS_ROOT; } |