[OpenWrt-Devel] [PATCH 1/3] add missing autoload shortcut to crypto modules for btrfs

2011-07-12 Thread Jan Willies
Signed-off-by: Jan Willies j...@willies.info --- package/kernel/modules/crypto.mk |4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff --git a/package/kernel/modules/crypto.mk b/package/kernel/modules/crypto.mk index e869851..1532afb 100644 --- a/package/kernel/modules/crypto.mk

[OpenWrt-Devel] [PATCH 2/3] btrfs depends on lzo since 2.6.38

2011-07-12 Thread Jan Willies
Signed-off-by: Jan Willies j...@willies.info --- package/kernel/modules/fs.mk |2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/package/kernel/modules/fs.mk b/package/kernel/modules/fs.mk index f7720e0..890da77 100644 --- a/package/kernel/modules/fs.mk +++

[OpenWrt-Devel] [PATCH 0/3] make btrfs work with recent kernels

2011-07-12 Thread Jan Willies
Jan Willies (3): add missing autoload shortcut to crypto modules for btrfs btrfs depends on lzo since 2.6.38 add LZO modules ___ openwrt-devel mailing list openwrt-devel@lists.openwrt.org https://lists.openwrt.org/mailman/listinfo/openwrt-devel

[OpenWrt-Devel] [PATCH 3/3] add LZO modules

2011-07-12 Thread Jan Willies
Signed-off-by: Jan Willies j...@willies.info --- package/kernel/modules/crypto.mk | 17 + 1 files changed, 17 insertions(+), 0 deletions(-) diff --git a/package/kernel/modules/crypto.mk b/package/kernel/modules/crypto.mk index 1532afb..6724e7b 100644 ---

[OpenWrt-Devel] [PATCH V2] add CONFIG_INOTIFY_USER to kernel = 2.6.36

2011-07-12 Thread Jan Willies
add CONFIG_INOTIFY_USER=y to 3.0 as well Signed-off-by: Jan Willies j...@willies.info --- target/linux/generic/config-2.6.36 |2 +- target/linux/generic/config-2.6.37 |2 +- target/linux/generic/config-2.6.38 |2 +- target/linux/generic/config-2.6.39 |2 +-

Re: [OpenWrt-Devel] [PATCH] Fix ARMv4 support

2011-07-12 Thread Imre Kaloz
Thanks, commited as r27599. Imre On Fri, 08 Jul 2011 17:40:27 +0200, Jochen Friedrich joc...@scram.de wrote: In R27118, TARGET_FIX_V4BX_SPEC got lost in the linker parameters. Add it back. Signed-off-by: Jochen Friedrich joc...@scram.de diff --git

Re: [OpenWrt-Devel] [PATCH] Version Bump Minidlna 1.0.20

2011-07-12 Thread John Crispin
applied in r27601 thanks, John ___ openwrt-devel mailing list openwrt-devel@lists.openwrt.org https://lists.openwrt.org/mailman/listinfo/openwrt-devel

[OpenWrt-Devel] pjsip doesn't build in trunk Orion due libgcc issue

2011-07-12 Thread Matthias Buecher / Germany
A current log and error description is available in ticket #9017 [1] Thanks in advance Maddes [1] https://dev.openwrt.org/ticket/9017 ___ openwrt-devel mailing list openwrt-devel@lists.openwrt.org

[OpenWrt-Devel] perf doesn't build on Debian

2011-07-12 Thread Matthias Buecher / Germany
Hi everybody, I'm unable to resolve the dependencies for package perf in trunk, also `make menuconfig` throws errors about the perf package. Detailed log is available in ticket #9696 [1] . Regards Maddes [1] https://dev.openwrt.org/ticket/9696 ___

[OpenWrt-Devel] Compat-wireless (mac80211) not building?

2011-07-12 Thread Philip Prindeville
Anyone else seeing breakage in compat-wireless? CC [M] /home/philipp/openwrt2/build_dir/linux-x86_geos/compat-wireless-2011-06-22/compat/compat_atomic.o /home/philipp/openwrt2/build_dir/linux-x86_geos/compat-wireless-2011-06-22/compat/compat_atomic.c:6:11: error: conflicting types for

Re: [OpenWrt-Devel] Compat-wireless (mac80211) not building?

2011-07-12 Thread Outback Dingo
nope, i just built fresh from git for Ubiquiti M devices, works fine here On Tue, Jul 12, 2011 at 10:19 PM, Philip Prindeville philipp_s...@redfish-solutions.com wrote: Anyone else seeing breakage in compat-wireless? CC [M]

Re: [OpenWrt-Devel] Compat-wireless (mac80211) not building?

2011-07-12 Thread Philip Prindeville
Yeah, look closely. There's already a definition for atomic64_read() in arch/x86/include/asm/atomic64_32.h, so this fix would work on non-x86 architectures, but break architectures already having an inline'd atomic64_read() instruction... On 7/12/11 7:20 PM, Outback Dingo wrote: nope, i just

[OpenWrt-Devel] [PATCH 1/1] mac80211: atomic64_read() already present on x86 processors

2011-07-12 Thread Philip Prindeville
This is a fix to a regression introduced in r27572. Here's a fix, but... my kernel doesn't have CONFIG_GENERIC_ATOMIC64 set... yet compat-wireless is still trying to compile and link it. Why is that? Index: package/mac80211/patches/022-atomic64_backport.patch

[OpenWrt-Devel] [PATCH 1/1] mac80211: atomic64_read() already present on x86 processors

2011-07-12 Thread Philip Prindeville
This is a fix to a regression introduced in r27572. Redux: thanks, Daniel, for pointing out the ifndef CONFIG_GENERIC_ATOMIC64 was backwards in sense. Index: package/mac80211/patches/022-atomic64_backport.patch === ---

Re: [OpenWrt-Devel] [PATCH 1/1] mac80211: atomic64_read() already present on x86 processors

2011-07-12 Thread Daniel Dickinson
On Tue, 12 Jul 2011 22:47:23 -0700 Philip Prindeville philipp_s...@redfish-solutions.com wrote: This is a fix to a regression introduced in r27572. Redux: thanks, Daniel, for pointing out the ifndef CONFIG_GENERIC_ATOMIC64 was backwards in sense. Er, no, I meant that it was always true