diff options
author | Vasilis Tsiligiannis <b_tsiligiannis@silverton.gr> | 2011-02-02 19:37:30 +0000 |
---|---|---|
committer | Vasilis Tsiligiannis <b_tsiligiannis@silverton.gr> | 2011-02-02 19:37:30 +0000 |
commit | 9b478a38a417536c368452c7a8416ba7024f78f3 (patch) | |
tree | 08e95d31da4e80467b506197be815455a3fe7b79 /package | |
parent | 01cfae1252f4f67b15e292ffbb9c4d160d9b271a (diff) | |
download | upstream-9b478a38a417536c368452c7a8416ba7024f78f3.tar.gz upstream-9b478a38a417536c368452c7a8416ba7024f78f3.tar.bz2 upstream-9b478a38a417536c368452c7a8416ba7024f78f3.zip |
[package] kernel/modules: Add ifb module (#8764)
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@25323 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'package')
-rw-r--r-- | package/kernel/modules/netdevices.mk | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/package/kernel/modules/netdevices.mk b/package/kernel/modules/netdevices.mk index 7b544c8e46..d2d6235f09 100644 --- a/package/kernel/modules/netdevices.mk +++ b/package/kernel/modules/netdevices.mk @@ -515,3 +515,19 @@ define KernelPackage/dummy/description endef $(eval $(call KernelPackage,dummy)) + +define KernelPackage/ifb + SUBMENU:=$(NETWORK_DEVICES_MENU) + TITLE:=Intermediate Functional Block support + KCONFIG:= \ + CONFIG_IFB \ + CONFIG_NET_CLS=y + FILES:=$(LINUX_DIR)/drivers/net/ifb.ko + AUTOLOAD:=$(call AutoLoad,34,ifb) +endef + +define KernelPackage/ifb/description + The Intermediate Functional Block +endef + +$(eval $(call KernelPackage,ifb)) |