aboutsummaryrefslogtreecommitdiffstats
path: root/package/rt2x00/src
diff options
context:
space:
mode:
authorNicolas Thill <nico@openwrt.org>2007-08-30 22:24:16 +0000
committerNicolas Thill <nico@openwrt.org>2007-08-30 22:24:16 +0000
commit6826d08dbd54196c2e762051bbc49c9d27a25343 (patch)
treef54e29f601380998ef27d31e4d800cd7b5b752b8 /package/rt2x00/src
parent72a6625fd037eddfcf71fb5d0be36354bc1ea2f0 (diff)
downloadupstream-6826d08dbd54196c2e762051bbc49c9d27a25343.tar.gz
upstream-6826d08dbd54196c2e762051bbc49c9d27a25343.tar.bz2
upstream-6826d08dbd54196c2e762051bbc49c9d27a25343.zip
more rt2x00 fixes (thanks to sn9):
* pkg: add missing kmod dependencies and autoloads * src: change #warning to #error when checking kconfig * src: remove uneeded config file git-svn-id: svn://svn.openwrt.org/openwrt/trunk@8560 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'package/rt2x00/src')
-rw-r--r--package/rt2x00/src/config41
-rw-r--r--package/rt2x00/src/rt2x00_compat.h2
2 files changed, 1 insertions, 42 deletions
diff --git a/package/rt2x00/src/config b/package/rt2x00/src/config
deleted file mode 100644
index 8a099118b2..0000000000
--- a/package/rt2x00/src/config
+++ /dev/null
@@ -1,41 +0,0 @@
-# rt2x00 configuration
-# All configuration options can be enabled
-# by setting the value to 'y'. To disable
-# the option it should be set to 'n'.
-
-#
-# RT2X00 generic support
-#
-
-# Enable rt2x00 support
-CONFIG_RT2X00=y
-# Enable rt2x00 debug output
-CONFIG_RT2X00_DEBUG=y
-# Enable rt2x00 debugfs support
-CONFIG_RT2X00_DEBUGFS=n
-# Enable rt2x00 asm file creation
-CONFIG_RT2X00_ASM=n
-
-#
-# RT2X00 driver support
-#
-# Enable rt2400pci support
-CONFIG_RT2400PCI=y
-# Enable rt2400pci hardware button support (requires rfkill)
-CONFIG_RT2400PCI_BUTTON=n
-
-# Enable rt2500pci support
-CONFIG_RT2500PCI=y
-# Enable rt2500pci hardware button support (requires rfkill)
-CONFIG_RT2500PCI_BUTTON=n
-
-# Enable rt2500usb support
-CONFIG_RT2500USB=y
-
-# Enable rt61pci support
-CONFIG_RT61PCI=y
-# Enable rt61pci hardware button support (requires rfkill)
-CONFIG_RT61PCI_BUTTON=n
-
-# Enable rt73usb support
-CONFIG_RT73USB=y
diff --git a/package/rt2x00/src/rt2x00_compat.h b/package/rt2x00/src/rt2x00_compat.h
index ca51224717..83d4f9904d 100644
--- a/package/rt2x00/src/rt2x00_compat.h
+++ b/package/rt2x00/src/rt2x00_compat.h
@@ -38,7 +38,7 @@
#if (defined(CONFIG_RT2500USB) || defined(CONFIG_RT73USB))
#if (!defined(CONFIG_USB) && !defined(CONFIG_USB_MODULE))
-#warning USB has been disabled in your kernel!
+#error USB has been disabled in your kernel!
#endif
#endif