[OpenWrt-Devel] R: Re: opkg build failure

2008-10-16 Thread Roberto Riggio
Everything works fine with me. I've just successfully built 
kamikaze for a pcengines board.

- "Marcus Better" <[EMAIL PROTECTED]> ha scritto:

> 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


-- 

Roberto Riggio, PhD

CREATE-NET
Via alla Cascata 56/C 
38100 Trento (Italy)

E-mail: [EMAIL PROTECTED]
HomePage: http://disi.unitn.it/~riggio/

Tel: +39.0461.40.84.00 (ext. 708)
Fax: +39.0461.314.972

___
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] 2.6.25.7 and b43 driver oops

2008-10-16 Thread Brian J. Murrell
On Thu, 2008-10-16 at 18:26 +0100, Peter Denison wrote:
> 
> This is not an instruction decode for the MIPS architecture. You need to 
> use the -a switch to ksymoops, which probably means you need to compile a 
> cross-tools version that is linked against a libbfd that understands the 
> MIPS architecture.

Doh!  That totally makes sense.  ~sigh~  Any(one have any) idea how to
do this with the openwrt kamikaze buildroot?

Probably just easier to build it for the MIPS architecture and run it
right on the router.

b.



signature.asc
Description: This is a digitally signed message part
___
openwrt-devel mailing list
openwrt-devel@lists.openwrt.org
http://lists.openwrt.org/cgi-bin/mailman/listinfo/openwrt-devel


Re: [OpenWrt-Devel] 2.6.25.7 and b43 driver oops

2008-10-16 Thread Peter Denison
On Thu, 16 Oct 2008, Brian J. Murrell wrote:

> OK.  Figured out how to use ksymoops with the openwrt kernel build to
> get a useful stack trace:
>
> $ ksymoops -v build_dir/linux-brcm47xx/linux-2.6.25.7/vmlinux -m 
> build_dir/linux-brcm47xx/linux-2.6.25.7/System.map
> ksymoops 2.4.11 on i686 2.6.27-6-generic.  Options used
> -v build_dir/linux-brcm47xx/linux-2.6.25.7/vmlinux (specified)
> -k /proc/ksyms (default)
> -l /proc/modules (default)
> -o /lib/modules/2.6.27-6-generic/ (default)
> -m build_dir/linux-brcm47xx/linux-2.6.25.7/System.map (specified)

[...snip...]
> Code;  80116358 
>   8:   ff 00 incl   (%eax)
> Code;  8011635a 
>   a:   42inc%edx
> Code;  8011635b<=
>   b:   30 00 xor%al,(%eax)   <=
> Code;  8011635d 
>   d:   00 82 94 08 00 e0 add%al,-0x176c(%edx)
> Code;  80116363 
>
> I didn't mention before but this is running on an asus wl500gp FWIW.
>

This is not an instruction decode for the MIPS architecture. You need to 
use the -a switch to ksymoops, which probably means you need to compile a 
cross-tools version that is linked against a libbfd that understands the 
MIPS architecture.
___
openwrt-devel mailing list
openwrt-devel@lists.openwrt.org
http://lists.openwrt.org/cgi-bin/mailman/listinfo/openwrt-devel


[OpenWrt-Devel] [PATCH] compile spi-ks8995 with 2.6.27

2008-10-16 Thread Jose Vasconcellos
Kernel version 2.6.27 changes the location of some of
the include files. This patch adds the arch-specific directory
to the include list so it compiles properly.

Signed-off-by: Jose Vasconcellos <[EMAIL PROTECTED]>


Index: package/spi-ks8995/Makefile
===
--- package/spi-ks8995/Makefile(revision 12987)
+++ package/spi-ks8995/Makefile(working copy)
@@ -39,7 +39,7 @@
 CROSS_COMPILE="$(TARGET_CROSS)" \
 SUBDIRS="$(PKG_BUILD_DIR)" \
 EXTRA_CFLAGS="$(EXTRA_CFLAGS)" \
-LINUXINCLUDE="-I$(LINUX_DIR)/include -include linux/autoconf.h" \
+LINUXINCLUDE="-I$(LINUX_DIR)/include 
-I$(LINUX_DIR)/arch/$(LINUX_KARCH)/include -include linux/autoconf.h" \
 $(EXTRA_KCONFIG)
 
 define Build/Prepare

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