diff options
author | Florian Fainelli <florian@openwrt.org> | 2007-07-26 20:00:24 +0000 |
---|---|---|
committer | Florian Fainelli <florian@openwrt.org> | 2007-07-26 20:00:24 +0000 |
commit | 23fabc44475a201e1c6a4d95ddb9f56dac602bea (patch) | |
tree | 7fba4e30947b00a40329fe5ec7342d264fe70932 /package/rt2x00/src/rt2x00_compat.h | |
parent | ac8a4fb075d62b842a89ed4394e1231c3fcc2222 (diff) | |
download | upstream-23fabc44475a201e1c6a4d95ddb9f56dac602bea.tar.gz upstream-23fabc44475a201e1c6a4d95ddb9f56dac602bea.tar.bz2 upstream-23fabc44475a201e1c6a4d95ddb9f56dac602bea.zip |
Add rt2x00-mac80211 snapshot (#1916)
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@8184 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'package/rt2x00/src/rt2x00_compat.h')
-rw-r--r-- | package/rt2x00/src/rt2x00_compat.h | 60 |
1 files changed, 60 insertions, 0 deletions
diff --git a/package/rt2x00/src/rt2x00_compat.h b/package/rt2x00/src/rt2x00_compat.h new file mode 100644 index 0000000000..111c51ea36 --- /dev/null +++ b/package/rt2x00/src/rt2x00_compat.h @@ -0,0 +1,60 @@ +/* + * RT2X00 Compatability fixes for specific kernels. + */ +#ifndef RT2X00_COMPAT_H +#define RT2X00_COMPAT_H + +/* + * First include the 2 config headers. + * The rt2x00_config.h should overrule + * the kernel configuration. + */ +#include <linux/autoconf.h> +#include "rt2x00_config.h" + +#include <linux/kernel.h> +#include <linux/module.h> +#include <linux/version.h> + +/* + * Check minimal requirements. + */ +#if (!defined(CONFIG_MAC80211) && !defined(CONFIG_MAC80211_MODULE)) +#error mac80211 support not enabled in kernel! +#endif + +#if !defined(CONFIG_WLAN_80211) +#error 802.11 wlan card support not enabled in kernel! +#endif + +#if (defined(CONFIG_RT2400PCI) || defined(CONFIG_RT2500PCI) || defined(CONFIG_RT61PCI)) +#if (!defined(CONFIG_PCI) && !defined(CONFIG_PCI_MODULE)) +#error PCI has been disabled in your kernel! +#endif +#if (!defined(CONFIG_EEPROM_93CX6) && !defined(CONFIG_EEPROM_93CX6_MODULE)) +#error EEPROM_93CX6 has been disabled in your kernel! +#endif +#endif + +#if (defined(CONFIG_RT2500USB) || defined(CONFIG_RT73USB)) +#if (!defined(CONFIG_USB) && !defined(CONFIG_USB_MODULE)) +#error USB has been disabled in your kernel! +#endif +#endif + +#if (defined(CONFIG_RT61PCI) || defined(CONFIG_RT73USB)) +#if (!defined(CONFIG_FW_LOADER) && !defined(CONFIG_FW_LOADER_MODULE)) +#error Firmware loading has been disabled in your kernel! +#endif +#if (!defined(CONFIG_CRC_ITU_T) && !defined(CONFIG_CRC_ITU_T_MODULE)) +#error CRC_ITU_T loading has been disabled in your kernel! +#endif +#endif + +#if (defined(CONFIG_RT2400PCI_BUTTON) || defined(CONFIG_RT2500PCI_BUTTON) || defined(CONFIG_RT61PCI_BUTTON)) +#if (!defined(CONFIG_RFKILL) && !defined (CONFIG_RFKILL_MODULE)) +#error RFKILL has been disabled in your kernel! +#endif +#endif + +#endif /* RT2X00_COMPAT_H */ |