Re: [OpenWrt-Devel] b43 driver

2010-02-11 Thread Marcus Better
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Stefan Monnier wrote:
> IIUC it may also work fine in master mode (i.e. as an
> AP) without encryption, but not as an AP with WPA (not sure if it just
> plain doesn't work, or simply suffers from serious performance bugs).

AP with WPA2-PSK generally works for me on Asus WL-500g Deluxe, but 
throughput is very bad.

Cheers,

Marcus
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.10 (GNU/Linux)

iEYEARECAAYFAktz1AEACgkQXjXn6TzcAQmdhgCgk/bVfOgttGoi914FwZmY1sio
fooAn2dcNxzHAM2q5yllHWQB3vnmnA+k
=edms
-END PGP SIGNATURE-


___
openwrt-devel mailing list
openwrt-devel@lists.openwrt.org
https://lists.openwrt.org/mailman/listinfo/openwrt-devel


[OpenWrt-Devel] [PATCH] Fix ip6tables compilation for kernel 2.6.30.

2009-07-15 Thread Marcus Better
The ip6t_hl and ip6t_HL modules have been merged into ipt_ttl and ipt_TTL.

Signed-off-by: Marcus Better 
---
 include/netfilter.mk |4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/include/netfilter.mk b/include/netfilter.mk
index ab1749c..3ee4daa 100644
--- a/include/netfilter.mk
+++ b/include/netfilter.mk
@@ -144,6 +144,8 @@ ifeq ($(strip $(call 
CompareKernelPatchVer,$(KERNEL_PATCHVER),ge,2.6.30)),1)
 else
   $(eval $(call nf_add,IPT_IPOPT,CONFIG_IP_NF_MATCH_TTL, $(P_V4)ipt_ttl))
   $(eval $(call nf_add,IPT_IPOPT,CONFIG_IP_NF_TARGET_TTL, $(P_V4)ipt_TTL))
+  $(eval $(call nf_add,IPT_IPV6,CONFIG_IP6_NF_MATCH_HL, $(P_V6)ip6t_hl))
+  $(eval $(call nf_add,IPT_IPV6,CONFIG_IP6_NF_TARGET_HL, $(P_V6)ip6t_HL))
 endif
 
 
@@ -191,7 +193,6 @@ $(eval $(if $(NF_KMOD),$(call 
nf_add,IPT_IPV6,CONFIG_IP6_NF_RAW, $(P_V6)ip6table
 $(eval $(call nf_add,IPT_IPV6,CONFIG_IP6_NF_MATCH_AH, $(P_V6)ip6t_ah))
 $(eval $(call nf_add,IPT_IPV6,CONFIG_IP6_NF_MATCH_EUI64, $(P_V6)ip6t_eui64))
 $(eval $(call nf_add,IPT_IPV6,CONFIG_IP6_NF_MATCH_FRAG, $(P_V6)ip6t_frag))
-$(eval $(call nf_add,IPT_IPV6,CONFIG_IP6_NF_MATCH_HL, $(P_V6)ip6t_hl))
 $(eval $(call nf_add,IPT_IPV6,CONFIG_IP6_NF_MATCH_IPV6HEADER, 
$(P_V6)ip6t_ipv6header))
 $(eval $(call nf_add,IPT_IPV6,CONFIG_IP6_NF_MATCH_LIMIT, $(P_V6)ip6t_limit))
 $(eval $(call nf_add,IPT_IPV6,CONFIG_IP6_NF_MATCH_MH, $(P_V6)ip6t_mh))
@@ -199,7 +200,6 @@ $(eval $(call nf_add,IPT_IPV6,CONFIG_IP6_NF_MATCH_OWNER, 
$(P_V6)ip6t_owner))
 $(eval $(call nf_add,IPT_IPV6,CONFIG_IP6_NF_MATCH_OPTS, $(P_V6)ip6t_hbh))
 $(eval $(call nf_add,IPT_IPV6,CONFIG_IP6_NF_MATCH_RT, $(P_V6)ip6t_rt))
 
-$(eval $(call nf_add,IPT_IPV6,CONFIG_IP6_NF_TARGET_HL, $(P_V6)ip6t_HL))
 $(eval $(call nf_add,IPT_IPV6,CONFIG_IP6_NF_TARGET_IMQ, $(P_V6)ip6t_IMQ))
 $(eval $(call nf_add,IPT_IPV6,CONFIG_IP6_NF_TARGET_LOG, $(P_V6)ip6t_LOG))
 $(eval $(call nf_add,IPT_IPV6,CONFIG_IP6_NF_TARGET_REJECT, $(P_V6)ip6t_REJECT))
-- 
1.6.3.3


___
openwrt-devel mailing list
openwrt-devel@lists.openwrt.org
https://lists.openwrt.org/mailman/listinfo/openwrt-devel


[OpenWrt-Devel] [PATCH] Remove target directory before "git clone" (try 2)

2009-01-13 Thread Marcus Better
Cloning into an existing directory is not allowed.

Signed-off-by: Marcus Better 
---
 include/kernel-defaults.mk |6 ++
 1 files changed, 6 insertions(+), 0 deletions(-)

diff --git a/include/kernel-defaults.mk b/include/kernel-defaults.mk
index 36f9174..d2ff4b9 100644
--- a/include/kernel-defaults.mk
+++ b/include/kernel-defaults.mk
@@ -40,10 +40,16 @@ ifeq ($(strip $(CONFIG_EXTERNAL_KERNEL_TREE)),"")
   else
 ifeq ($(strip $(CONFIG_KERNEL_GIT_LOCAL_REPOSITORY)),"")
 define Kernel/Prepare/Default
+   if [ -d $(LINUX_DIR) ]; then \
+   rmdir $(LINUX_DIR); \
+   fi
git clone $(CONFIG_KERNEL_GIT_CLONE_URI) $(LINUX_DIR)
 endef
   else
 define Kernel/Prepare/Default
+   if [ -d $(LINUX_DIR) ]; then \
+   rmdir $(LINUX_DIR); \
+   fi
git clone --reference $(CONFIG_KERNEL_GIT_LOCAL_REPOSITORY) 
$(CONFIG_KERNEL_GIT_CLONE_URI) $(LINUX_DIR) 
 endef
   endif
-- 
1.6.0.4



___
openwrt-devel mailing list
openwrt-devel@lists.openwrt.org
http://lists.openwrt.org/cgi-bin/mailman/listinfo/openwrt-devel


Re: [OpenWrt-Devel] [PATCH] Remove target directory before "git clone"

2009-01-11 Thread Marcus Better
Marcus Better wrote:
> +   rmdir $(LINUX_DIR)

Sorry, wrong patch. That fails unless the target directory exists.

/Marcus


___
openwrt-devel mailing list
openwrt-devel@lists.openwrt.org
http://lists.openwrt.org/cgi-bin/mailman/listinfo/openwrt-devel


[OpenWrt-Devel] [PATCH] Remove target directory before "git clone"

2009-01-11 Thread Marcus Better
Cloning into an existing directory is not allowed.

Signed-off-by: Marcus Better 

---
 include/kernel-defaults.mk |2 ++
 1 files changed, 2 insertions(+), 0 deletions(-)

diff --git a/include/kernel-defaults.mk b/include/kernel-defaults.mk
index 36f9174..b2afcd9 100644
--- a/include/kernel-defaults.mk
+++ b/include/kernel-defaults.mk
@@ -40,10 +40,12 @@ ifeq ($(strip $(CONFIG_EXTERNAL_KERNEL_TREE)),"")
   else
 ifeq ($(strip $(CONFIG_KERNEL_GIT_LOCAL_REPOSITORY)),"")
 define Kernel/Prepare/Default
+   rmdir $(LINUX_DIR)
git clone $(CONFIG_KERNEL_GIT_CLONE_URI) $(LINUX_DIR)
 endef
   else
 define Kernel/Prepare/Default
+   rmdir $(LINUX_DIR)
git clone --reference $(CONFIG_KERNEL_GIT_LOCAL_REPOSITORY) 
$(CONFIG_KERNEL_GIT_CLONE_URI) $(LINUX_DIR) 
 endef
   endif
-- 
1.6.0.4


___
openwrt-devel mailing list
openwrt-devel@lists.openwrt.org
http://lists.openwrt.org/cgi-bin/mailman/listinfo/openwrt-devel


Re: [OpenWrt-Devel] opkg build failure

2008-10-19 Thread Marcus Better
Roberto Riggio wrote:
> Everything works fine with me. I've just successfully built
> kamikaze for a pcengines board.

Ok, it works for me in the default configuration too. Maybe I used 
non-default toolchain options.

Cheers,

Marcus


___
openwrt-devel mailing list
openwrt-devel@lists.openwrt.org
http://lists.openwrt.org/cgi-bin/mailman/listinfo/openwrt-devel


Re: [OpenWrt-Devel] opkg build failure

2008-10-16 Thread Marcus Better
Marcus Better wrote:
> Note the double '|' in that command line. Seems to be caused by ccache:
>   http://bugs.gentoo.org/show_bug.cgi?id=196243

Umm, disabling ccache didn't help. Am I the only one hitting this problem?

Cheers,

Marcus


___
openwrt-devel mailing list
openwrt-devel@lists.openwrt.org
http://lists.openwrt.org/cgi-bin/mailman/listinfo/openwrt-devel


Re: [OpenWrt-Devel] opkg build failure

2008-10-12 Thread Marcus Better
Marcus Better wrote:
> All my attempts to build current kamikaze svn end with the following
> error:

> generating symbol list for `libopkg.la'
> mipsel-linux-uclibc-nm  .libs/args.o .libs/libopkg.o .libs/user.o
> .libs/opkg_state.o .libs/opkg.o .libs/opkg_cmd.o .libs/opkg_configure.o
> .libs/opkg_download.o .libs/opkg_install.o .libs/opkg_upgrade.o
> .libs/opkg_remove.o .libs/opkg_conf.o .libs/opkg_utils.o .libs/pkg.o
> .libs/pkg_depends.o .libs/pkg_extract.o .libs/hash_table.o
> .libs/pkg_hash.o .libs/pkg_parse.o .libs/pkg_vec.o .libs/file_util.o
> .libs/opkg_message.o .libs/md5.o .libs/sprintf_alloc.o .libs/str_util.o
> .libs/xregex.o .libs/xsystem.o .libs/conffile.o .libs/conffile_list.o
> .libs/nv_pair.o .libs/nv_pair_list.o .libs/pkg_dest.o
> .libs/pkg_dest_list.o .libs/pkg_src.o .libs/pkg_src_list.o
> .libs/str_list.o .libs/void_list.o  ../libbb/.libs/libbb.a |  |
> /home/marcus/openwrt/staging_dir/host/bin/sed 's/.* //' | sort | uniq >
> .libs/libopkg.exp
> ../libtool: eval: line 4344: syntax error near unexpected token `|'

Note the double '|' in that command line. Seems to be caused by ccache:
  http://bugs.gentoo.org/show_bug.cgi?id=196243

/Marcus


___
openwrt-devel mailing list
openwrt-devel@lists.openwrt.org
http://lists.openwrt.org/cgi-bin/mailman/listinfo/openwrt-devel


[OpenWrt-Devel] opkg build failure

2008-10-06 Thread Marcus Better
All my attempts to build current kamikaze svn end with the following error:

make[5]: Entering directory 
`/home/marcus/openwrt/build_dir/mipsel/opkg-4564/libopkg'
make  all-am
make[6]: Entering directory 
`/home/marcus/openwrt/build_dir/mipsel/opkg-4564/libopkg'
/bin/sh ../libtool --tag=CC --mode=link ccache mipsel-linux-uclibc-gcc -Wall 
-Werror -DHOST_CPU_STR=\"mipsel\" -DBUILD_CPU=x86_64 -DLIBDIR=\"/usr/lib\" 
-DOPKGLIBDIR=\"/usr/lib\" -DDATADIR=\"/usr/share\" -I..-Os -pipe -mips32 
-mtune=mips32 -funit-at-a-time -fhonour-copts -fpic 
-I/home/marcus/openwrt/staging_dir/mipsel/usr/include 
-I/home/marcus/openwrt/staging_dir/mipsel/include 
-I/home/marcus/openwrt/staging_dir/mipsel/usr/lib  
-L/home/marcus/openwrt/staging_dir/toolchain-mipsel_gcc4.1.2/lib 
-L/home/marcus/openwrt/staging_dir/mipsel/usr/lib 
-L/home/marcus/openwrt/staging_dir/mipsel/lib 
-L/home/marcus/openwrt/staging_dir/mipsel/usr/lib 
-Wl,-rpath-link,/home/marcus/openwrt/staging_dir/mipsel/usr/lib -o libopkg.la 
-rpath /usr/lib -export-symbols-regex "^opkg_.*" args.lo libopkg.lo user.lo 
opkg_state.lo opkg.lo opkg_cmd.lo opkg_configure.lo opkg_download.lo 
opkg_install.lo opkg_upgrade.lo opkg_remove.lo opkg_conf.lo opkg_utils.lo 
pkg.lo pkg_depends.lo pkg_extract.lo hash_tabl
 e.lo pkg_hash.lo pkg_parse.lo pkg_vec.lo file_util.lo opkg_message.lo md5.lo 
sprintf_alloc.lo str_util.lo xregex.lo xsystem.lo conffile.lo conffile_list.lo 
nv_pair.lo nv_pair_list.lo pkg_dest.lo pkg_dest_list.lo pkg_src.lo 
pkg_src_list.lo str_list.lo void_list.lo ../libbb/libbb.la
generating symbol list for `libopkg.la'
mipsel-linux-uclibc-nm  .libs/args.o .libs/libopkg.o .libs/user.o 
.libs/opkg_state.o .libs/opkg.o .libs/opkg_cmd.o .libs/opkg_configure.o 
.libs/opkg_download.o .libs/opkg_install.o .libs/opkg_upgrade.o 
.libs/opkg_remove.o .libs/opkg_conf.o .libs/opkg_utils.o .libs/pkg.o 
.libs/pkg_depends.o .libs/pkg_extract.o .libs/hash_table.o .libs/pkg_hash.o 
.libs/pkg_parse.o .libs/pkg_vec.o .libs/file_util.o .libs/opkg_message.o 
.libs/md5.o .libs/sprintf_alloc.o .libs/str_util.o .libs/xregex.o 
.libs/xsystem.o .libs/conffile.o .libs/conffile_list.o .libs/nv_pair.o 
.libs/nv_pair_list.o .libs/pkg_dest.o .libs/pkg_dest_list.o .libs/pkg_src.o 
.libs/pkg_src_list.o .libs/str_list.o .libs/void_list.o  ../libbb/.libs/libbb.a 
|  | /home/marcus/openwrt/staging_dir/host/bin/sed 's/.* //' | sort | uniq > 
.libs/libopkg.exp
../libtool: eval: line 4344: syntax error near unexpected token `|'
../libtool: eval: line 4344: `mipsel-linux-uclibc-nm  .libs/args.o 
.libs/libopkg.o .libs/user.o .libs/opkg_state.o .libs/opkg.o .libs/opkg_cmd.o 
.libs/opkg_configure.o .libs/opkg_download.o .libs/opkg_install.o 
.libs/opkg_upgrade.o .libs/opkg_remove.o .libs/opkg_conf.o .libs/opkg_utils.o 
.libs/pkg.o .libs/pkg_depends.o .libs/pkg_extract.o .libs/hash_table.o 
.libs/pkg_hash.o .libs/pkg_parse.o .libs/pkg_vec.o .libs/file_util.o 
.libs/opkg_message.o .libs/md5.o .libs/sprintf_alloc.o .libs/str_util.o 
.libs/xregex.o .libs/xsystem.o .libs/conffile.o .libs/conffile_list.o 
.libs/nv_pair.o .libs/nv_pair_list.o .libs/pkg_dest.o .libs/pkg_dest_list.o 
.libs/pkg_src.o .libs/pkg_src_list.o .libs/str_list.o .libs/void_list.o  
../libbb/.libs/libbb.a |  | /home/marcus/openwrt/staging_dir/host/bin/sed 's/.* 
//' | sort | uniq > .libs/libopkg.exp'
make[6]: *** [libopkg.la] Error 1
make[6]: Leaving directory 
`/home/marcus/openwrt/build_dir/mipsel/opkg-4564/libopkg'

I'm building for brcm47xx, and have tried several versions of binutils and gcc. 
The host is running Debian Linux (amd64).

Cheers,

Marcus


___
openwrt-devel mailing list
openwrt-devel@lists.openwrt.org
http://lists.openwrt.org/cgi-bin/mailman/listinfo/openwrt-devel