<html><head><meta http-equiv="content-type" content="text/html; charset=UTF-8"></head><body>I checked the ahci code,  and the device id from pciconf -lv from freebsd system of my home box, I found current ahci code has only PCI_PRODUCT_NVIDIA_MCP77_AHCI_5 defined,  which is the id of my asus m3n78-cm on-board sata controller, and fit for the dmesg in which the ahci probed all my four west Digital Green disk<br />
<br />
[ambrosehua@lateaxfreebsd ~] pciconf -lv | grep -C 5 -i sata<br />
    subclass   = PCI-PCI<br />
ahci0@pci0:0:9:0:       class=0x010601 card=0x82f21043 chip=0x0ad410de rev=0xa2 hdr=0x00<br />
    vendor     = 'nVidia Corporation'<br />
`    device     = 'MCP78S [GeForce 8200] AHCI Controller'<br />
    class      = mass storage<br />
    subclass   = SATA<br />
here chip=0x0ad4 10de matches  pcidevs.h <br />
#define PCI_VENDOR_NVIDIA 0x10de    /* Nvidia Corporation */<br />
............<br />
#define PCI_PRODUCT_NVIDIA_MCP77_AHCI_5 0x0ad4    /* MCP77 AHCI */<br />
<br />
and ahci_attach.c<br />
<br />
    { PCI_VENDOR_NVIDIA,    PCI_PRODUCT_NVIDIA_MCP77_AHCI_5,<br />
        ahci_nvidia_mcp_attach, ahci_pci_detach, "NVidia-MCP77-SATA" },<br />
<br />
----------------原文信息-------------------<br />
发件人:Edward Berger <edwberger@gmail.com><br />
发件时间:2012-12-13 00:05:04<br />
收件人:ambrosehua <ambrosehua@wo.com.cn><br />
抄送:users@dragonflybsd.org<br />
主题:Re: Re: Are there install images avaliabe with USB4BSD on?<br />
My memory might be off, but I think this is a problem with nvidia
chipset AHCI not being fully supported in DragonFly.  I have an ASUS
atom/ion motherboard which fails installation with AHCI enabled in the
bios.  When I googled around I found an OpenBSD user had a similar
issue and reporting they just added a pci-id for it, (something like
MCP79 AHCI wasn't there originally) to fix their problem...  I haven't
had time to dig further and see if the same type of hack would work
under DragonFly.<p></p></body></html>