From 25994afdce2789ba06792fe71be6f96a15e970d4 Mon Sep 17 00:00:00 2001 From: Felix Fietkau Date: Sun, 21 Jul 2013 13:59:00 +0000 Subject: [PATCH] dsl-qos-queue: remove from /packages No longer functional (libipq is no longer supported), and abandoned by upstream as well. Signed-off-by: Felix Fietkau SVN-Revision: 37494 --- net/dsl-qos-queue/Makefile | 49 ------------------- .../patches/001-cross_compile.patch | 40 --------------- net/dsl-qos-queue/patches/002-include.patch | 20 -------- net/dsl-qos-queue/patches/010-ports_fix.patch | 22 --------- .../patches/020-fix_shebang_line.patch | 8 --- 5 files changed, 139 deletions(-) delete mode 100644 net/dsl-qos-queue/Makefile delete mode 100644 net/dsl-qos-queue/patches/001-cross_compile.patch delete mode 100644 net/dsl-qos-queue/patches/002-include.patch delete mode 100644 net/dsl-qos-queue/patches/010-ports_fix.patch delete mode 100644 net/dsl-qos-queue/patches/020-fix_shebang_line.patch diff --git a/net/dsl-qos-queue/Makefile b/net/dsl-qos-queue/Makefile deleted file mode 100644 index 30d0f9a99..000000000 --- a/net/dsl-qos-queue/Makefile +++ /dev/null @@ -1,49 +0,0 @@ -# -# Copyright (C) 2006-2010 OpenWrt.org -# -# This is free software, licensed under the GNU General Public License v2. -# See /LICENSE for more information. -# - -include $(TOPDIR)/rules.mk - -PKG_NAME:=dsl_qos_queue -PKG_VERSION:=0.9.3 -PKG_RELEASE:=3 - -PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz -PKG_SOURCE_URL:=http://www.sonicspike.net/software/download/ -PKG_MD5SUM:=ccbe8d28c3508c67f669fe98532533be - -PKG_BUILD_DIR:=$(BUILD_DIR)/$(PKG_NAME) - -include $(INCLUDE_DIR)/package.mk - -define Package/dsl-qos-queue - SECTION:=net - CATEGORY:=Network - DEPENDS:=+iptables +kmod-ipt-queue +iptables-mod-ipopt +libipq - TITLE:=ADSL/ATM Bandwith management - URL:=http://www.sonicspike.net/software/ -endef - -define Build/Configure -endef - -define Build/Compile - $(call Build/Compile/Default, \ - CFLAGS="$(TARGET_CFLAGS) -I$(STAGING_DIR)/usr/include/libipq $(TARGET_CPPFLAGS)" \ - LDFLAGS="$(TARGET_LDFLAGS)" \ - LIBIPQ="-lipq" \ - all \ - ) -endef - -define Package/dsl-qos-queue/install - $(INSTALL_DIR) $(1)/usr/sbin - $(INSTALL_BIN) $(PKG_BUILD_DIR)/$(PKG_NAME) $(1)/usr/sbin/ - $(INSTALL_BIN) $(PKG_BUILD_DIR)/dsl_qos_train $(1)/usr/sbin - $(INSTALL_BIN) $(PKG_BUILD_DIR)/ipt_rules $(1)/usr/sbin -endef - -$(eval $(call BuildPackage,dsl-qos-queue)) diff --git a/net/dsl-qos-queue/patches/001-cross_compile.patch b/net/dsl-qos-queue/patches/001-cross_compile.patch deleted file mode 100644 index 43a90947e..000000000 --- a/net/dsl-qos-queue/patches/001-cross_compile.patch +++ /dev/null @@ -1,40 +0,0 @@ ---- a/dsl_qos_queue.c -+++ b/dsl_qos_queue.c -@@ -552,12 +552,12 @@ - - syslog(LOG_INFO, "setup()"); - -- rval=system("modprobe ip_queue"); -+/* rval=system("modprobe ip_queue"); - if (WEXITSTATUS(rval)!=0) - { - printf("Unable to install ip_queue module.\n"); - exit(1); -- } -+ }*/ - - for (i=0;i --#include - #include - #include - #include -@@ -25,6 +23,8 @@ - #include - #include - #include -+#include -+#include - - #include "daemon.h" - diff --git a/net/dsl-qos-queue/patches/010-ports_fix.patch b/net/dsl-qos-queue/patches/010-ports_fix.patch deleted file mode 100644 index 4280a1136..000000000 --- a/net/dsl-qos-queue/patches/010-ports_fix.patch +++ /dev/null @@ -1,22 +0,0 @@ ---- a/ipt_rules -+++ b/ipt_rules -@@ -26,14 +26,14 @@ iptables -t mangle -A MYSHAPER-OUT -p tc - iptables -t mangle -A MYSHAPER-OUT -p icmp -j MARK --set-mark 20 # ICMP (ping) - high prio, impress friends - iptables -t mangle -A MYSHAPER-OUT -p udp --dport 123 -j MARK --set-mark 20 # NTP should be low-lag - iptables -t mangle -A MYSHAPER-OUT -p udp --dport 53 -j MARK --set-mark 21 # DNS name resolution (small packets) --iptables -t mangle -A MYSHAPER-OUT -p tcp --dport ssh -j MARK --set-mark 22 # secure shell --iptables -t mangle -A MYSHAPER-OUT -p tcp --sport ssh -j MARK --set-mark 22 # secure shell --iptables -t mangle -A MYSHAPER-OUT -p tcp --dport telnet -j MARK --set-mark 22 # telnet (ew...) --iptables -t mangle -A MYSHAPER-OUT -p tcp --sport telnet -j MARK --set-mark 22 # telnet (ew...) -+iptables -t mangle -A MYSHAPER-OUT -p tcp --dport 22 -j MARK --set-mark 22 # secure shell -+iptables -t mangle -A MYSHAPER-OUT -p tcp --sport 22 -j MARK --set-mark 22 # secure shell -+iptables -t mangle -A MYSHAPER-OUT -p tcp --dport 23 -j MARK --set-mark 22 # telnet (ew...) -+iptables -t mangle -A MYSHAPER-OUT -p tcp --sport 23 -j MARK --set-mark 22 # telnet (ew...) - iptables -t mangle -A MYSHAPER-OUT -p ipv6-crypt -j MARK --set-mark 24 # IPSec - we dont know what the payload is though... - iptables -t mangle -A MYSHAPER-OUT -p udp --dport 10000 -j MARK --set-mark 24 # IPSec (udp tunnel) - we dont know what the payload is though... - --iptables -t mangle -A MYSHAPER-OUT -p tcp --sport http -j MARK --set-mark 25 # Local web server -+iptables -t mangle -A MYSHAPER-OUT -p tcp --sport 80 -j MARK --set-mark 25 # Local web server - iptables -t mangle -A MYSHAPER-OUT -p tcp -m length --length :64 -j MARK --set-mark 21 # small packets (probably just ACKs) - iptables -t mangle -A MYSHAPER-OUT -p tcp --sport 3389 -j MARK --set-mark 23 # windows remote computer connection - iptables -t mangle -A MYSHAPER-OUT -m mark --mark 0 -j MARK --set-mark 26 # redundant- mark any unmarked packets as 26 (low pri diff --git a/net/dsl-qos-queue/patches/020-fix_shebang_line.patch b/net/dsl-qos-queue/patches/020-fix_shebang_line.patch deleted file mode 100644 index 1a9530044..000000000 --- a/net/dsl-qos-queue/patches/020-fix_shebang_line.patch +++ /dev/null @@ -1,8 +0,0 @@ ---- a/ipt_rules -+++ b/ipt_rules -@@ -1,4 +1,4 @@ --#!/bin/bash -+#!/bin/sh - # add MYSHAPER-OUT chain to the mangle table in iptables - this sets up the table we'll use - # to filter and mark packets. - -- 2.30.2