summaryrefslogtreecommitdiff
path: root/sys/dev/raidframe
diff options
context:
space:
mode:
authoroster <oster@NetBSD.org>2000-03-31 01:20:43 +0000
committeroster <oster@NetBSD.org>2000-03-31 01:20:43 +0000
commitcd619796065e3a59233d231f2f1fadba239d2126 (patch)
treefcff0026d9fec1c9c593eb613a46089d15c80b8e /sys/dev/raidframe
parentfab7d466f37bc68232664133edfc366801ee657f (diff)
Print out the 'root' status of a RAID set during autoconfiguration.
Diffstat (limited to 'sys/dev/raidframe')
-rw-r--r--sys/dev/raidframe/rf_netbsdkintf.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/sys/dev/raidframe/rf_netbsdkintf.c b/sys/dev/raidframe/rf_netbsdkintf.c
index 6791a0f9ad4..ddb9c86d11b 100644
--- a/sys/dev/raidframe/rf_netbsdkintf.c
+++ b/sys/dev/raidframe/rf_netbsdkintf.c
@@ -1,4 +1,4 @@
-/* $NetBSD: rf_netbsdkintf.c,v 1.74 2000/03/30 12:45:40 augustss Exp $ */
+/* $NetBSD: rf_netbsdkintf.c,v 1.75 2000/03/31 01:20:43 oster Exp $ */
/*-
* Copyright (c) 1996, 1997, 1998 The NetBSD Foundation, Inc.
* All rights reserved.
@@ -2794,6 +2794,8 @@ rf_print_component_label(clabel)
(char) clabel->parityConfig, clabel->blockSize,
clabel->numBlocks);
printf(" Autoconfig: %s\n", clabel->autoconfigure ? "Yes" : "No" );
+ printf(" Contains root partition: %s\n",
+ clabel->root_partition ? "Yes" : "No" );
printf(" Last configured as: raid%d\n", clabel->last_unit );
#if 0
printf(" Config order: %d\n", clabel->config_order);