summaryrefslogtreecommitdiffstats
path: root/release
diff options
context:
space:
mode:
authorjkh <jkh@FreeBSD.org>1998-03-09 08:39:46 +0000
committerjkh <jkh@FreeBSD.org>1998-03-09 08:39:46 +0000
commit48a409bf2daf1f85a8ea93559331380ea14b8cb5 (patch)
treeedd2064d3bb477bb44e75c2b548cc0f8ddca9485 /release
parent79cce3bc9f4b3cdf19efdfdaa61a09b6c31ae8c3 (diff)
downloadFreeBSD-src-48a409bf2daf1f85a8ea93559331380ea14b8cb5.zip
FreeBSD-src-48a409bf2daf1f85a8ea93559331380ea14b8cb5.tar.gz
MF22: nuke compat slice for root.
Diffstat (limited to 'release')
-rw-r--r--release/sysinstall/config.c12
1 files changed, 2 insertions, 10 deletions
diff --git a/release/sysinstall/config.c b/release/sysinstall/config.c
index d903b23..3272f5a 100644
--- a/release/sysinstall/config.c
+++ b/release/sysinstall/config.c
@@ -4,7 +4,7 @@
* This is probably the last program in the `sysinstall' line - the next
* generation being essentially a complete rewrite.
*
- * $Id: config.c,v 1.104 1997/09/17 16:18:10 pst Exp $
+ * $Id: config.c,v 1.105 1998/03/07 08:59:22 jkh Exp $
*
* Copyright (c) 1995
* Jordan Hubbard. All rights reserved.
@@ -104,15 +104,7 @@ check_rootdev(Chunk **list, int n)
static char *
name_of(Chunk *c1)
{
- static char rootname[32];
-
- /* Our boot blocks can't deal with root partitions on slices - need the compatbility name */
- if (c1->type == part && c1->flags & CHUNK_IS_ROOT) {
- sprintf(rootname, "%sa", c1->disk->name);
- return rootname;
- }
- else
- return c1->name;
+ return c1->name;
}
static char *
OpenPOWER on IntegriCloud