Re: [OpenWrt-Devel] [PATCH] dnsmasq: update to 2.62

2012-06-10 Thread Jonathan McCrohan
Hi Dave, On 9 June 2012 16:07, Dave Täht dave.t...@bufferbloat.net wrote:  PKG_NAME:=dnsmasq -PKG_VERSION:=2.59 +PKG_VERSION:=2.62  PKG_RELEASE:=4 I think PKG_RELEASE should also be set to 1. Jon ___ openwrt-devel mailing list

[OpenWrt-Devel] [PATCH 0/5] new target: AudioCodes AC49x SoC

2012-06-10 Thread Daniel Golle
I recently found an AudioCodes MP-202 VoIP-router which is ubiquitously available over here. It contains an AudioCodes AC496 SoC, some NOR flash and some SDRAM as well as 2 SLICs for analog phones. The AudioCodes AC49x series SoC are MIPS24Kc very similar to Texas Instruments AR7 Titan series

[OpenWrt-Devel] [PATCH 1/5] ac49x target basics

2012-06-10 Thread Daniel Golle
This adds the new target to OpenWrt, including some patches and a default kernel configuration. Signed-off-by: Daniel Golle daniel.go...@gmail.com diff --git a/target/linux/ac49x/Makefile b/target/linux/ac49x/Makefile new file mode 100644 index 000..2f51ede --- /dev/null +++

[OpenWrt-Devel] [PATCH 3/5] AC49x Ethernet

2012-06-10 Thread Daniel Golle
This is also just AR7 cpmac with lots of searchreplace to it can coexist nicely. I would make sense to do some more pruning and remove all non-Titan specific code here as well... Signed-off-by: Daniel Golle daniel.go...@gmail.com diff --git

[OpenWrt-Devel] [PATCH 4/5] mtd partition detection

2012-06-10 Thread Daniel Golle
Detect MTD partitions on AC49x systems. This is actually written from scratch, as their PSPBoot allows having mtd partitions stored in the bootloader environment. Signed-off-by: Daniel Golle daniel.go...@gmail.com diff --git a/target/linux/ac49x/files/drivers/mtd/ac49xpart.c

[OpenWrt-Devel] [PATCH 5/5] AC49x base-files

2012-06-10 Thread Daniel Golle
Not much to say about that, same as in ar7. Signed-off-by: Daniel Golle daniel.go...@gmail.com diff --git a/target/linux/ac49x/base-files/etc/config/network b/target/linux/ac49x/base-files/etc/config/network new file mode 100644 index 000..9ba0e6d --- /dev/null +++

Re: [OpenWrt-Devel] [PATCH 0/5] new target: AudioCodes AC49x SoC

2012-06-10 Thread Felix Fietkau
On 2012-06-10 5:36 PM, Daniel Golle wrote: I recently found an AudioCodes MP-202 VoIP-router which is ubiquitously available over here. It contains an AudioCodes AC496 SoC, some NOR flash and some SDRAM as well as 2 SLICs for analog phones. The AudioCodes AC49x series SoC are MIPS24Kc very

[OpenWrt-Devel] [PATCH] make vtun more configurable

2012-06-10 Thread Andreas Braeu
added possibility to disable lzo compression and encryption to save ram Signed-off-by: Andreas Braeu a...@andi95.de --- index 730e6f4..3a09f04 100644 --- a/net/vtun/Makefile +++ b/net/vtun/Makefile @@ -20,10 +20,36 @@ include $(INCLUDE_DIR)/package.mk define Package/vtun SECTION:=net

Re: [OpenWrt-Devel] [PATCH] nodogsplash uses deprecated iptables syntax

2012-06-10 Thread ZioPRoTo (Saverio Proto)
Thanks ! I included the patch in the Ninux firmware, as soon as I have it tested I will report. However the patch looks so trivial that I would ask to package maintainer to commit it immediatly :) Moritz maybe you are interested in forking our git repository:

Re: [OpenWrt-Devel] [PATCH 0/5] new target: AudioCodes AC49x SoC

2012-06-10 Thread Daniel Golle
Hi Felix, On Sun, Jun 10, 2012 at 06:01:29PM +0200, Felix Fietkau wrote: If it's just minor differences, the huge amount of code duplication is probably a very bad idea. I'd rather see things unified, otherwise it's way too easy for fixes done to one of the two to be lost on the other one. I