From 3b322ba3cb4b501ea417567301dd1aa03511c2c6 Mon Sep 17 00:00:00 2001 From: Sukru Senli Date: Sat, 18 Jun 2016 15:29:11 +0200 Subject: [PATCH 1/8] updated questd --- questd/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/questd/Makefile b/questd/Makefile index a1a2c36d5..f4b5103f6 100644 --- a/questd/Makefile +++ b/questd/Makefile @@ -8,7 +8,7 @@ include $(INCLUDE_DIR)/kernel.mk PKG_NAME:=questd PKG_VERSION:=3.1.6 -PKG_SOURCE_VERSION:=ea462d795bf25a4837968fd77bfeda1b44c2f2c7 +PKG_SOURCE_VERSION:=2b2f6928fde8ce9f7ab41957418104487b5b8c33 PKG_SOURCE_PROTO:=git PKG_SOURCE_URL:=http://public.inteno.se:/questd From 5ff752214802e466f3afd3ad7bd2e3d2a5d3fdc1 Mon Sep 17 00:00:00 2001 From: Strhuan Blomquist Date: Tue, 21 Jun 2016 14:42:01 +0200 Subject: [PATCH 2/8] layer2interface: adding icmp to QoS to prevent red intrenet on high uplink load refs #9647 --- layer2interface/broadcom/etc/init.d/layer2_interface_adsl | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/layer2interface/broadcom/etc/init.d/layer2_interface_adsl b/layer2interface/broadcom/etc/init.d/layer2_interface_adsl index 435b89e38..89e9ba82d 100755 --- a/layer2interface/broadcom/etc/init.d/layer2_interface_adsl +++ b/layer2interface/broadcom/etc/init.d/layer2_interface_adsl @@ -101,7 +101,8 @@ atm_inf_conf() { ret="$?" xtmctl operate conn --add 1.$vpi.$vci aal5 $encaps 0 1 $ret xtmctl operate conn --addq 1.$vpi.$vci 0 wrr 1 # low priority queue - xtmctl operate conn --addq 1.$vpi.$vci 7 wrr 1 # high priority queue + xtmctl operate conn --addq 1.$vpi.$vci 1 wrr 1 # mid priority queue upstream ACK's and ping from LAN will use this queue + xtmctl operate conn --addq 1.$vpi.$vci 7 wrr 1 # high priority queue, internal traffic dhcp igmp dns and icmp xtmctl operate conn --createnetdev 1.$vpi.$vci ${ifname%%.*} xtmctl operate intf --state 1 enable From da1c09a3f5104756b22b6e00ae350d2fafc53f70 Mon Sep 17 00:00:00 2001 From: Sukru Senli Date: Mon, 27 Jun 2016 16:02:57 +0200 Subject: [PATCH 3/8] icwmp-3.0-2016-06-27 --- icwmp/Makefile | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/icwmp/Makefile b/icwmp/Makefile index e18f8b07e..055eac299 100755 --- a/icwmp/Makefile +++ b/icwmp/Makefile @@ -8,11 +8,11 @@ include $(TOPDIR)/rules.mk PKG_NAME:=icwmp -PKG_VERSION:=3.0-2016-06-16 +PKG_VERSION:=3.0-2016-06-27 PKG_FIXUP:=autoreconf PKG_SOURCE_URL:=http://public.inteno.se:/icwmp.git PKG_SOURCE_PROTO:=git -PKG_SOURCE_VERSION:=fa9b081fd983914faabd673967c3b30c39c56554 +PKG_SOURCE_VERSION:=198dce8288dcb2ebbc45508224f7e7f4b763772e PKG_RELEASE=$(PKG_SOURCE_VERSION) PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION)-$(PKG_SOURCE_VERSION).tar.gz PKG_SOURCE_SUBDIR:=$(PKG_NAME)-$(PKG_VERSION) @@ -34,7 +34,7 @@ define Package/icwmp/Default SECTION:=utils CATEGORY:=Utilities TITLE:=CWMP client - DEPENDS:=+libuci +libmicroxml +libubox +jshn +libubus +libblobmsg-json +libpthread +ubusd +shflags +getopt +zlib +libjson-c +libexpat +curl + DEPENDS:=+libuci +libmicroxml +libubox +jshn +libubus +libblobmsg-json +libpthread +ubusd +shflags +getopt +zlib +libjson-c +libopenssl +libexpat +libstrophe +curl endef define Package/icwmp/description @@ -68,7 +68,7 @@ endif TARGET_CFLAGS += \ -D_GNU_SOURCE -D_AADJ - + ifneq ($(CWMP_REVISION)_,_) ifneq ($(CWMP_REVISION),exported) ifneq ($(CWMP_REVISION),Unversioned directory) From cf0ea79c937c01abd0a677ae242cb47a1f843314 Mon Sep 17 00:00:00 2001 From: Sukru Senli Date: Wed, 29 Jun 2016 16:56:13 +0200 Subject: [PATCH 4/8] icwmp: do not depend on libopenssl and libstrophe --- icwmp/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/icwmp/Makefile b/icwmp/Makefile index 055eac299..d7c7d5653 100755 --- a/icwmp/Makefile +++ b/icwmp/Makefile @@ -34,7 +34,7 @@ define Package/icwmp/Default SECTION:=utils CATEGORY:=Utilities TITLE:=CWMP client - DEPENDS:=+libuci +libmicroxml +libubox +jshn +libubus +libblobmsg-json +libpthread +ubusd +shflags +getopt +zlib +libjson-c +libopenssl +libexpat +libstrophe +curl + DEPENDS:=+libuci +libmicroxml +libubox +jshn +libubus +libblobmsg-json +libpthread +ubusd +shflags +getopt +zlib +libjson-c +libexpat +curl endef define Package/icwmp/description From a215b5975d3fd80c9bcdfa3e565f05f28351fd15 Mon Sep 17 00:00:00 2001 From: Sukru Senli Date: Fri, 1 Jul 2016 13:13:18 +0200 Subject: [PATCH 5/8] icwmp-3.0-2016-07-01 --- icwmp/Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/icwmp/Makefile b/icwmp/Makefile index d7c7d5653..89bb8b4b1 100755 --- a/icwmp/Makefile +++ b/icwmp/Makefile @@ -8,11 +8,11 @@ include $(TOPDIR)/rules.mk PKG_NAME:=icwmp -PKG_VERSION:=3.0-2016-06-27 +PKG_VERSION:=3.0-2016-07-01 PKG_FIXUP:=autoreconf PKG_SOURCE_URL:=http://public.inteno.se:/icwmp.git PKG_SOURCE_PROTO:=git -PKG_SOURCE_VERSION:=198dce8288dcb2ebbc45508224f7e7f4b763772e +PKG_SOURCE_VERSION:=85ecddf5a3993e60079c3a67bc74267480d0dc1a PKG_RELEASE=$(PKG_SOURCE_VERSION) PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION)-$(PKG_SOURCE_VERSION).tar.gz PKG_SOURCE_SUBDIR:=$(PKG_NAME)-$(PKG_VERSION) From 004b2b47c2a4ce67e0996681f994b753541b8742 Mon Sep 17 00:00:00 2001 From: Sukru Senli Date: Mon, 4 Jul 2016 20:19:42 +0200 Subject: [PATCH 6/8] icwmp-3.0-2016-07-04 --- icwmp/Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/icwmp/Makefile b/icwmp/Makefile index 89bb8b4b1..60c6ea09e 100755 --- a/icwmp/Makefile +++ b/icwmp/Makefile @@ -8,11 +8,11 @@ include $(TOPDIR)/rules.mk PKG_NAME:=icwmp -PKG_VERSION:=3.0-2016-07-01 +PKG_VERSION:=3.0-2016-07-04 PKG_FIXUP:=autoreconf PKG_SOURCE_URL:=http://public.inteno.se:/icwmp.git PKG_SOURCE_PROTO:=git -PKG_SOURCE_VERSION:=85ecddf5a3993e60079c3a67bc74267480d0dc1a +PKG_SOURCE_VERSION:=bbd3867e3158e9942a5b930747abf45a041a05ec PKG_RELEASE=$(PKG_SOURCE_VERSION) PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION)-$(PKG_SOURCE_VERSION).tar.gz PKG_SOURCE_SUBDIR:=$(PKG_NAME)-$(PKG_VERSION) From ff0d48571e213e064230d68643496949e26976ba Mon Sep 17 00:00:00 2001 From: Sukru Senli Date: Tue, 5 Jul 2016 17:45:02 +0200 Subject: [PATCH 7/8] iop: select ntfs-3g --- iop/configs/config | 1 + 1 file changed, 1 insertion(+) diff --git a/iop/configs/config b/iop/configs/config index 8218159f9..c28181083 100644 --- a/iop/configs/config +++ b/iop/configs/config @@ -105,6 +105,7 @@ CONFIG_PACKAGE_mtd-utils-ubiupdatevol=y CONFIG_PACKAGE_multiwan=y CONFIG_PACKAGE_ndisc6=y CONFIG_PACKAGE_netcheck=y +CONFIG_PACKAGE_ntfs-3g=y CONFIG_PACKAGE_odhcp6c=y CONFIG_PACKAGE_odhcpd=y CONFIG_PACKAGE_openssl-util=y From a21c4aea1e54612438961403d60e474193904919 Mon Sep 17 00:00:00 2001 From: Sukru Senli Date: Thu, 7 Jul 2016 10:57:04 +0200 Subject: [PATCH 8/8] icwmp-3.0-2016-07-07 --- icwmp/Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/icwmp/Makefile b/icwmp/Makefile index 60c6ea09e..e073b2ceb 100755 --- a/icwmp/Makefile +++ b/icwmp/Makefile @@ -8,11 +8,11 @@ include $(TOPDIR)/rules.mk PKG_NAME:=icwmp -PKG_VERSION:=3.0-2016-07-04 +PKG_VERSION:=3.0-2016-07-07 PKG_FIXUP:=autoreconf PKG_SOURCE_URL:=http://public.inteno.se:/icwmp.git PKG_SOURCE_PROTO:=git -PKG_SOURCE_VERSION:=bbd3867e3158e9942a5b930747abf45a041a05ec +PKG_SOURCE_VERSION:=6fac1df3418d727388162d5e006c7a756c9ff8d2 PKG_RELEASE=$(PKG_SOURCE_VERSION) PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION)-$(PKG_SOURCE_VERSION).tar.gz PKG_SOURCE_SUBDIR:=$(PKG_NAME)-$(PKG_VERSION)