diff options
author | Felix Fietkau <nbd@openwrt.org> | 2016-01-03 20:57:06 +0000 |
---|---|---|
committer | Felix Fietkau <nbd@openwrt.org> | 2016-01-03 20:57:06 +0000 |
commit | db881f59272cf5c16cef1d0ea0c51a2b28f6283a (patch) | |
tree | 57dc7c1e47e49b557f1c4d1404273994ae83ee36 | |
parent | 777cb3a71e545221a7d52a3d1885eea8fbb2067a (diff) | |
download | master-187ad058-db881f59272cf5c16cef1d0ea0c51a2b28f6283a.tar.gz master-187ad058-db881f59272cf5c16cef1d0ea0c51a2b28f6283a.tar.bz2 master-187ad058-db881f59272cf5c16cef1d0ea0c51a2b28f6283a.zip |
package/network/config/gre: ipv6 gre kmod package name was wrong
Source package gre was depending on kmod-ip6-gre, however the actual
kernel module package that is created is kmod-gre6. Therefore
update (source) package gre for ipv6 gre support.
Signed-off-by: Daniel Dickinson <openwrt@daniel.thecshore.com>
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@48100 3c298f89-4303-0410-b956-a3cf2f4a3e73
-rw-r--r-- | package/network/config/gre/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/package/network/config/gre/Makefile b/package/network/config/gre/Makefile index 49e7d1932a..12257a8a2c 100644 --- a/package/network/config/gre/Makefile +++ b/package/network/config/gre/Makefile @@ -42,7 +42,7 @@ endef define Package/grev6 $(call Package/gre/Default) TITLE:=Generic Routing Encapsulation (IPv6) config support - DEPENDS:=@(PACKAGE_gre) @IPV6 +kmod-ip6-gre + DEPENDS:=@(PACKAGE_gre) @IPV6 +kmod-gre6 endef define Package/grev6/description |