Re: [OpenWrt-Devel] [PATCH 1/4] [package] uboot-kirkwood: update to 2013.10

2013-12-17 Thread Wojciech Dubowik
Hello, I have just tried second stage and it seems to work. My Iconnect is powering my FHEM rig at the moment so I will test first stage when I have JTAG around. Br, Wojtek iconnect => tftp 0x80 openwrt-kirkwood-iconnect_second_stage-u-boot.img Using egiga0 device TFTP from server 192.168.

[OpenWrt-Devel] how to set busybox's some options now ?

2013-12-17 Thread xinglp
There's some usefull options for me, such as SAVEHISTORY, REVERSE_SEARCH, WGET_TIMEOUT, netcat and TRACEROUTE6. But the recent commit disabled the busybox configure memu. How to set somethings for busybox now ? My configure file's busybox part is below: # CONFIG_BUSYBOX_CONFIG_ARPING is not set #

[OpenWrt-Devel] report of sysupgrade incompatibility with mount-utils

2013-12-17 Thread Sebastian Moeller
Dear Developers, I am a quite happy user of the cerowrt "fork" of openwrt. Cerowrt users noticed some time ago that sysupgrade from the command line did not work anymore. We found the root cause mount-utils. It turns out busy box's /bin/mount has slightly different calling arguments than mount

Re: [OpenWrt-Devel] report of sysupgrade incompatibility with mount-utils

2013-12-17 Thread John Crispin
On 17/12/13 12:49, Sebastian Moeller wrote: replacing all invocations of "mount" with "/usr/mount" i think this would be the correct approach. John ___ openwrt-devel mailing list openwrt-devel@lists.openwrt.org https://lists.openwrt.org/cgi-

Re: [OpenWrt-Devel] how to set busybox's some options now ?

2013-12-17 Thread Yousong Zhou
Hi, On 17 December 2013 18:54, xinglp wrote: > There's some usefull options for me, such as SAVEHISTORY, > REVERSE_SEARCH, WGET_TIMEOUT, netcat and TRACEROUTE6. > But the recent commit disabled the busybox configure memu. How to set > somethings for busybox now ? The config for busybox can be ov

Re: [OpenWrt-Devel] how to set busybox's some options now ?

2013-12-17 Thread openwrt-de...@couprie.net
Hi yousong, Can you give a example how to call menuconfig for busybox ? Perry On 12/17/2013 02:42 PM, Yousong Zhou wrote: Hi, On 17 December 2013 18:54, xinglp wrote: There's some usefull options for me, such as SAVEHISTORY, REVERSE_SEARCH, WGET_TIMEOUT, netcat and TRACEROUTE6. But the rece

Re: [OpenWrt-Devel] [PATCH 1/4] ar71xx: add option to wake up phys on mdio reset

2013-12-17 Thread Gabor Juhos
2013.12.17. 1:12 keltezéssel, Felix Kaechele írta: > The bootloader on the WD My Net N750 disables the ports on it's internal > AR8327N switch by powering them down. The stock firmware then brings the > ports back up again by starting the auto negotiation process on each > port. > > There is one b

Re: [OpenWrt-Devel] how to set busybox's some options now ?

2013-12-17 Thread Yousong Zhou
On 17 December 2013 22:13, openwrt-de...@couprie.net wrote: > Hi yousong, > > Can you give a example how to call menuconfig for busybox ? I am doing menuconfig for busybox in OpenWrt build environment in which busybox tarball has already been extracted. Your situation may vary. Busybox itself pro

Re: [OpenWrt-Devel] how to set busybox's some options now ?

2013-12-17 Thread Martijn Zilverschoon
I think it does, because that also saves a lot of questions in the future (hopefully). Because I think a lot of people that build there own custom openwrt firmware often also modify the busybox config. 2013/12/17 Yousong Zhou : > On 17 December 2013 22:13, openwrt-de...@couprie.net > wrote: >> H

Re: [OpenWrt-Devel] how to set busybox's some options now ?

2013-12-17 Thread Hannu Nyman
Does it deserve a "busybox_menuconfig" just like "kernel_menuconfig"? > I think it does, because that also saves a lot of questions in the > future (hopefully). Because I think a lot of people that build there > own custom openwrt firmware often also modify the busybox config. I was especial

Re: [OpenWrt-Devel] how to set busybox's some options now ?

2013-12-17 Thread edgar . soldin
On 17.12.2013 16:14, Yousong Zhou wrote: > On 17 December 2013 22:13, openwrt-de...@couprie.net > wrote: >> Hi yousong, >> >> Can you give a example how to call menuconfig for busybox ? > > I am doing menuconfig for busybox in OpenWrt build environment in > which busybox tarball has already been

Re: [OpenWrt-Devel] how to depend on a busybox option / was: how to set busybox's some options now ?

2013-12-17 Thread Felix Fietkau
On 2013-12-17 20:23, Michael Heimpold wrote: > Hi, > > Am Dienstag, 17. Dezember 2013, 18:54:27 schrieb xinglp: >> There's some usefull options for me, such as SAVEHISTORY, >> REVERSE_SEARCH, WGET_TIMEOUT, netcat and TRACEROUTE6. >> But the recent commit disabled the busybox configure memu. How to

[OpenWrt-Devel] how to depend on a busybox option / was: how to set busybox's some options now ?

2013-12-17 Thread Michael Heimpold
Hi, Am Dienstag, 17. Dezember 2013, 18:54:27 schrieb xinglp: > There's some usefull options for me, such as SAVEHISTORY, > REVERSE_SEARCH, WGET_TIMEOUT, netcat and TRACEROUTE6. > But the recent commit disabled the busybox configure memu. How to set > somethings for busybox now ? > >... and anoth

[OpenWrt-Devel] [PATCH v2 0/5] Enable switch on WD My Net N750

2013-12-17 Thread Felix Kaechele
Now the mdio reset fixup is implemented as a callback from the board specific code. Felix Kaechele (5): ar71xx: make ag71xx_mdio_platform_data visible ar71xx: implement callback in mdio reset ar71xx: implement switch fix for WD My Net N750 ar71xx: fix WD My Net N750 switch led cfg ar71xx

[OpenWrt-Devel] [PATCH v2 3/5] ar71xx: implement switch fix for WD My Net N750

2013-12-17 Thread Felix Kaechele
The bootloader on the WD My Net N750 disables the ports on it's internal AR8327N switch by powering them down. The stock firmware then brings the ports back up again by starting the auto negotiation process on each port. This fix implements just that. Signed-off-by: Felix Kaechele --- .../ar71x

[OpenWrt-Devel] [PATCH v2 2/5] ar71xx: implement callback in mdio reset

2013-12-17 Thread Felix Kaechele
This enables us to add fixups to the board specific code for boards that require special treatment of PHYs on mdio bus reset. Signed-off-by: Felix Kaechele --- .../ar71xx/files/arch/mips/include/asm/mach-ath79/ag71xx_platform.h| 1 + .../ar71xx/files/drivers/net/ethernet/atheros/ag71xx/ag71x

[OpenWrt-Devel] [PATCH v2 1/5] ar71xx: make ag71xx_mdio_platform_data visible

2013-12-17 Thread Felix Kaechele
This enables us to modify the ag71xx_mdio_platform_data from within the board support files. Signed-off-by: Felix Kaechele --- target/linux/ar71xx/files/arch/mips/ath79/dev-eth.c | 4 ++-- target/linux/ar71xx/files/arch/mips/ath79/dev-eth.h | 2 ++ 2 files changed, 4 insertions(+), 2 deletions(-

[OpenWrt-Devel] [PATCH v2 5/5] ar71xx: enable images for WD My Net N750

2013-12-17 Thread Felix Kaechele
Now that the switch works correctly we can enable the images for this board. Flashing from the factory firmware, the factory failsafe loader and sysupgrade was tested successfully. Signed-off-by: Felix Kaechele --- target/linux/ar71xx/generic/profiles/wd.mk | 9 + target/linux/ar71xx/im

[OpenWrt-Devel] [PATCH v2 4/5] ar71xx: fix WD My Net N750 switch led cfg

2013-12-17 Thread Felix Kaechele
Now that the switch is working correctly I had the chance to actually test the LED config. Signed-off-by: Felix Kaechele --- target/linux/ar71xx/files/arch/mips/ath79/mach-mynet-n750.c | 8 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/target/linux/ar71xx/files/arch/mips

Re: [OpenWrt-Devel] [PATCH 001/005] [packages] gstreamer1: Add a new gstreamer1 package

2013-12-17 Thread Dirk Neukirchen
On 18.11.2013 03:13, W. Michael Petullo wrote: >>From 3d62dc179887b6ac1ad89af0ac85910cb0d4212d Mon Sep 17 00:00:00 2001 > From: "W. Michael Petullo" > Date: Sun, 17 Nov 2013 17:02:34 -0500 > Subject: [PATCH 1/5] Add a GStreamer 1.0 package. Many applications are > starting to require GStreamer 1.

Re: [OpenWrt-Devel] Has something changed the timing of network interface availability during startup?

2013-12-17 Thread Weedy
On 16 Dec 2013 12:54, "Mark Mentovai" wrote: > > Is this a new change with the ongoing netifd or procd work? In the new procd/netifd world, is there a better way to start services that depend on specific network interfaces? Hotplug ___ openwrt-devel mai