From owner-freebsd-current@FreeBSD.ORG Sun Nov 23 17:08:16 2008 Return-Path: Delivered-To: freebsd-current@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 8C4D81065679 for ; Sun, 23 Nov 2008 17:08:16 +0000 (UTC) (envelope-from t.ichinoseki@nifty.com) Received: from defg501.nifty.com (defg501.nifty.com [202.248.238.128]) by mx1.freebsd.org (Postfix) with ESMTP id 1110E8FC20 for ; Sun, 23 Nov 2008 17:08:15 +0000 (UTC) (envelope-from t.ichinoseki@nifty.com) Received: from pbsg500.nifty.com (pbsg500p.nifty.com [172.22.128.70])by defg501.nifty.com with ESMTP id mANGw2ME018782 for ; Mon, 24 Nov 2008 01:58:02 +0900 Received: from localhost (122x209x23x210.ap122.ftth.ucom.ne.jp [122.209.23.210])by pbsg500.nifty.com with ESMTP id mANGvdtD031538; Mon, 24 Nov 2008 01:57:39 +0900 X-Nifty-SrcIP: [122.209.23.210] Date: Mon, 24 Nov 2008 01:57:07 +0900 (JST) Message-Id: <20081124.015707.02304508.t.ichinoseki@nifty.com> To: kvedulv@kvedulv.de From: Toshikazu ICHINOSEKI In-Reply-To: <20081116170041.GB5156@darkthrone.kvedulv.de> References: <20081116170041.GB5156@darkthrone.kvedulv.de> X-Mailer: Mew version 6.1 on Emacs 22.2 / Mule 5.0 (SAKAKI) Mime-Version: 1.0 Content-Type: Text/Plain; charset=us-ascii Content-Transfer-Encoding: 7bit X-Mailman-Approved-At: Mon, 24 Nov 2008 02:30:22 +0000 Cc: freebsd-current@freebsd.org Subject: Re: Unable to boot on ECS K7S5A X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 23 Nov 2008 17:08:16 -0000 Michael Moll wrote: > Hello, > > after upgrading to new -CURRENT sources, my box (ECS K7S5A board) is not > able to boot. I attached verbose boot-messages (dmesg.new) and for > reference the boot-messages of the older, working kernel (dmesg.old). > > As one of messages is "atapci0: unable to map interrupt" I suspect some > trouble in ATA oder ACPI code... Any hints? > Hi Michael, my ECS K7S5A box (ACPI disabled) has similar problem in recent -CURRENT. It crashes after probing ata disks in booting. Following patch makes my box to boot again. --- sys/dev/ata/chipsets/ata-sis.c.orig 2008-10-09 21:56:57.000000000 +0900 +++ sys/dev/ata/chipsets/ata-sis.c 2008-11-18 21:48:12.000000000 +0900 @@ -108,6 +108,9 @@ if (pci_get_vendor(dev) != ATA_SIS_ID) return ENXIO; + if (pci_get_class(dev) != PCIC_STORAGE) + return ENXIO; + if (!(idx = ata_find_chip(dev, ids, -pci_get_slot(dev)))) return ENXIO; -- Cheers, Toshikazu