Files
poky/openembedded/packages/netbase/netbase/busybox.patch
Richard Purdie 4b46c1f6e8 Initial population
git-svn-id: https://svn.o-hand.com/repos/poky@1 311d38ba-8fff-0310-9ca6-ca027cbcb966
2005-08-31 10:45:47 +00:00

14 lines
455 B
Diff

--- 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