Source-Changes-HG archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
[src/thorpej_scsipi]: src/sys/arch ahc compiles now, and it works on sparc64 ...
details: https://anonhg.NetBSD.org/src/rev/c2beaeee1aec
branches: thorpej_scsipi
changeset: 477456:c2beaeee1aec
user: bouyer <bouyer%NetBSD.org@localhost>
date: Mon Apr 02 16:28:20 2001 +0000
description:
ahc compiles now, and it works on sparc64 so I can't see why it wouldn't
work on something else :)
diffstat:
sys/arch/alpha/conf/GENERIC | 10 +++++-----
sys/arch/arc/conf/GENERIC | 8 ++++----
sys/arch/atari/conf/GENERIC | 6 +++---
sys/arch/cobalt/conf/GENERIC | 8 ++++----
sys/arch/i386/conf/GENERIC | 12 ++++++------
sys/arch/macppc/conf/GENERIC | 8 ++++----
6 files changed, 26 insertions(+), 26 deletions(-)
diffs (222 lines):
diff -r 256326ede7fe -r c2beaeee1aec sys/arch/alpha/conf/GENERIC
--- a/sys/arch/alpha/conf/GENERIC Mon Apr 02 16:22:55 2001 +0000
+++ b/sys/arch/alpha/conf/GENERIC Mon Apr 02 16:28:20 2001 +0000
@@ -1,4 +1,4 @@
-# $NetBSD: GENERIC,v 1.130.2.7 2001/03/27 13:13:54 bouyer Exp $
+# $NetBSD: GENERIC,v 1.130.2.8 2001/04/02 16:28:20 bouyer Exp $
#
# Generic Alpha kernel. Enough to get booted, etc., but not much more.
#
@@ -6,7 +6,7 @@
include "arch/alpha/conf/std.alpha"
-#ident "GENERIC-$Revision: 1.130.2.7 $"
+#ident "GENERIC-$Revision: 1.130.2.8 $"
maxusers 32
@@ -206,7 +206,7 @@
#options ADW_WDTR_DISABLE # disable WDTR
#options ADW_SDTR_DISABLE # disable SDTR
#options ADW_TAGQ_DISABLE # disable Tag Queuing
-#ahc* at pci? dev ? function ? # Adaptec [23]94x, aic78x0 SCSI
+ahc* at pci? dev ? function ? # Adaptec [23]94x, aic78x0 SCSI
bha* at pci? dev ? function ? # BusLogic 9xx SCSI (untested)
cac* at pci? dev ? function ? # Compaq array controller (untested)
cy* at pci? dev ? function ? # Cyclades Cyclom-Y (untested)
@@ -326,7 +326,7 @@
# EISA devices
ahb* at eisa? slot ? # Adaptec 174[024] SCSI (unt.)
-#ahc* at eisa? slot ? # Adaptec 274x, aic7770 SCSI
+ahc* at eisa? slot ? # Adaptec 274x, aic7770 SCSI
bha* at eisa? slot ? # BusLogic 7xx SCSI
ep* at eisa? slot ? # 3COM 3c579 Ethernet (untested)
fea* at eisa? slot ? # DEC DEFEA FDDI
@@ -351,7 +351,7 @@
scsibus* at adw?
scsibus* at aha?
scsibus* at ahb?
-#scsibus* at ahc?
+scsibus* at ahc?
scsibus* at aic?
scsibus* at asc?
scsibus* at bha?
diff -r 256326ede7fe -r c2beaeee1aec sys/arch/arc/conf/GENERIC
--- a/sys/arch/arc/conf/GENERIC Mon Apr 02 16:22:55 2001 +0000
+++ b/sys/arch/arc/conf/GENERIC Mon Apr 02 16:28:20 2001 +0000
@@ -1,4 +1,4 @@
-# $NetBSD: GENERIC,v 1.39.2.4 2001/03/28 18:20:25 bouyer Exp $
+# $NetBSD: GENERIC,v 1.39.2.5 2001/04/02 16:28:21 bouyer Exp $
# $OpenBSD: GENERIC,v 1.29 1999/08/29 12:14:03 niklas Exp $
#
# GENERIC -- everything that's currently supported
@@ -6,7 +6,7 @@
include "arch/arc/conf/std.arc"
-#ident "GENERIC-$Revision: 1.39.2.4 $"
+#ident "GENERIC-$Revision: 1.39.2.5 $"
maxusers 32 # estimated number of users
@@ -251,8 +251,8 @@
atapibus* at pciide? channel ?
tga* at pci? dev ? function ? # DEC ZLXp-E[123] Graphics
-#ahc* at pci? dev ? function ? # Adaptec [23]94x, aic78x0 SCSI
-#scsibus* at ahc?
+ahc* at pci? dev ? function ? # Adaptec [23]94x, aic78x0 SCSI
+scsibus* at ahc?
#### MII/PHY support
diff -r 256326ede7fe -r c2beaeee1aec sys/arch/atari/conf/GENERIC
--- a/sys/arch/atari/conf/GENERIC Mon Apr 02 16:22:55 2001 +0000
+++ b/sys/arch/atari/conf/GENERIC Mon Apr 02 16:28:20 2001 +0000
@@ -1,5 +1,5 @@
#
-# $NetBSD: GENERIC,v 1.55.2.3 2001/03/28 18:20:25 bouyer Exp $
+# $NetBSD: GENERIC,v 1.55.2.4 2001/04/02 16:28:22 bouyer Exp $
#
# Generic atari
#
@@ -8,7 +8,7 @@
include "arch/atari/conf/std.atari"
-#ident "GENERIC-$Revision: 1.55.2.3 $"
+#ident "GENERIC-$Revision: 1.55.2.4 $"
#
# Add support for about 16 users. This variable is used to size
@@ -202,7 +202,7 @@
pcibus0 at mainbus0 # PCI-bus
pci0 at pcibus0
-#ahc* at pci? dev ? function ? # Adaptec [23]94x, aic78x0 SCSI
+ahc* at pci? dev ? function ? # Adaptec [23]94x, aic78x0 SCSI
avmebus0 at mainbus0 # VME bus
vme0 at avmebus0
le0 at vme0 irq 5 # Lance ethernet (Riebl/PAM).
diff -r 256326ede7fe -r c2beaeee1aec sys/arch/cobalt/conf/GENERIC
--- a/sys/arch/cobalt/conf/GENERIC Mon Apr 02 16:22:55 2001 +0000
+++ b/sys/arch/cobalt/conf/GENERIC Mon Apr 02 16:28:20 2001 +0000
@@ -1,8 +1,8 @@
-# $NetBSD: GENERIC,v 1.13.2.5 2001/03/28 18:20:26 bouyer Exp $
+# $NetBSD: GENERIC,v 1.13.2.6 2001/04/02 16:28:22 bouyer Exp $
include "arch/cobalt/conf/std.cobalt"
-#ident "GENERIC-$Revision: 1.13.2.5 $"
+#ident "GENERIC-$Revision: 1.13.2.6 $"
maxusers 32
@@ -117,7 +117,7 @@
# PCI SCSI controllers
#adv* at pci? dev ? function ? # AdvanSys 1200[A,B], 9xx[U,UA]
#adw* at pci? dev ? function ? # AdvanSys 9xxUW SCSI
-#ahc* at pci? dev ? function ? # Adaptec [23]94x, aic78x0 SCSI
+ahc* at pci? dev ? function ? # Adaptec [23]94x, aic78x0 SCSI
#bha* at pci? dev ? function ? # BusLogic 9xx SCSI
#dpt* at pci? dev ? function ? # DPT SmartCache/SmartRAID
#isp* at pci? dev ? function ? # Qlogic ISP [12]0x0 SCSI/FC
@@ -127,7 +127,7 @@
# SCSI bus support
#scsibus* at adv?
#scsibus* at adw?
-#scsibus* at ahc?
+scsibus* at ahc?
#scsibus* at bha?
#scsibus* at dpt?
#scsibus* at isp?
diff -r 256326ede7fe -r c2beaeee1aec sys/arch/i386/conf/GENERIC
--- a/sys/arch/i386/conf/GENERIC Mon Apr 02 16:22:55 2001 +0000
+++ b/sys/arch/i386/conf/GENERIC Mon Apr 02 16:28:20 2001 +0000
@@ -1,11 +1,11 @@
-# $NetBSD: GENERIC,v 1.264.2.10 2001/03/27 13:08:52 bouyer Exp $
+# $NetBSD: GENERIC,v 1.264.2.11 2001/04/02 16:28:22 bouyer Exp $
#
# GENERIC -- everything that's currently supported
#
include "arch/i386/conf/std.i386"
-#ident "GENERIC-$Revision: 1.264.2.10 $"
+#ident "GENERIC-$Revision: 1.264.2.11 $"
maxusers 32 # estimated number of users
@@ -394,7 +394,7 @@
# PCI SCSI controllers
adv* at pci? dev ? function ? # AdvanSys 1200[A,B], 9xx[U,UA] SCSI
adw* at pci? dev ? function ? # AdvanSys 9x0UW[D], 3940U[2,3]W SCSI
-#ahc* at pci? dev ? function ? # Adaptec [23]94x, aic78x0 SCSI
+ahc* at pci? dev ? function ? # Adaptec [23]94x, aic78x0 SCSI
bha* at pci? dev ? function ? # BusLogic 9xx SCSI
dpt* at pci? dev ? function ? # DPT SmartCache/SmartRAID
isp* at pci? dev ? function ? # Qlogic ISP [12]0x0 SCSI/FibreChannel
@@ -404,7 +404,7 @@
# EISA SCSI controllers
ahb* at eisa? slot ? # Adaptec 174[02] SCSI
-#ahc* at eisa? slot ? # Adaptec 274x, aic7770 SCSI
+ahc* at eisa? slot ? # Adaptec 274x, aic7770 SCSI
bha* at eisa? slot ? # BusLogic 7xx SCSI
dpt* at eisa? slot ? # DPT EATA SCSI
uha* at eisa? slot ? # UltraStor 24f SCSI
@@ -421,7 +421,7 @@
adv0 at isa? port ? irq ? drq ? # AdvanSys APB-514[02] SCSI
aha0 at isa? port 0x330 irq ? drq ? # Adaptec 154[02] SCSI
aha1 at isa? port 0x334 irq ? drq ?
-#ahc0 at isa? port ? irq ? # Adaptec 284x SCSI
+ahc0 at isa? port ? irq ? # Adaptec 284x SCSI
aic0 at isa? port 0x340 irq 11 # Adaptec 152[02] SCSI
bha0 at isa? port 0x330 irq ? drq ? # BusLogic [457]4X SCSI
bha1 at isa? port 0x334 irq ? drq ?
@@ -443,7 +443,7 @@
scsibus* at adw?
scsibus* at aha?
scsibus* at ahb?
-#scsibus* at ahc?
+scsibus* at ahc?
scsibus* at aic?
scsibus* at bha?
scsibus* at dpt?
diff -r 256326ede7fe -r c2beaeee1aec sys/arch/macppc/conf/GENERIC
--- a/sys/arch/macppc/conf/GENERIC Mon Apr 02 16:22:55 2001 +0000
+++ b/sys/arch/macppc/conf/GENERIC Mon Apr 02 16:28:20 2001 +0000
@@ -1,11 +1,11 @@
-# $NetBSD: GENERIC,v 1.39.2.8 2001/03/28 18:20:26 bouyer Exp $
+# $NetBSD: GENERIC,v 1.39.2.9 2001/04/02 16:28:23 bouyer Exp $
#
# GENERIC -- everything that's currently supported
#
include "arch/macppc/conf/std.macppc"
-#ident "GENERIC-$Revision: 1.39.2.8 $"
+#ident "GENERIC-$Revision: 1.39.2.9 $"
maxusers 32
@@ -142,7 +142,7 @@
#options TLP_MATCH_21140
#options TLP_MATCH_21142
adv* at pci? dev ? function ? # AdvanSys 1200[A,B], 9xx[U,UA] SCSI
-#ahc* at pci? dev ? function ? # Adaptec 294x, aic78x0 SCSI
+ahc* at pci? dev ? function ? # Adaptec 294x, aic78x0 SCSI
bha* at pci? dev ? function ? # BusLogic 9xx SCSI
isp* at pci? dev ? function ? # Qlogic ISP 10x0/2xx0 SCSI/Fibre Chan
siop* at pci? dev ? function ? # NCR 53c8xx SCSI
@@ -208,7 +208,7 @@
wsmouse0 at ams?
scsibus* at adv?
-#scsibus* at ahc?
+scsibus* at ahc?
scsibus* at bha?
scsibus* at isp?
scsibus* at esp?
Home |
Main Index |
Thread Index |
Old Index