[OpenWrt-Devel] [PATCH 1/2] Add package django-sslserver

2015-10-10 Thread philby john
>From 023d680abc55699e439a643111c733088d07a55b Mon Sep 17 00:00:00 2001 From: Philby John Date: Sat, 10 Oct 2015 18:53:46 +0530 Subject: [PATCH 1/2] Add package django-sslserver Add django-sslserver ver 0.15 which is an SSL-enabled development server for Django.

Re: [OpenWrt-Devel] [PATCH v2 1/3] ramips: Add DTS files for HiWiFi HC5x61 models

2015-10-10 Thread
At 2015-09-29 10:10:41, "Yousong Zhou" wrote: >Hi, > >Previously this year, there were 2 attempts to add support for HC5661 >and HC5761 to OpenWrt trunk [1,2]. I only had a HC5661 and it was >quite a while ago but the issues then should still remain. > >The first is about

Re: [OpenWrt-Devel] [PATCH] comgt-ncm: Add possibility to choose PDP context type

2015-10-10 Thread Matti Laakso
>> Date: Sun, 20 Sep 2015 23:52:32 +0300 >> Subject: Re: [OpenWrt-Devel] [PATCH] comgt-ncm: Add possibility to >> choose PDP context type >> From: sami at olmari.fi >> To: malaakso at elisanet.fi >> CC: openwrt-devel at lists.openwrt.org >> >> This is not working with Huawei E3276, only "option

[OpenWrt-Devel] [PATCH 2/2] Add package django-secure

2015-10-10 Thread philby john
From 411e7549b3e6dd24a5730a9c6d272708b51a06bc Mon Sep 17 00:00:00 2001 From: Philby John Date: Sat, 10 Oct 2015 19:01:13 +0530 Subject: [PATCH 2/2] Add package django-secure Add django-secure 1.0.1 which is utilities and a 'linter' to help in making Django site more

[OpenWrt-Devel] [PATCH v2] Add package django-sslserver

2015-10-10 Thread philby john
>From 0933d431d05aeaff3ad79bd7d46a8832fa337736 Mon Sep 17 00:00:00 2001 From: Philby John Date: Sat, 10 Oct 2015 18:53:46 +0530 Subject: [PATCH] Add package django-sslserver Add django-sslserver ver 0.15 which is an SSL-enabled development server for Django.

[OpenWrt-Devel] [PATCH] omap/Beagleboard: remove FEATURES override

2015-10-10 Thread Alexander Couzens
It overrides the feature list of the whole target. Signed-off-by: Alexander Couzens --- target/linux/omap/profiles/beagleboard.mk | 1 - 1 file changed, 1 deletion(-) diff --git a/target/linux/omap/profiles/beagleboard.mk b/target/linux/omap/profiles/beagleboard.mk index

Re: [OpenWrt-Devel] SVN to GIT transition

2015-10-10 Thread nemesis
On Sat, 10 Oct 2015 00:41:24 +0300, Roman Yeryomin wrote: On 9 October 2015 at 21:22, Jo-Philipp Wich wrote: Hi. Moving to Git seemed to have lots of traction at the summit, and I'll add my voice that this sounds like a step in the right direction

Re: [OpenWrt-Devel] SVN to GIT transition

2015-10-10 Thread Florian Fainelli
2015-10-10 10:45 GMT-07:00 nemesis : > On Sat, 10 Oct 2015 00:41:24 +0300, Roman Yeryomin > wrote: >> >> On 9 October 2015 at 21:22, Jo-Philipp Wich wrote: >>> >>> Hi. >>> Moving to Git seemed to have lots of traction at the

Re: [OpenWrt-Devel] SVN to GIT transition

2015-10-10 Thread Attila Lendvai
> There is a big problem with git, which is identifying what OpenWrt > release your image is based off. With subversion, it is fairly easy, > you have a revision number that keeps incrementing. With git, asking > people to give you their git-describe output might be a little harder. > On the plus

[OpenWrt-Devel] [PATCH 7/8] ramips: use transfer_one instead of transfer_one_message on mt7621 spi

2015-10-10 Thread Michael Lee
use kernel buildin transfer_one_message. we only need to implement transfer_one the hardware support max 5 bytes for opcode and address. max 32 bytes for tx/rx data. when first transfer fill data to op/addr register then wait second transfer and fill data to data register. finally start hardware

[OpenWrt-Devel] [PATCH 6/8] ramips: improve mt7621 spi chip select

2015-10-10 Thread Michael Lee
* use chip select register to control chip select function instead of use chip select polarity * should support use gpio as cs pin * deselected the spi device when setup and add debug info Signed-off-by: Michael Lee --- ...0061-SPI-ralink-add-mt7621-SoC-spi-driver.patch | 95

[OpenWrt-Devel] [PATCH 5/8] ramips: move mt7621 spi clock set to spi_prepare_message

2015-10-10 Thread Michael Lee
before spi transfer. use spi_prepare_message to setup spi hardware. it will setup MSB, spi mode and speed Signed-off-by: Michael Lee --- ...0061-SPI-ralink-add-mt7621-SoC-spi-driver.patch | 133 - 1 file changed, 75 insertions(+), 58 deletions(-) diff

[OpenWrt-Devel] [PATCH 1/8] ramips: complete mt7621 spi register define

2015-10-10 Thread Michael Lee
Signed-off-by: Michael Lee --- ...0061-SPI-ralink-add-mt7621-SoC-spi-driver.patch | 113 - 1 file changed, 85 insertions(+), 28 deletions(-) diff --git a/target/linux/ramips/patches-3.18/0061-SPI-ralink-add-mt7621-SoC-spi-driver.patch

[OpenWrt-Devel] [PATCH 8/8] ramips: update dtsi files to set mt7621 spi bus number

2015-10-10 Thread Michael Lee
Signed-off-by: Michael Lee --- target/linux/ramips/dts/mt7621.dtsi | 6 +- target/linux/ramips/dts/mt7628an.dtsi | 6 +- 2 files changed, 10 insertions(+), 2 deletions(-) diff --git a/target/linux/ramips/dts/mt7621.dtsi b/target/linux/ramips/dts/mt7621.dtsi index

[OpenWrt-Devel] [PATCH 3/8] ramips: clean up mt7621 spi probe/remove

2015-10-10 Thread Michael Lee
* fill struct according to the member order * add error clean up * set min/max spi speed. so we don't need to check again Signed-off-by: Michael Lee --- ...0061-SPI-ralink-add-mt7621-SoC-spi-driver.patch | 79 ++ 1 file changed, 37 insertions(+), 42

[OpenWrt-Devel] [PATCH 4/8] ramips: improve mt7621 spi setup

2015-10-10 Thread Michael Lee
check word sizes, set spi polarity and enable more buffer mode Signed-off-by: Michael Lee --- ...0061-SPI-ralink-add-mt7621-SoC-spi-driver.patch | 35 +- 1 file changed, 34 insertions(+), 1 deletion(-) diff --git

[OpenWrt-Devel] [PATCH] lantiq: bugfix wrong non pre-emptive crc errors output

2015-10-10 Thread Luca Debernardi
This patch fixes a wrong non pre-emptive crc errors output of dsl_control.sh status. --- target/linux/lantiq/base-files/lib/functions/lantiq_dsl.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/target/linux/lantiq/base-files/lib/functions/lantiq_dsl.sh

[OpenWrt-Devel] [PATCH 2/2] brcm2708: use mmd for overlays subdirectory

2015-10-10 Thread Álvaro Fernández Rojas
Fixes https://dev.openwrt.org/ticket/20704 Signed-off-by: Álvaro Fernández Rojas --- target/linux/brcm2708/image/Makefile | 9 ++--- 1 file changed, 2 insertions(+), 7 deletions(-) diff --git a/target/linux/brcm2708/image/Makefile b/target/linux/brcm2708/image/Makefile

[OpenWrt-Devel] [PATCH 1/2] mtools: build and install mmd

2015-10-10 Thread Álvaro Fernández Rojas
useful for making MS-DOS subdirectories Signed-off-by: Álvaro Fernández Rojas --- tools/mtools/Makefile | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/tools/mtools/Makefile b/tools/mtools/Makefile index 674c8dd..13de447 100644 ---

Re: [OpenWrt-Devel] SVN to GIT transition

2015-10-10 Thread Steven Barth
One important point was IIRC, migrating from one stable branch to another is awkward since the history is different, so rebasing custom changes on top is painful. All in all there was relatively overwhelming feedback of most of the people at the summit that there lifes would be very much easier