aboutsummaryrefslogtreecommitdiffstats
path: root/netbase/netbase/busybox.patch
diff options
context:
space:
mode:
Diffstat (limited to 'netbase/netbase/busybox.patch')
-rw-r--r--netbase/netbase/busybox.patch13
1 files changed, 13 insertions, 0 deletions
diff --git a/netbase/netbase/busybox.patch b/netbase/netbase/busybox.patch
index e69de29bb2..845bb421ed 100644
--- a/netbase/netbase/busybox.patch
+++ b/netbase/netbase/busybox.patch
@@ -0,0 +1,13 @@
+--- netbase-3.18.orig/debian/networking.init.d~busybox
++++ netbase-3.18.orig/debian/networking.init.d
+@@ -15,8 +15,8 @@
+ # spoof protection on all current and future interfaces.
+
+ if [ -e /proc/sys/net/ipv4/conf/all/rp_filter ]; then
+- for f in /proc/sys/net/ipv4/conf/*/rp_filter; do
+- echo 1 > $f
++ for f in /proc/sys/net/ipv4/conf/*; do
++ echo 1 > $f/rp_filter
+ done
+ return 0
+ else