Skip site navigation (1)Skip section navigation (2)
Date:      Fri, 14 Apr 2000 11:41:55 +0100
From:      Ashley Penney <ashp@bastard.co.uk>
To:        freebsd-current@freebsd.org
Subject:   Problems with MAKEDEV.
Message-ID:  <20000414114155.A61941@twilight.bastard.co.uk>

next in thread | raw e-mail | index | archive | help
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




Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?20000414114155.A61941>