diff options
author | Florian Fainelli <florian@openwrt.org> | 2006-08-22 12:40:33 +0000 |
---|---|---|
committer | Florian Fainelli <florian@openwrt.org> | 2006-08-22 12:40:33 +0000 |
commit | 42c12640af9aba1ab5e63c929a4a01dd6261a64d (patch) | |
tree | bc8fec4e66f21078667967dc09f31bd3a2413fc1 /package | |
parent | 4aede5b35cf67c149659ce0a76e1fd1bfdc349ae (diff) | |
download | master-187ad058-42c12640af9aba1ab5e63c929a4a01dd6261a64d.tar.gz master-187ad058-42c12640af9aba1ab5e63c929a4a01dd6261a64d.tar.bz2 master-187ad058-42c12640af9aba1ab5e63c929a4a01dd6261a64d.zip |
Port kmod-gre to the new module layout
git-svn-id: svn://svn.openwrt.org/openwrt/branches/buildroot-ng/openwrt@4630 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'package')
-rw-r--r-- | package/kernel/modules.mk | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/package/kernel/modules.mk b/package/kernel/modules.mk index 090945c3e0..c24de60d0d 100644 --- a/package/kernel/modules.mk +++ b/package/kernel/modules.mk @@ -289,6 +289,14 @@ FILES:=$(MODULES_DIR)/kernel/net/ipv6/ipv6.$(LINUX_KMOD_SUFFIX) endef $(eval $(call KernelPackage,ipv6)) +define KernelPackage/gre +TITLE:=GRE support +DESCRIPTION:=Generic Routing Encapsulation support +KCONFIG=$(CONFIG_NET_IPGRE) +FILES=$(MODULES_DIR)/kernel/net/ipv4/ip_gre.$(LINUX_KMOD_SUFFIX) +endef +$(eval $(call KernelPackage,gre)) + define KernelPackage/ppp TITLE:=PPP modules DESCRIPTION:=Kernel modules for PPP support |