From 8a35ebe375d1c27e55dd2cb8c14f25440bc48821 Mon Sep 17 00:00:00 2001 From: Alin Nastac Date: Tue, 23 Feb 2021 13:05:09 +0100 Subject: gre: use alternative way to check if kernel support is enabled When necessary support is built in kernel, gre protocol support is not enabled in netifd. Signed-off-by: Alin Nastac --- package/network/config/gre/files/gre.sh | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) (limited to 'package/network/config/gre/files') diff --git a/package/network/config/gre/files/gre.sh b/package/network/config/gre/files/gre.sh index eb3df5b48c..b57d5d4cdb 100755 --- a/package/network/config/gre/files/gre.sh +++ b/package/network/config/gre/files/gre.sh @@ -291,8 +291,6 @@ proto_grev6tap_init_config() { } [ -n "$INCLUDE_ONLY" ] || { - [ -f /lib/modules/$(uname -r)/gre.ko ] && add_protocol gre - [ -f /lib/modules/$(uname -r)/gre.ko ] && add_protocol gretap - [ -f /lib/modules/$(uname -r)/ip6_gre.ko ] && add_protocol grev6 - [ -f /lib/modules/$(uname -r)/ip6_gre.ko ] && add_protocol grev6tap + [ -d /sys/module/ip_gre ] && { add_protocol gre; add_protocol gretap; } + [ -d /sys/module/ip6_gre ] && { add_protocol grev6; add_protocol grev6tap; } } -- cgit v1.2.3