[OpenWrt-Devel] [PATCH 0/8 v2] [ar7] AudioCodes AC49x sub-target

2012-10-17 Thread Daniel Golle
So now some sosmetics fixes according to the comments I got: I fixed everything checkpatch.pl was complaining about and refreshed the patches in target/linux/ar7/patches-3.3 Daniel Golle (8): [ar7] free memory below kernel offset [ar7] add AudioCodes AC49x platform support to kernel [ar7]

[OpenWrt-Devel] [PATCH 1/8] [ar7] free memory below kernel offset

2012-10-17 Thread Daniel Golle
Some bootloaders (e.g. PSPBoot on AC49x) have a load-offset, this frees that memory region so it is usable for Linux. Signed-off-by: Daniel Golle dgo...@allnet.de create mode 100644 target/linux/ar7/patches-3.3/200-free-mem-below-kernel-offset.patch diff --git

[OpenWrt-Devel] [PATCH 2/8] [ar7] add AudioCodes AC49x platform support to kernel

2012-10-17 Thread Daniel Golle
Signed-off-by: Daniel Golle dgo...@allnet.de create mode 100644 target/linux/ar7/patches-3.3/300-add-ac49x-platform.patch diff --git a/target/linux/ar7/patches-3.3/300-add-ac49x-platform.patch b/target/linux/ar7/patches-3.3/300-add-ac49x-platform.patch new file mode 100644 index

[OpenWrt-Devel] [PATCH 3/8] [ar7] support AC49x bootloader environment

2012-10-17 Thread Daniel Golle
Signed-off-by: Daniel Golle dgo...@allnet.de create mode 100644 target/linux/ar7/patches-3.3/310-ac49x-prom-support.patch diff --git a/target/linux/ar7/patches-3.3/310-ac49x-prom-support.patch b/target/linux/ar7/patches-3.3/310-ac49x-prom-support.patch new file mode 100644 index

[OpenWrt-Devel] [PATCH 4/8] [ar7] detect AC49x flash partitions

2012-10-17 Thread Daniel Golle
Signed-off-by: Daniel Golle dgo...@allnet.de create mode 100644 target/linux/ar7/files/drivers/mtd/ac49xpart.c create mode 100644 target/linux/ar7/patches-3.3/320-ac49x-mtd-partitions.patch diff --git a/target/linux/ar7/files/drivers/mtd/ac49xpart.c

[OpenWrt-Devel] [PATCH 5/8] [ar7] enable serial kludge on AC49x

2012-10-17 Thread Daniel Golle
Signed-off-by: Daniel Golle dgo...@allnet.de diff --git a/target/linux/ar7/patches-3.3/500-serial_kludge.patch b/target/linux/ar7/patches-3.3/500-serial_kludge.patch index 5c19cf2..159fb56 100644 --- a/target/linux/ar7/patches-3.3/500-serial_kludge.patch +++

[OpenWrt-Devel] [PATCH 6/8] [ar7] create generic subtarget

2012-10-17 Thread Daniel Golle
Signed-off-by: Daniel Golle dgo...@allnet.de delete mode 100644 target/linux/ar7/config-3.3 create mode 100644 target/linux/ar7/generic/config-3.3 create mode 100644 target/linux/ar7/generic/profiles/100-Annex-A.mk create mode 100644 target/linux/ar7/generic/profiles/110-Annex-B.mk create

[OpenWrt-Devel] [PATCH 7/8] [ar7] create AC49x subtarget

2012-10-17 Thread Daniel Golle
Signed-off-by: Daniel Golle dgo...@allnet.de create mode 100644 target/linux/ar7/ac49x/config-3.3 create mode 100644 target/linux/ar7/ac49x/profiles/210-None.mk create mode 100644 target/linux/ar7/ac49x/target.mk diff --git a/target/linux/ar7/ac49x/config-3.3

[OpenWrt-Devel] [PATCH 8/8] [ar7] generate image for AC49x

2012-10-17 Thread Daniel Golle
Signed-off-by: Daniel Golle dgo...@allnet.de diff --git a/target/linux/ar7/image/Makefile b/target/linux/ar7/image/Makefile index 6278b31..dcc8a75 100644 --- a/target/linux/ar7/image/Makefile +++ b/target/linux/ar7/image/Makefile @@ -67,6 +67,9 @@ define Image/Build/Titan

[OpenWrt-Devel] [PATCH] Fix broadcast DHCP client startup option in dhcp.sh

2012-10-17 Thread Hans Dedecker
Signed-off-by: Hans Dedecker (hans.dedecker at technicolor.com) Fixes the DHCP request broadcasts replies option parsing --- package/netifd/files/lib/netifd/proto/dhcp.sh |2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/package/netifd/files/lib/netifd/proto/dhcp.sh

[OpenWrt-Devel] [PATCH] [dnsmasq] Changed the init script to not check if dhcp-hostsfile exists as it may be used dynamically with a HUP signal

2012-10-17 Thread Alex Guerra
Signed-off-by: Alex Guerra alex.gue...@oiwifi.com.br --- .../network/services/dnsmasq/files/dnsmasq.init|2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package/network/services/dnsmasq/files/dnsmasq.init b/package/network/services/dnsmasq/files/dnsmasq.init index

[OpenWrt-Devel] [PATCH] [base-files] Changed START to 25 in sysntpd

2012-10-17 Thread Alex Guerra
Correct date and time are necessary for certificate based daemons (for example openvpn) Signed-off-by: Alex Guerra alex.gue...@oiwifi.com.br --- package/base-files/files/etc/init.d/sysntpd |2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git

Re: [OpenWrt-Devel] [PATCH] [base-files] Changed START to 25 in sysntpd

2012-10-17 Thread Jo-Philipp Wich
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Time synchronization is not guaranteed to be done when the sysntpd init script finished so this start index change doesn ot reliably solve the problem. ~ Jow -BEGIN PGP SIGNATURE- Version: GnuPG v1.4.12 (GNU/Linux) Comment: Using GnuPG with

[OpenWrt-Devel] [PATCH v3 0/7] [ar7] AudioCodes AC49x sub-target

2012-10-17 Thread Daniel Golle
Some more cleanup was done: AC49x is now a sub-target (instead of a separate machine) also in the kernel. This further reduces the foot-print of this addition... Daniel Golle (7): [ar7] free memory below kernel offset [ar7] add AudioCodes AC49x platform support to kernel [ar7] support AC49x

[OpenWrt-Devel] [PATCH v3 1/7] [ar7] free memory below kernel offset

2012-10-17 Thread Daniel Golle
Some bootloaders (e.g. PSPBoot on AC49x) have a load-offset, this frees that memory region so it is usable for Linux. Signed-off-by: Daniel Golle dgo...@allnet.de create mode 100644 target/linux/ar7/patches-3.3/200-free-mem-below-kernel-offset.patch diff --git

[OpenWrt-Devel] [PATCH v3 2/7] [ar7] add AudioCodes AC49x platform support to kernel

2012-10-17 Thread Daniel Golle
Signed-off-by: Daniel Golle dgo...@allnet.de create mode 100644 target/linux/ar7/patches-3.3/300-add-ac49x-platform.patch diff --git a/target/linux/ar7/patches-3.3/300-add-ac49x-platform.patch b/target/linux/ar7/patches-3.3/300-add-ac49x-platform.patch new file mode 100644 index

[OpenWrt-Devel] [PATCH v3 3/7] [ar7] support AC49x bootloader environment

2012-10-17 Thread Daniel Golle
Signed-off-by: Daniel Golle dgo...@allnet.de create mode 100644 target/linux/ar7/patches-3.3/310-ac49x-prom-support.patch diff --git a/target/linux/ar7/patches-3.3/310-ac49x-prom-support.patch b/target/linux/ar7/patches-3.3/310-ac49x-prom-support.patch new file mode 100644 index

[OpenWrt-Devel] [PATCH v3 5/7] [ar7] create generic subtarget

2012-10-17 Thread Daniel Golle
Signed-off-by: Daniel Golle dgo...@allnet.de create mode 100644 target/linux/ar7/generic/config-default create mode 100644 target/linux/ar7/generic/profiles/100-Annex-A.mk create mode 100644 target/linux/ar7/generic/profiles/110-Annex-B.mk create mode 100644

[OpenWrt-Devel] [PATCH v3 7/7] [ar7] generate image for AC49x

2012-10-17 Thread Daniel Golle
Signed-off-by: Daniel Golle dgo...@allnet.de diff --git a/target/linux/ar7/image/Makefile b/target/linux/ar7/image/Makefile index 6278b31..fb42e42 100644 --- a/target/linux/ar7/image/Makefile +++ b/target/linux/ar7/image/Makefile @@ -67,6 +67,9 @@ define Image/Build/Titan

[OpenWrt-Devel] [PATCH] vlynq: fix typo in comment

2012-10-17 Thread Daniel Golle
I started reviewing the vlynq driver and found a small typo. Signed-off-by: Daniel Golle dgo...@allnet.de --- a/drivers/vlynq/vlynq.c 2012-10-17 17:03:34.740744318 +0200 +++ b/drivers/vlynq/vlynq.c 2012-10-17 17:03:40.910744182 +0200 @@ -457,7 +457,7 @@ /* * A VLYNQ remote device can

[OpenWrt-Devel] [PATCH] ixp4xx/cns3xxx: add rfkill module support

2012-10-17 Thread Tim Harvey
Both ixp4xx and cns3xxx targets support RFKILL in the kernel. Also add a RFKILL_GPIO default for kernel config Signed-off-by: Tim Harvey thar...@gateworks.com --- package/kernel/modules/001-depends.mk |4 ++-- package/kernel/modules/other.mk |3 ++- 2 files changed, 4

Re: [OpenWrt-Devel] [PATCH] [dnsmasq] Changed the init script to not check if dhcp-hostsfile exists as it may be used dynamically with a HUP signal

2012-10-17 Thread John Crispin
On 17/10/12 15:04, Alex Guerra wrote: Signed-off-by: Alex Guerraalex.gue...@oiwifi.com.br --- .../network/services/dnsmasq/files/dnsmasq.init|2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package/network/services/dnsmasq/files/dnsmasq.init

Re: [OpenWrt-Devel] [PATCH] [dnsmasq] Parse the option 'conf_dir' in the init script

2012-10-17 Thread John Crispin
On 16/10/12 22:04, Jonh Wendell wrote: Signed-off-by: Jonh Wendell jonh.wend...@oiwifi.com.br mailto:jonh.wend...@oiwifi.com.br --- .../network/services/dnsmasq/files/dnsmasq.init|3 +++ 1 file changed, 3 insertions(+) diff --git a/package/network/services/dnsmasq/files/dnsmasq.init