From owner-freebsd-scsi Sat Aug 14 4:58:33 1999 Delivered-To: freebsd-scsi@freebsd.org Received: from cybernet.in.th (www.cybernet.in.th [203.149.3.222]) by hub.freebsd.org (Postfix) with SMTP id E455B14C2D for ; Sat, 14 Aug 1999 04:58:23 -0700 (PDT) (envelope-from bunlu@cybernet.in.th) Received: (qmail 19757 invoked by uid 555); 14 Aug 1999 11:56:16 -0000 Message-ID: <19990814115616.19642.qmail@cybernet.in.th> Date: 14 Aug 1999 18:56:16 +0700 Reply-To: From: Bunlu Nantaeng To: Jonathan Lemon Cc: freebsd-scsi@freebsd.org Subject: Re: Re: nead help on Compaq ida disk. X-Sender: bunlu@cybernet.in.th (via http://mail.cybernet.in.th/) X-Client: 203.149.3.217 MIME-Version: 1.0 Content-Type: text/plain; charset=x-user-defined Content-Transfer-Encoding: 8bit Sender: owner-freebsd-scsi@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org > Date: Fri, 13 Aug 1999 09:46:27 -0500 (CDT) > From: Jonathan Lemon > Subject: Re: nead help on Compaq ida disk. > > >--- > >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 > Thank you very for your help. But your patch below make ida0(not id0), right? I tried and got kernel panic when I enter "fdisk /dev/ida0". So, I edit your patch for make "/dev/id0". Result is the same panic! I'm running 3.2-STABLE on Compaq Proliant 1600 with Compaq Samart Array 221 Controller. Any idea? -- Bunlu Nantaeng > 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