Intel Core Duo vs. DragonFly 1.5.1 (possible SATA related)
Matthew Dillon
dillon at apollo.backplane.com
Mon Mar 27 08:05:19 PST 2006
I think this will do the job for DragonFly, but we need to test it
somehow and that will require burning a new CD. At the moment the
installer in HEAD has a memory allocator issue so it isn't entirely
straightforward.
-Matt
Index: ata-dma.c
===================================================================
RCS file: /cvs/src/sys/dev/disk/ata/ata-dma.c,v
retrieving revision 1.27
diff -u -r1.27 ata-dma.c
--- ata-dma.c 27 May 2005 21:12:51 -0000 1.27
+++ ata-dma.c 27 Mar 2006 15:55:29 -0000
@@ -143,6 +143,8 @@
#endif
switch (chiptype) {
+ case 0x27df8086: /* Intel ICH7 ATA */
+ case 0x27c48086: /* Intel ICH7M SATA */
case 0x266f8086: /* Intel ICH6 ATA */
case 0x26528086: /* Intel ICH6R/RW SATA */
case 0x26518086: /* Intel ICH6/W SATA */
Index: ata-pci.c
===================================================================
RCS file: /cvs/src/sys/dev/disk/ata/ata-pci.c,v
retrieving revision 1.21
diff -u -r1.21 ata-pci.c
--- ata-pci.c 27 May 2005 21:12:51 -0000 1.21
+++ ata-pci.c 27 Mar 2006 15:53:46 -0000
@@ -163,6 +163,12 @@
case 0x266f8086:
return "Intel ICH6R/RW ATA100 controller";
+ case 0x27df8086:
+ return "Intel ICH7 ATA controller";
+
+ case 0x27c48086:
+ return "Intel ICH7M SATA controller";
+
case 0x522910b9:
if (pci_get_revid(dev) >= 0xc4)
return "AcerLabs Aladdin ATA100 controller";
More information about the Kernel
mailing list