summaryrefslogtreecommitdiffstats
path: root/sys/cam/cam_xpt.c
diff options
context:
space:
mode:
authormav <mav@FreeBSD.org>2013-10-24 10:31:02 +0000
committermav <mav@FreeBSD.org>2013-10-24 10:31:02 +0000
commit5411f6951ede72a782138783542ebb0cff454b91 (patch)
tree33d735cc797862e032546486fc2aa0551462b70f /sys/cam/cam_xpt.c
parentf15d281428aaade7000ee358c88389011c7398b8 (diff)
downloadFreeBSD-src-5411f6951ede72a782138783542ebb0cff454b91.zip
FreeBSD-src-5411f6951ede72a782138783542ebb0cff454b91.tar.gz
MFC r256533:
Unhide "Serial Number" lines from bootverbose. That information may be useful for system administration to have in hard copy (in logs) if one of several devices suddenly dies. Approved by: re (hrs)
Diffstat (limited to 'sys/cam/cam_xpt.c')
-rw-r--r--sys/cam/cam_xpt.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/cam/cam_xpt.c b/sys/cam/cam_xpt.c
index 01025ff..c14041f 100644
--- a/sys/cam/cam_xpt.c
+++ b/sys/cam/cam_xpt.c
@@ -1043,7 +1043,7 @@ xpt_announce_periph(struct cam_periph *periph, char *announce_string)
(struct sep_identify_data *)&path->device->ident_data);
else
printf("Unknown protocol device\n");
- if (bootverbose && path->device->serial_num_len > 0) {
+ if (path->device->serial_num_len > 0) {
/* Don't wrap the screen - print only the first 60 chars */
printf("%s%d: Serial Number %.60s\n", periph->periph_name,
periph->unit_number, path->device->serial_num);
OpenPOWER on IntegriCloud