Re: [OpenWrt-Devel] [PATCH] fix wget-ssl dependencies

2012-11-20 Thread Daniel Dickinson
I can't speak for the OP, but maybe because of an external toolchain? I know that some dependencies (which are real dependencies, and should be stated not just implied, even if normally not exposed by a build error) only show up when using external toolchains, or at least that's most even when I'v

Re: [OpenWrt-Devel] [PATCH] fix wget-ssl dependencies

2012-11-20 Thread Jo-Philipp Wich
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Might be that it got introduced by configure because it detected certain stuff on the host system or staging_dir thats normally not there. It would help if the op could attach the config.log of wget. ~ Jow -BEGIN PGP SIGNATURE- Version: GnuPG

Re: [OpenWrt-Devel] [PATCH] fix wget-ssl dependencies

2012-11-20 Thread Luka Perkov
On Tue, Nov 20, 2012 at 07:02:38PM +0100, michael-dev wrote: > Index: net/wget/Makefile > === > --- net/wget/Makefile (Revision 34280) > +++ net/wget/Makefile (Arbeitskopie) > @@ -22,7 +22,7 @@ > define Package/wget/Default >S

Re: [OpenWrt-Devel] [PATCH 1/1] atheros: Revert "Add leds back after migration to sysfs"

2012-11-20 Thread Jonathan Bither
This also effects attitude adjustment, preventing many devices from booting. http://pastebin.com/EHCr6iZ9 On 11/20/2012 03:21 PM, Jonathan Bither wrote: It causes flash access errors on devices that use a non-standard gpio line line to control the spi flash chip select. First resolved in chang

[OpenWrt-Devel] [PATCH 1/1] atheros: Revert "Add leds back after migration to sysfs"

2012-11-20 Thread Jonathan Bither
It causes flash access errors on devices that use a non-standard gpio line line to control the spi flash chip select. First resolved in changeset # 16765 Signed-off-by: Jonathan Bither --- target/linux/atheros/base-files/etc/uci-defaults/leds | 11 --- target/linux/atheros/config-3.3

Re: [OpenWrt-Devel] [PATCH] build-system: allow to call clean target from source makefile

2012-11-20 Thread Roman Yeryomin
When developing/debugging a package I would like to make change/compile/try cycle to be shorter. Of cause you can do something like: - edit/save the code - cd build_dir/target_something/package - make clean - rm -f .built* - cd - - make package/name/compile but this looks and feels much nicer and

[OpenWrt-Devel] CrashLog broken on P1020WLAN (PPC)

2012-11-20 Thread michael-dev
Hi, CrashLog breaks booting the kernel for me on P1020 WLAN (PPC). Kernel output: Crashlog failed to allocate RAM at address 0x2ff0 [...] __ioremap(): phys addr 0x2fffc000 is RAM lr c0362eac Unable to handle kernel paging request for data at address 0x Faulting instruction address

[OpenWrt-Devel] [PATCH] fix wget-ssl dependencies

2012-11-20 Thread michael-dev
Index: net/wget/Makefile === --- net/wget/Makefile (Revision 34280) +++ net/wget/Makefile (Arbeitskopie) @@ -22,7 +22,7 @@ define Package/wget/Default SECTION:=net CATEGORY:=Network - DEPENDS:=+libpcre + DEPENDS:=+libpcre

Re: [OpenWrt-Devel] [PATCH] build-system: allow to call clean target from source makefile

2012-11-20 Thread Jonh Wendell
hi folks, in this same subject, I'd like to ask for review of a simple patch I submitted 2 months ago: http://patchwork.openwrt.org/patch/2653/ thanks, 2012/11/20 John Crispin > On 20/11/12 14:35, Roman Yeryomin wrote: > >> Allow to call clean target from source makefile with >> package//clean

Re: [OpenWrt-Devel] [PATCH] build-system: allow to call clean target from source makefile

2012-11-20 Thread John Crispin
On 20/11/12 14:35, Roman Yeryomin wrote: Allow to call clean target from source makefile with package//cleansrc. Useful when developing a package on-site. Signed-off-by: Roman Yeryomin mailto:ro...@advem.lv>> Hi, what do you need this for ? a more elaborate description would be welcome

[OpenWrt-Devel] [PATCH] build-system: allow to call clean target from source makefile

2012-11-20 Thread Roman Yeryomin
Allow to call clean target from source makefile with package//cleansrc. Useful when developing a package on-site. Signed-off-by: Roman Yeryomin diff --git a/include/package-defaults.mk b/include/package-defaults.mk index 45a92cf..a2af1e5 100644 --- a/include/package-defaults.mk +++ b/include/pac