i386-only drivers

From: Philip Blundell (Philip.Blundell@pobox.com)
Date: Sun Mar 12 2000 - 08:33:22 EST


A handful of drivers contain i386 assembly code. It seems sensible to stop
them from being selected on other architectures.

p.

--- linux/drivers/net/Config.in Sun Mar 5 21:37:26 2000
+++ linux/drivers/net/Config.in Sat Mar 11 21:51:06 2000
@@ -167,7 +165,9 @@ if [ "$CONFIG_NET_ETHERNET" = "y" ]; the
    fi
    bool ' Pocket and portable adapters' CONFIG_NET_POCKET
    if [ "$CONFIG_NET_POCKET" = "y" ]; then
- tristate ' AT-LAN-TEC/RealTek pocket adapter support' CONFIG_ATP
+ if [ "$CONFIG_X86" = "y" ]; then
+ tristate ' AT-LAN-TEC/RealTek pocket adapter support' CONFIG_ATP
+ fi
       tristate ' D-Link DE600 pocket adapter support' CONFIG_DE600
       tristate ' D-Link DE620 pocket adapter support' CONFIG_DE620
    fi
--- linux/drivers/scsi/Config.in Sun Feb 27 23:06:26 2000
+++ linux/drivers/scsi/Config.in Sat Mar 11 21:52:07 2000
@@ -59,7 +59,9 @@ if [ "$CONFIG_SCSI_AIC7XXX" != "n" ]; th
    bool ' Collect statistics to report in /proc' CONFIG_AIC7XXX_PROC_STATS
    int ' Delay in seconds after SCSI bus reset' CONFIG_AIC7XXX_RESET_DELAY 5
 fi
-dep_tristate 'IBM ServeRAID support' CONFIG_SCSI_IPS $CONFIG_SCSI
+if [ "$CONFIG_X86" = "y" ]; then
+ dep_tristate 'IBM ServeRAID support' CONFIG_SCSI_IPS $CONFIG_SCSI
+fi
 dep_tristate 'AdvanSys SCSI support' CONFIG_SCSI_ADVANSYS $CONFIG_SCSI
 dep_tristate 'Always IN2000 SCSI support' CONFIG_SCSI_IN2000 $CONFIG_SCSI
 dep_tristate 'AM53/79C974 PCI SCSI support' CONFIG_SCSI_AM53C974 $CONFIG_SCSI
@@ -153,7 +155,9 @@ if [ "$CONFIG_PCI" = "y" ]; then
    dep_tristate 'Qlogic ISP FC SCSI support' CONFIG_SCSI_QLOGIC_FC $CONFIG_SCSI
    dep_tristate 'Qlogic QLA 1280 SCSI support' CONFIG_SCSI_QLOGIC_1280 $CONFIG_SCSI
 fi
-dep_tristate 'Seagate ST-02 and Future Domain TMC-8xx SCSI support' CONFIG_SCSI_SEAGATE $CONFIG_SCSI
+if [ "$CONFIG_X86" = "y" ]; then
+ dep_tristate 'Seagate ST-02 and Future Domain TMC-8xx SCSI support' CONFIG_SCSI_SEAGATE $CONFIG_SCSI
+fi
 if [ "$CONFIG_PCI" = "y" ]; then
    dep_tristate 'Tekram DC390(T) and Am53/79C974 SCSI support' CONFIG_SCSI_DC390T $CONFIG_SCSI
    if [ "$CONFIG_SCSI_DC390T" != "n" ]; then
@@ -166,7 +170,9 @@ dep_tristate 'UltraStor 14F/34F support'
       bool ' enable elevator sorting' CONFIG_SCSI_U14_34F_LINKED_COMMANDS
       int ' maximum number of queued commands' CONFIG_SCSI_U14_34F_MAX_TAGS 8
    fi
-dep_tristate 'UltraStor SCSI support' CONFIG_SCSI_ULTRASTOR $CONFIG_SCSI
+if [ "$CONFIG_X86" = "y" ]; then
+ dep_tristate 'UltraStor SCSI support' CONFIG_SCSI_ULTRASTOR $CONFIG_SCSI
+fi
 #
 # Note - this is a very special 'host' adapter that simulates the presence of some disks.
 # It can come in very handy for troubleshooting. Anyone else is welcome to use it - all

-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@vger.rutgers.edu
Please read the FAQ at http://www.tux.org/lkml/



This archive was generated by hypermail 2b29 : Wed Mar 15 2000 - 21:00:21 EST