From owner-cvs-all Tue Jan 19 11:43:59 1999 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id LAA28783 for cvs-all-outgoing; Tue, 19 Jan 1999 11:43:59 -0800 (PST) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from fallout.campusview.indiana.edu (fallout.campusview.indiana.edu [149.159.1.1]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id LAA28769; Tue, 19 Jan 1999 11:43:53 -0800 (PST) (envelope-from jfieber@fallout.campusview.indiana.edu) Received: from localhost (jfieber@localhost) by fallout.campusview.indiana.edu (8.9.1/8.9.1) with ESMTP id OAA67338; Tue, 19 Jan 1999 14:43:34 -0500 (EST) Date: Tue, 19 Jan 1999 14:43:34 -0500 (EST) From: John Fieber To: Mikael Karpberg cc: Garrett Wollman , abial@nask.pl, dfr@FreeBSD.ORG, cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: Re: cvs commit: src/sys/sys bus.h src/sys/kern subr_bus.c In-Reply-To: <199901191901.UAA09951@ocean.campus.luth.se> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk On Tue, 19 Jan 1999, Mikael Karpberg wrote: > What's wrong with it? I mean, the exact format doesn't have to be exactly > like that, but something along those lines, instead of screenfulls of > useless messages every time you boot could really tidy the boot up, and > look much nicer to newbies. Boot -v could print exactly what it does today. They are not useless, but they could be made easier to read and I don't even think anything as revolutionary as a tabular format is necessary. Each device comes with a "probe line" followed by some other information. Even a subtle display change from this: da0 at ncr0 bus 0 target 0 lun 0 da0: Fixed Direct Access SCSI-2 device da0: 10.0MB/s transfers (10.0MHz, offset 8), Tagged Queueing Enabled da0: 1041MB (2131992 512 byte sectors: 255H 63S/T 132C) da1 at ncr0 bus 0 target 1 lun 0 da1: Fixed Direct Access SCSI-2 device da1: 10.0MB/s transfers (10.0MHz, offset 8), Tagged Queueing Enabled da1: 2049MB (4197405 512 byte sectors: 255H 63S/T 261C) cd0 at ncr0 bus 0 target 4 lun 0 cd0: Removable CD-ROM SCSI-2 device cd0: 4.237MB/s transfers (4.237MHz, offset 8) cd0: cd present [304767 x 2048 byte records] To this: da0 at ncr0 bus 0 target 0 lun 0 Fixed Direct Access SCSI-2 device 10.0MB/s transfers (10.0MHz, offset 8), Tagged Queueing Enabled 1041MB (2131992 512 byte sectors: 255H 63S/T 132C) da1 at ncr0 bus 0 target 1 lun 0 Fixed Direct Access SCSI-2 device 10.0MB/s transfers (10.0MHz, offset 8), Tagged Queueing Enabled 2049MB (4197405 512 byte sectors: 255H 63S/T 261C) cd0 at ncr0 bus 0 target 4 lun 0 Removable CD-ROM SCSI-2 device 4.237MB/s transfers (4.237MHz, offset 8) cd present [304767 x 2048 byte records] makes it quite a bit easier to quickly zero in on the information you are after. The long string of almost-the-same three or four letter device labels makes it cumbersome visually identify distinct devices in the list. If you want to see a real mess, watch a linux kernel booting.... -john To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message