diff options
author | Florian Fainelli <florian@openwrt.org> | 2006-11-06 15:34:12 +0000 |
---|---|---|
committer | Florian Fainelli <florian@openwrt.org> | 2006-11-06 15:34:12 +0000 |
commit | cc1a5ba87a14536fa94f1da0ca43ca596c0eaa62 (patch) | |
tree | 89100ae8ad40f280a4cf9b7a3c196eda7a4f90b0 | |
parent | 1e26feb48986d738dfda74bb60d96e99b2a86ba6 (diff) | |
download | upstream-cc1a5ba87a14536fa94f1da0ca43ca596c0eaa62.tar.gz upstream-cc1a5ba87a14536fa94f1da0ca43ca596c0eaa62.tar.bz2 upstream-cc1a5ba87a14536fa94f1da0ca43ca596c0eaa62.zip |
Add support for ne2000 pci NIC (#916)
SVN-Revision: 5451
-rw-r--r-- | package/kernel/modules/network.mk | 12 | ||||
-rw-r--r-- | target/linux/x86-2.6/config | 2 |
2 files changed, 13 insertions, 1 deletions
diff --git a/package/kernel/modules/network.mk b/package/kernel/modules/network.mk index d75a65bf6d..000d5206c3 100644 --- a/package/kernel/modules/network.mk +++ b/package/kernel/modules/network.mk @@ -306,6 +306,18 @@ define KernelPackage/r8169 endef $(eval $(call KernelPackage,r8169)) +define KernelPackage/ne2k-pci + TITLE:=ne2k-pci Ethernet Adapter kernel support + DESCRIPTION:=\ + ne2k-pci Ethernet Adapter kernel support. + FILES:=$(MODULES_DIR)/kernel/drivers/net/ne2k-pci.$(LINUX_KMOD_SUFFIX) + KCONFIG:=$(CONFIG_NE2K-PCI) + DEPENDS:=@LINUX_2_6_X86 + SUBMENU:=$(NDMENU) + AUTOLOAD:=$(call AutoLoad,50,ne2k-pci) +endef +$(eval $(call KernelPackage,ne2k-pci)) + define KernelPackage/ixp4xx-npe TITLE:=Intel(R) IXP4xx ethernet support DESCRIPTION:=\ diff --git a/target/linux/x86-2.6/config b/target/linux/x86-2.6/config index 81100c593b..3b5c0f2ecb 100644 --- a/target/linux/x86-2.6/config +++ b/target/linux/x86-2.6/config @@ -1035,7 +1035,7 @@ CONFIG_FORCEDETH=m CONFIG_E100=m # CONFIG_FEALNX is not set CONFIG_NATSEMI=m -# CONFIG_NE2K_PCI is not set +CONFIG_NE2K_PCI=m # CONFIG_8139CP is not set CONFIG_8139TOO=m CONFIG_8139TOO_PIO=y |