From owner-freebsd-stable@FreeBSD.ORG Sun Apr 22 14:14:02 2012 Return-Path: Delivered-To: freebsd-stable@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 09CEA106566C for ; Sun, 22 Apr 2012 14:14:02 +0000 (UTC) (envelope-from marius@alchemy.franken.de) Received: from alchemy.franken.de (alchemy.franken.de [194.94.249.214]) by mx1.freebsd.org (Postfix) with ESMTP id 977FF8FC0A for ; Sun, 22 Apr 2012 14:14:01 +0000 (UTC) Received: from alchemy.franken.de (localhost [127.0.0.1]) by alchemy.franken.de (8.14.4/8.14.4/ALCHEMY.FRANKEN.DE) with ESMTP id q3MEDT1K065487; Sun, 22 Apr 2012 16:13:30 +0200 (CEST) (envelope-from marius@alchemy.franken.de) Received: (from marius@localhost) by alchemy.franken.de (8.14.4/8.14.4/Submit) id q3MEDTxe065486; Sun, 22 Apr 2012 16:13:29 +0200 (CEST) (envelope-from marius) Date: Sun, 22 Apr 2012 16:13:29 +0200 From: Marius Strobl To: Daniel Braniss Message-ID: <20120422141329.GA65465@alchemy.franken.de> References: Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: User-Agent: Mutt/1.4.2.3i Cc: freebsd-stable@freebsd.org Subject: Re: lost devices in 8.3 X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Production branch of FreeBSD source code List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 22 Apr 2012 14:14:02 -0000 On Sun, Apr 22, 2012 at 12:17:45PM +0300, Daniel Braniss wrote: > hi, > I'm trying to upgrade this old opteron box, which is running 8.2, but > when booting 8.3 the disks disappear. > > with 8.2: > ... > atapci1@pci0:0:7:1: class=0x01018a card=0x74691022 chip=0x74691022 > rev=0x03 hdr=0x00 > vendor = 'Advanced Micro Devices (AMD)' > device = 'UltraATA/133 Controller (AMD-8111)' > class = mass storage > subclass = ATA > ... > atapci0@pci0:3:5:0: class=0x010400 card=0x61141095 chip=0x31141095 > rev=0x02 hdr=0x00 > vendor = 'Silicon Image Inc (Was: CMD Technology Inc)' > device = 'SATALink/SATARaid Controller (Sil 3114)' > class = mass storage > subclass = RAID > > but none on 8.3: > none0@pci0:0:7:1: class=0x01018a card=0x74691022 chip=0x74691022 > rev=0x03 hdr=0x00 > vendor = 'Advanced Micro Devices (AMD)' > device = 'UltraATA/133 Controller (AMD-8111)' > class = mass storage > subclass = ATA > ... > none3@pci0:3:5:0: class=0x018000 card=0x31141095 chip=0x31141095 > rev=0x02 hdr=0x00 > vendor = 'Silicon Image Inc (Was: CMD Technology Inc)' > device = 'SATALink/SATARaid Controller (Sil 3114)' > class = mass storage > > and the only diff in the configuration is that 8.3 has: > options ATA_CAM > nodevice ata You need "device ata". > nodevice atadisk # ATA disk drives > nodevice ataraid # ATA RAID drives > nodevice atapicd # ATAPI CDROM drives > nodevice atapifd # ATAPI floppy drives > nodevice atapist # ATAPI tape drives > Marius