diff options
Diffstat (limited to 'target/linux/config/Config.in.netdevice')
-rw-r--r-- | target/linux/config/Config.in.netdevice | 191 |
1 files changed, 191 insertions, 0 deletions
diff --git a/target/linux/config/Config.in.netdevice b/target/linux/config/Config.in.netdevice new file mode 100644 index 000000000..49e772238 --- /dev/null +++ b/target/linux/config/Config.in.netdevice @@ -0,0 +1,191 @@ +menu "Network devices support" +depends on !ADK_LINUX_CRIS_FOXBOARD + +config ADK_KERNEL_NET_ETHERNET + boolean + default n + +config ADK_KERNEL_MII + boolean + default n + +config ADK_KERNEL_NET_PCI + boolean + default n + +config ADK_KERNEL_NETDEV_1000 + boolean + default n + +menu "Ethernet card support" + +config ADK_KPACKAGE_KMOD_NE2K_PCI + prompt "kmod-net-ne2k-pci............. NE2000 PCI driver" + select ADK_KERNEL_NET_ETHERNET + select ADK_KERNEL_NET_PCI + select ADK_KERNEL_MII + tristate + default n + help + NE2000 pci driver + +config ADK_KPACKAGE_KMOD_E100 + prompt "kmod-net-e100................. Intel(R) PRO/100+ driver" + select ADK_KERNEL_NET_ETHERNET + select ADK_KERNEL_NET_PCI + select ADK_KERNEL_MII + tristate + default n + help + Intel(R) PRO/100+ cards kernel support + +config ADK_KPACKAGE_KMOD_E1000 + prompt "kmod-net-e1000................ Intel(R) PRO/1000 Gigabit Ethernet driver" + select ADK_KERNEL_NET_ETHERNET + select ADK_KERNEL_NETDEV_1000 + tristate + default n + help + This driver supports Intel(R) PRO/1000 gigabit ethernet family of + adapters. For more information on how to identify your adapter, go + to the Adapter & Driver ID Guide at: + + <http://support.intel.com/support/network/adapter/pro100/21397.htm> + +endmenu + +config ADK_KERNEL_WIRELESS + boolean + default n + +config ADK_KERNEL_WIRELESS_EXT + boolean + default n + +config ADK_KERNEL_MAC80211_LEDS + bool + select ADK_KPACKAGE_KMOD_LEDS_CLASS + select ADK_KERNEL_NEW_LEDS + default n + +config ADK_KERNEL_WLAN_80211 + boolean + default n + +config ADK_KERNEL_RT2X00 + boolean + select ADK_KPACKAGE_KMOD_RT2X00 + select ADK_KPACKAGE_KMOD_FW_LOADER + select ADK_KPACKAGE_KMOD_EEPROM_93CX6 + default n + +config ADK_MOD_KERNEL_CFG80211 + tristate + default n + +config ADK_MOD_KERNEL_MAC80211 + tristate + select ADK_MOD_KERNEL_CFG80211 + select ADK_KPACKAGE_KMOD_CRYPTO_AES + select ADK_KPACKAGE_KMOD_CRYPTO_ECB + select ADK_KPACKAGE_KMOD_CRYPTO_ARC4 + select ADK_KERNEL_CRC32 + select ADK_KERNEL_WIRELESS + select ADK_KERNEL_WIRELESS_EXT + select ADK_KERNEL_WLAN_80211 + select ADK_KERNEL_MAC80211_LEDS + default n + +menu "Wireless card support" + +config ADK_KPACKAGE_KMOD_MAC80211 + prompt "kmod-mac80211................... mac80211 softmac" + tristate + select ADK_MOD_KERNEL_CFG80211 + select ADK_KPACKAGE_KMOD_CRYPTO_AES + select ADK_KPACKAGE_KMOD_CRYPTO_ECB + select ADK_KPACKAGE_KMOD_CRYPTO_ARC4 + select ADK_KERNEL_WIRELESS + select ADK_KERNEL_WIRELESS_EXT + select ADK_KERNEL_WLAN_80211 + select ADK_KERNEL_CRC32 + default n + +config ADK_KPACKAGE_KMOD_ATH5K + prompt "kmod-mac80211-ath5k............ Atheros 5xxx wireless cards" + tristate + select ADK_KERNEL_MAC80211_LEDS + depends on ADK_KPACKAGE_KMOD_MAC80211 + default n + help + Driver for Atheros 5xxx/24xx cards. + +config ADK_KERNEL_ATH5K_DEBUG + prompt "enable debugging info via debugfs" + depends on ADK_KPACKAGE_KMOD_ATH5K + default n + select ADK_KERNEL_DEBUG_FS + boolean + help + Atheros 5xxx debugging messages. + Say Y, if and you will get debug options for ath5k. + To use this, you need to mount debugfs: + mkdir /debug/ + mount -t debugfs debug /debug/ + You will get access to files under: + /debug/ath5k/phy0/ + To enable debug, pass the debug level to the debug module + parameter. For example: + insmod ath5k.ko debug=0x00000400 + +config ADK_KPACKAGE_KMOD_RT2X00 + tristate + default n + +config ADK_KPACKAGE_KMOD_RT2400PCI + prompt "kmod-mac80211-rt2400........... Ralink rt2400" + tristate + default n + select ADK_KERNEL_RT2X00 + select ADK_KERNEL_MAC80211_LEDS + depends on ADK_KPACKAGE_KMOD_MAC80211 + help + This adds support for rt2400 wireless chipset family. + Supported chips: RT2460. + +config ADK_KPACKAGE_KMOD_RT2500PCI + prompt "kmod-mac80211-rt2500........... Ralink rt2500" + tristate + default n + select ADK_KERNEL_RT2X00 + select ADK_KERNEL_MAC80211_LEDS + depends on ADK_KPACKAGE_KMOD_MAC80211 + help + This adds support for rt2500 wireless chipset family. + Supported chips: RT2560. + +config ADK_KPACKAGE_KMOD_RT61PCI + prompt "kmod-mac80211-rt2501........... Ralink rt2501/rt61" + tristate + default n + select ADK_KERNEL_RT2X00 + select ADK_KERNEL_MAC80211_LEDS + select ADK_KPACKAGE_KMOD_CRC_ITU_T + select ADK_PACKAGE_WIRELESS_FIRMWARE_RT61 + depends on ADK_KPACKAGE_KMOD_MAC80211 + help + This adds support for rt2501 wireless chipset family. + Supported chips: RT2561, RT2561S & RT2661. + +config ADK_KERNEL_RT2X00_DEBUG + prompt "enable debugging info" + depends on ADK_KPACKAGE_KMOD_RT61PCI || \ + ADK_KPACKAGE_KMOD_RT2500PCI || ADK_KPACKAGE_KMOD_RT2400PCI + default n + boolean + help + +source package/mac80211/Config.in + +endmenu +endmenu |