From owner-freebsd-hackers Fri Aug 25 09:44:57 1995 Return-Path: hackers-owner Received: (from majordom@localhost) by freefall.FreeBSD.org (8.6.11/8.6.6) id JAA15389 for hackers-outgoing; Fri, 25 Aug 1995 09:44:57 -0700 Received: from godzilla.zeta.org.au (godzilla.zeta.org.au [203.2.228.34]) by freefall.FreeBSD.org (8.6.11/8.6.6) with ESMTP id JAA15374 for ; Fri, 25 Aug 1995 09:44:51 -0700 Received: (from bde@localhost) by godzilla.zeta.org.au (8.6.9/8.6.9) id CAA24661; Sat, 26 Aug 1995 02:38:58 +1000 Date: Sat, 26 Aug 1995 02:38:58 +1000 From: Bruce Evans Message-Id: <199508251638.CAA24661@godzilla.zeta.org.au> To: luigi@labinfo.iet.unipi.it, purna@cs.shizuoka.ac.jp Subject: Re: Help installing IDE CD-ROM driver Cc: dfr@render.com, hackers@freebsd.org Sender: hackers-owner@freebsd.org Precedence: bulk >> I tried accessing the drive by "mount -r /dev/wcd0c /cdrom". But, it failed. >> On the console, the following messages appeared (YWP is the hostname): >I think you should rather use > mount -t cd9660 /dev/wcd0a /cdrom In 2.2-current, MAKEDEV only creates the 'c' partition. This is probably bogus. The 'c' partition is actually the 'a' partition (it has minor 0). This is certainly bogus. The wcd*) case is similar to the cd*|mcd*|scd*) and should be merged. The matcd*) case is not so similar. There is a second set of `l' (lockable) devices and the `c' partition is abused to provide a different interface (this will have to be changed when all disk drivers use the slice code. I haven't been able to remove the old disklabel support because beelyuns of cd drivers depend on it. The slice code doesn't do much for readonly disks, but it should save beelyuns of cd drivers from duplicating support for label ioctls). Bruce