From owner-freebsd-stable Fri Jul 2 7:26:30 1999 Delivered-To: freebsd-stable@freebsd.org Received: from relay.ucb.crimea.ua (relay.ucb.crimea.ua [212.110.138.1]) by hub.freebsd.org (Postfix) with ESMTP id F0FBA15234; Fri, 2 Jul 1999 07:24:59 -0700 (PDT) (envelope-from ru@ucb.crimea.ua) Received: (from ru@localhost) by relay.ucb.crimea.ua (8.9.3/8.9.3/UCB) id RAA77408; Fri, 2 Jul 1999 17:21:14 +0300 (EEST) (envelope-from ru) Date: Fri, 2 Jul 1999 17:21:14 +0300 From: Ruslan Ermilov To: Dag-Erling Smorgrav , "Jordan K. Hubbard" Cc: Randall Hopper , stable@freebsd.org Subject: Re: 3.2-RELEASE Feedback Message-ID: <19990702172114.A71410@relay.ucb.crimea.ua> Mail-Followup-To: Dag-Erling Smorgrav , "Jordan K. Hubbard" , Randall Hopper , stable@FreeBSD.ORG References: <19990626184311.A5290@ipass.net> Mime-Version: 1.0 Content-Type: multipart/mixed; boundary=nFreZHaLTZJo0R7j X-Mailer: Mutt 0.95.3i In-Reply-To: ; from Dag-Erling Smorgrav on Fri, Jul 02, 1999 at 03:52:01PM +0200 X-Operating-System: FreeBSD 3.2-STABLE i386 Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG --nFreZHaLTZJo0R7j Content-Type: text/plain; charset=us-ascii On Fri, Jul 02, 1999 at 03:52:01PM +0200, Dag-Erling Smorgrav wrote: > Randall Hopper writes: [...] > > 6) I didn't find a man page for ld.so, despite what man page for ldd says > > (this may be an artifact of the missing ld.so in compat22 on the German > > FreeBSD CD I downloaded). > > Methinks this is a known bug that was fixed before the final release > (the one that went to the CD press). > Hmm, src/libexec/rtld-elf/Makefile says "NOMAN=true" as of today. > > 7) wcd0 became acd0 in the kernel config file, but we still mount wcd0c. (?) > > Is this an oversight? It's in the default fstab for example. > > No, it's called acd in the config file to avoid name conflicts, but it > uses the same ol' major/minor. > It's sysinstall that puts `wcd' string into /etc/fstab. `wcd' devices are symlinked to `acd'. Patch is attached. Jordan? -- Ruslan Ermilov Sysadmin and DBA of the ru@ucb.crimea.ua United Commercial Bank, ru@FreeBSD.org FreeBSD committer, +380.652.247.647 Simferopol, Ukraine http://www.FreeBSD.org The Power To Serve http://www.oracle.com Enabling The Information Age --nFreZHaLTZJo0R7j Content-Type: text/plain; charset=us-ascii Content-Disposition: attachment; filename=p Index: devices.c =================================================================== RCS file: /usr/FreeBSD-CVS/src/release/sysinstall/devices.c,v retrieving revision 1.93 diff -u -r1.93 devices.c --- devices.c 1999/06/17 19:04:53 1.93 +++ devices.c 1999/07/02 14:12:19 @@ -66,7 +66,7 @@ { DEVICE_TYPE_CDROM, "mcd%da", "Mitsumi (old model) CDROM drive", 7, 0, 8, 4, 'b' }, { DEVICE_TYPE_CDROM, "scd%da", "Sony CDROM drive - CDU31/33A type", 16, 0, 8, 4, 'b' }, { DEVICE_TYPE_CDROM, "matcd%da", "Matsushita CDROM ('sound blaster' type)", 17, 0, 8, 4, 'b' }, - { DEVICE_TYPE_CDROM, "wcd%dc", "ATAPI IDE CDROM", 19, 2, 8, 4, 'b' }, + { DEVICE_TYPE_CDROM, "acd%dc", "ATAPI IDE CDROM", 19, 2, 8, 4, 'b' }, { DEVICE_TYPE_TAPE, "rsa%d", "SCSI tape drive", 14, 0, 16, 4, 'c' }, { DEVICE_TYPE_TAPE, "rwt%d", "Wangtek tape drive", 10, 0, 1, 4, 'c' }, { DEVICE_TYPE_DISK, "da%d", "SCSI disk device", 4, 65538, 8, 16, 'b' }, --nFreZHaLTZJo0R7j-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message