aboutsummaryrefslogtreecommitdiffstats
path: root/package
diff options
context:
space:
mode:
authorWaldemar Brodkorb <wbx@openwrt.org>2005-09-11 12:10:34 +0000
committerWaldemar Brodkorb <wbx@openwrt.org>2005-09-11 12:10:34 +0000
commita5edbc89189c4ae56a3c79b8de9fb8177c4d61f0 (patch)
tree576f0e4e9c2a55fcd055fa5b35913882f7ddb5b7 /package
parentb525bcb90dfd94d7a7d32c6d621007a117c9fd88 (diff)
downloadmaster-187ad058-a5edbc89189c4ae56a3c79b8de9fb8177c4d61f0.tar.gz
master-187ad058-a5edbc89189c4ae56a3c79b8de9fb8177c4d61f0.tar.bz2
master-187ad058-a5edbc89189c4ae56a3c79b8de9fb8177c4d61f0.zip
chmod ip-up
git-svn-id: svn://svn.openwrt.org/openwrt/trunk/openwrt@1904 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'package')
-rw-r--r--package/wondershaper/patches/wondershaper-OpenWrt.patch73
1 files changed, 5 insertions, 68 deletions
diff --git a/package/wondershaper/patches/wondershaper-OpenWrt.patch b/package/wondershaper/patches/wondershaper-OpenWrt.patch
index a748a4b551..43d7fb115c 100644
--- a/package/wondershaper/patches/wondershaper-OpenWrt.patch
+++ b/package/wondershaper/patches/wondershaper-OpenWrt.patch
@@ -1,67 +1,3 @@
-diff -Nur wondershaper-1.1a/wshaper wondershaper-1.1a_openwrt/wshaper
---- wondershaper-1.1a/wshaper 2002-04-16 16:26:35.000000000 +0200
-+++ wondershaper-1.1a_openwrt/wshaper 2005-09-09 00:46:22.095406568 +0200
-@@ -1,33 +1,7 @@
--#!/bin/bash
--
-+#!/bin/sh
- # Wonder Shaper
--# please read the README before filling out these values
--#
--# Set the following values to somewhat less than your actual download
--# and uplink speed. In kilobits. Also set the device that is to be shaped.
--DOWNLINK=800
--UPLINK=220
--DEV=eth0
--
--# low priority OUTGOING traffic - you can leave this blank if you want
--# low priority source netmasks
--NOPRIOHOSTSRC=80
--
--# low priority destination netmasks
--NOPRIOHOSTDST=
--
--# low priority source ports
--NOPRIOPORTSRC=
--
--# low priority destination ports
--NOPRIOPORTDST=
--
--# Now remove the following two lines :-)
--
--echo Please read the documentation in 'README' first :-\)
--exit
--
--#########################################################
-+. /etc/functions.sh
-+. /etc/wshaper.conf
-
- if [ "$1" = "status" ]
- then
-@@ -46,6 +20,8 @@
- exit
- fi
-
-+
-+
- ###### uplink
-
- # install root CBQ
-@@ -67,12 +43,12 @@
- # bulk and default class 1:20 - gets slightly less traffic,
- # and a lower priority:
-
--tc class add dev $DEV parent 1:1 classid 1:20 cbq rate $[9*$UPLINK/10]kbit \
-+tc class add dev $DEV parent 1:1 classid 1:20 cbq rate $((9*$UPLINK/10))kbit \
- allot 1600 prio 2 avpkt 1000
-
- # 'traffic we hate'
-
--tc class add dev $DEV parent 1:1 classid 1:30 cbq rate $[8*$UPLINK/10]kbit \
-+tc class add dev $DEV parent 1:1 classid 1:30 cbq rate $((8*$UPLINK/10))kbit \
- allot 1600 prio 2 avpkt 1000
-
- # all get Stochastic Fairness:
diff -Nur wondershaper-1.1a/wshaper.conf wondershaper-1.1a_openwrt/wshaper.conf
--- wondershaper-1.1a/wshaper.conf 1970-01-01 01:00:00.000000000 +0100
+++ wondershaper-1.1a_openwrt/wshaper.conf 2005-09-09 00:31:54.239340744 +0200
@@ -95,7 +31,7 @@ diff -Nur wondershaper-1.1a/wshaper.conf wondershaper-1.1a_openwrt/wshaper.conf
+
diff -Nur wondershaper-1.1a/wshaper.htb wondershaper-1.1a_openwrt/wshaper.htb
--- wondershaper-1.1a/wshaper.htb 2002-04-16 16:26:51.000000000 +0200
-+++ wondershaper-1.1a_openwrt/wshaper.htb 2005-09-11 12:03:39.756950000 +0200
++++ wondershaper-1.1a_openwrt/wshaper.htb 2005-09-11 13:24:56.143626544 +0200
@@ -1,44 +1,22 @@
-#!/bin/bash
+#!/bin/ash
@@ -149,7 +85,7 @@ diff -Nur wondershaper-1.1a/wshaper.htb wondershaper-1.1a_openwrt/wshaper.htb
if [ "$1" = "stop" ]
then
-@@ -46,50 +24,65 @@
+@@ -46,50 +24,66 @@
fi
@@ -158,6 +94,7 @@ diff -Nur wondershaper-1.1a/wshaper.htb wondershaper-1.1a_openwrt/wshaper.htb
+if [ $DEV = "ppp0" ] && ! grep -q wshaper /etc/ppp/ip-up
+then
+ echo "/usr/sbin/wshaper" >> /etc/ppp/ip-up
++ chmod 755 /etc/ppp/ip-up
+fi
+
+
@@ -226,7 +163,7 @@ diff -Nur wondershaper-1.1a/wshaper.htb wondershaper-1.1a_openwrt/wshaper.htb
match ip protocol 6 0xff \
match u8 0x05 0x0f at 0 \
match u16 0x0000 0xffc0 at 2 \
-@@ -101,31 +94,31 @@
+@@ -101,31 +95,31 @@
# some traffic however suffers a worse fate
for a in $NOPRIOPORTDST
do
@@ -263,7 +200,7 @@ diff -Nur wondershaper-1.1a/wshaper.htb wondershaper-1.1a_openwrt/wshaper.htb
match ip dst 0.0.0.0/0 flowid 1:20
-@@ -136,12 +129,12 @@
+@@ -136,12 +130,12 @@
#
# attach ingress policer: