From owner-freebsd-scsi Fri Aug 13 7:46:18 1999 Delivered-To: freebsd-scsi@freebsd.org Received: from sumatra.americantv.com (sumatra.americantv.com [208.139.222.227]) by hub.freebsd.org (Postfix) with ESMTP id 9FA4714EEE for ; Fri, 13 Aug 1999 07:46:15 -0700 (PDT) (envelope-from jlemon@americantv.com) Received: from right.PCS (right.PCS [148.105.10.31]) by sumatra.americantv.com (8.8.5/8.8.5) with ESMTP id JAA05222; Fri, 13 Aug 1999 09:46:28 -0500 (CDT) Received: from free.pcs (free.PCS [148.105.10.51]) by right.PCS (8.8.5/8.6.4) with ESMTP id JAA27293; Fri, 13 Aug 1999 09:46:27 -0500 (CDT) Received: (from jlemon@localhost) by free.pcs (8.8.6/8.8.5) id JAA28600; Fri, 13 Aug 1999 09:46:27 -0500 (CDT) Date: Fri, 13 Aug 1999 09:46:27 -0500 (CDT) From: Jonathan Lemon Message-Id: <199908131446.JAA28600@free.pcs> To: bunlu@cybernet.in.th, scsi@freebsd.org Subject: Re: nead help on Compaq ida disk. X-Newsgroups: local.mail.freebsd-scsi In-Reply-To: Organization: Architecture and Operating System Fanatics Sender: owner-freebsd-scsi@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org In article you write: >--- >Probing for devices on PCI bus 2: >ida0: rev 0x03 int a irq 11 on pci2.0.0 >ida0: drvs=1 firm_rev=3.22 >ida0: unit 0 (id0): >id0: 20467MB (41917920 total sec), 5137 cyl, 255 head, 32 sec, bytes/sec 512 >ida: wdc vector stealing off (mode = never, boot major = 4) >--- >How can I mount my id0 disk? Since you're not doing vector stealing here, you need to mount the drives with the id0 device nodes. The following patch to MAKEDEV should allow creation of the appropriate /dev entries. -- Jonathan Index: MAKEDEV =================================================================== RCS file: /tuna/ncvs/src/etc/etc.i386/MAKEDEV,v retrieving revision 1.200 retrieving revision 1.201 diff -u -r1.200 -r1.201 --- MAKEDEV 1999/07/05 08:39:00 1.200 +++ MAKEDEV 1999/07/05 09:18:57 1.201 @@ -48,6 +48,7 @@ # vn* "vnode disks" # od* "optical disks" # fla* "M-Systems DiskOnChip" +# ida* "Compaq Smart-2 RAID" # # Console ports: # vty* virtual console devices for syscons/pcvt/codrv @@ -127,7 +128,7 @@ # ipl ipfilter control devices (ipl, ipnat, ipstate, ipauth) # kbd keyboard devices # -# $Id: MAKEDEV,v 1.200 1999/07/05 08:39:00 jkh Exp $ +# $Id: MAKEDEV,v 1.201 1999/07/05 09:18:57 msmith Exp $ # PATH=/sbin:/bin/:/usr/bin:/usr/sbin:$PATH @@ -297,11 +298,12 @@ ;; # Individual slices. -ad*s*|od*s*|sd*s*|da*s*|vn*s*|wd*s*|afd*s*|wfd*s*|fla*s*) +ad*s*|od*s*|sd*s*|da*s*|vn*s*|wd*s*|afd*s*|wfd*s*|fla*s*|ida*s*) umask $disk_umask case $i in ad*s*) name=ad; blk=30; chr=116;; afd*s*) name=afd; blk=32; chr=118;; + ida*s*) name=ida; blk=29; chr=109;; fla*s*) name=fla; blk=28; chr=102;; od*s*) name=od; blk=4; chr=13;; sd*s*) name=sd; blk=4; chr=13;; @@ -311,7 +313,7 @@ wfd*s*) name=wfd; blk=1; chr=87;; esac case $i in - afd*s*|fla*s*|wfd*s*) + afd*s*|ida*s*|fla*s*|wfd*s*) unit=`expr $i : '...\([0-9]*\)s'` slice=`expr $i : '...[0-9]*s\([0-9]*\)'` part=`expr $i : '...[0-9]*s[0-9]*\(.*\)'` @@ -470,11 +472,12 @@ umask 77 ;; -ad*|sd*|od*|da*|vn*|wd*|afd*|wfd*|fla*) +ad*|sd*|od*|da*|vn*|wd*|afd*|wfd*|fla*|ida*) umask $disk_umask case $i in ad*) name=ad; blk=30; chr=116;; afd*) name=afd; blk=32; chr=118;; + ida*) name=ida; blk=29; chr=109;; fla*) name=fla; blk=28; chr=102;; sd*) name=sd; blk=4; chr=13;; od*) name=od; blk=4; chr=13;; @@ -484,7 +487,7 @@ wfd*) name=wfd; blk=1; chr=87;; esac case $i in - afd*|fla*|wfd*) + afd*|ida*|fla*|wfd*) unit=`expr $i : '...\(.*\)'` ;; *) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-scsi" in the body of the message