From owner-freebsd-current Fri Apr 14 3:42:37 2000 Delivered-To: freebsd-current@freebsd.org Received: from twilight.bastard.co.uk (twilight.bastard.co.uk [193.164.171.29]) by hub.freebsd.org (Postfix) with ESMTP id 8366937B630 for ; Fri, 14 Apr 2000 03:42:34 -0700 (PDT) (envelope-from ashp@bastard.co.uk) Received: from ashp by twilight.bastard.co.uk with local (Exim 3.13 #1) id 12g3Xv-000G7L-00 for freebsd-current@freebsd.org; Fri, 14 Apr 2000 11:41:55 +0100 Date: Fri, 14 Apr 2000 11:41:55 +0100 From: Ashley Penney To: freebsd-current@freebsd.org Subject: Problems with MAKEDEV. Message-ID: <20000414114155.A61941@twilight.bastard.co.uk> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 1.0.1i Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG When booting up I noticed the block device warning message. I did some investigation and discovered that some ad4/ad5 devices were still block ones. It seems that the MAKEDEV script only makes up to ad3, but my disks are on ad4/ad5 (ATA-66, Abit BP6). Simply adding ad4 ad5 onto the script fixes it, but it's not the best fix, I feel. --- MAKEDEV.old Fri Apr 14 12:40:08 2000 +++ MAKEDEV Fri Apr 14 12:39:45 2000 @@ -232,7 +232,7 @@ sh MAKEDEV std # standard sh MAKEDEV fd0 fd1 # bdev, floppy disk sh MAKEDEV da0 da1 da2 da3 # bdev, SCSI disk - sh MAKEDEV ad0 ad1 ad2 ad3 # bdev, ATA disk + sh MAKEDEV ad0 ad1 ad2 ad3 ad4 ad5 # bdev, ATA disk sh MAKEDEV acd0 afd0 ast0 # bdev, ATAPI devices sh MAKEDEV wd0 wd1 wd2 wd3 # bdev, OLD disk sh MAKEDEV wcd0 wfd0 wst0 # bdev, OLD ATAPI devs -- Ashley Penney. Internet Weenie. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message