Re: [OpenWrt-Devel] [PATCH] procd: hotplug.json: allow passing hotplug events from all subsystems

2015-11-28 Thread Luiz Angelo Daros de Luca
John, How about generate the subsystem list from /etc/hotplug.d dirs. The list could be loaded at startup and refreshed the same way hotplug.json is ( which might be "never" as procd does not have an "init q"). Regards, Luiz Em sáb, 28 de nov de 2015 21:14, John Crispin escreveu: > Hi Yousong

[OpenWrt-Devel] [PATCH] ramips:Fix support for PBR-M1 board

2015-11-28 Thread GuoGuo
The PBR-M1 support in current OpenWrt is for the early demo board and it doesn't work on the final board.This patch fixes the support for it. The LED called pbr-m1:buzzer is a beeper connected to GPIO26 so I used gpio-beeper instead of gpio-leds. But as I said in another mail,the beeper starts be

Re: [OpenWrt-Devel] Git mirror with branches, tags and full history

2015-11-28 Thread bkil
Good work, guys! GitHub pull requests with cloud CI integration (drone.io, travis, etc.), driven by an online distributed review process and single click merging would really enable scaling of this project. On Tue, Nov 10, 2015 at 1:30 AM, koniu wrote: > wouldn't it been nice to rewrite sign offs

[OpenWrt-Devel] pinctrl for rgmii2 doesn't work on MT7621?

2015-11-28 Thread 郭传鈜
Hi! I got a PBR-M1 board these days and i'm trying to fix the dts file for it.There is a beeper connected to GPIO26 which share the same pin with rgmii2.I found that the beeper started beeping after the ethernet driver was loaded and I can't control it by setting the value of GPIO26 unless I disabl

Re: [OpenWrt-Devel] pinctrl for rgmii2 doesn't work on MT7621?

2015-11-28 Thread 郭传鈜
Sorry I didn't type the whole mail before send it. 2015-11-29 9:07 GMT+08:00 郭传鈜 : > Hi! ___ openwrt-devel mailing list openwrt-devel@lists.openwrt.org https://lists.openwrt.org/cgi-bin/mailman/listinfo/openwrt-devel

[OpenWrt-Devel] pinctrl for rgmii2 doesn't work on MT7621?

2015-11-28 Thread 郭传鈜
Hi! ___ openwrt-devel mailing list openwrt-devel@lists.openwrt.org https://lists.openwrt.org/cgi-bin/mailman/listinfo/openwrt-devel

[OpenWrt-Devel] [PATCH 2/2] ar71xx: Update preinit script for new ath10k firmware

2015-11-28 Thread Martin Blumenstingl
Signed-off-by: Martin Blumenstingl --- I couldn't test this change since I don't have a device that uses this. target/linux/ar71xx/base-files/lib/preinit/82_patch_ath10k | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/target/linux/ar71xx/base-files/lib/preinit/82_patch_ath10k

[OpenWrt-Devel] [PATCH 1/2] ath10k-firmware: Update QCA988X firmware to 10.2.4.70.13-2

2015-11-28 Thread Martin Blumenstingl
Signed-off-by: Martin Blumenstingl --- Working fine for me after a short test on a QCA9880-BR4A. package/firmware/ath10k-firmware/Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/package/firmware/ath10k-firmware/Makefile b/package/firmware/ath10k-firmware/Makefil

[OpenWrt-Devel] [PATCH] polarssl: update to version 1.3.15

2015-11-28 Thread Martin Blumenstingl
This is a minor version update which fixes some small bugs. None of these bugs were exploitable according to the release notes. Signed-off-by: Martin Blumenstingl --- package/libs/polarssl/Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/package/libs/polarssl/Make

Re: [OpenWrt-Devel] [PATCH] uboot-at91: Add package for uboot on the at91 platform

2015-11-28 Thread John Crispin
Hi, see comments inline On 28/11/2015 19:35, Ben Whitten wrote: > This patch adds a uboot package for at91 and honours COPTS. > If the SPL binary is generated for the specified board it moves that too. > > Signed-off-by: Ben Whitten > --- > package/boot/uboot-at91/Makefile | 117 > +++

Re: [OpenWrt-Devel] [PATCH] procd: hotplug.json: allow passing hotplug events from all subsystems

2015-11-28 Thread John Crispin
Hi Yousong, On 28/11/2015 05:22, Yousong Zhou wrote: > There are time that programs need to be notified of events from > subsystems that are not enumerated in the .json definition, e.g. QEMU > guest agent by default requires /dev/virtio-ports/org.qemu.guest_agent.0 > which is a symlink to /dev/vpo

[OpenWrt-Devel] [PATCH] uboot-at91: Add package for uboot on the at91 platform

2015-11-28 Thread Ben Whitten
This patch adds a uboot package for at91 and honours COPTS. If the SPL binary is generated for the specified board it moves that too. Signed-off-by: Ben Whitten --- package/boot/uboot-at91/Makefile | 117 +++ 1 file changed, 117 insertions(+) create mode 1006

Re: [OpenWrt-Devel] [PATCH v2] ramips:Allow funcs in multiple groups in pinctrl-rt2880.c for UARTF pin sharing

2015-11-28 Thread Noble Pepper
This does work as you describe if the proper entries are in the device tree. There must be a node for the gpio system to use which references the group and function desired instead of a node like I had for uartf. The changes in v2 from the first patch are: 1. A change similar to what you descibe