summaryrefslogtreecommitdiff
path: root/package/kernel
diff options
context:
space:
mode:
authorVasilis Tsiligiannis <acinonyx@openwrt.gr>2011-02-02 19:37:30 +0000
committerVasilis Tsiligiannis <acinonyx@openwrt.gr>2011-02-02 19:37:30 +0000
commit1153135b7cbb2bd7e86d905a9d9f545622379bc9 (patch)
treed53c46e78be930047add84a509a517fd03607199 /package/kernel
parent7edc8ca5456d9743dd0075eb3cc5b04f4f24c8cc (diff)
downloadmtk-20170518-1153135b7cbb2bd7e86d905a9d9f545622379bc9.zip
mtk-20170518-1153135b7cbb2bd7e86d905a9d9f545622379bc9.tar.gz
mtk-20170518-1153135b7cbb2bd7e86d905a9d9f545622379bc9.tar.bz2
kernel/modules: Add ifb module (#8764)
SVN-Revision: 25323
Diffstat (limited to 'package/kernel')
-rw-r--r--package/kernel/modules/netdevices.mk16
1 files changed, 16 insertions, 0 deletions
diff --git a/package/kernel/modules/netdevices.mk b/package/kernel/modules/netdevices.mk
index 7b544c8..d2d6235 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))