[beagleboard] disassociating from 00:25...[snip] by local choice (reason=3) ?

2013-11-13 Thread Jacob Ole Juul Kolding
Hello Beagles! I've been working on building my own kernel using this guide: http://wiki.beyondlogic.org/index.php/BeagleBoneBlack_Building_Kernel And I've got it working mostly except from the wifi driver. I'm using the rtl8192cu chipset over USB and the modules loads and finds the device but w

Re: [beagleboard] disassociating from 00:25...[snip] by local choice (reason=3) ?

2013-11-13 Thread Nuno Sucena Almeida
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 On 11/13/2013 07:43 AM, Jacob Ole Juul Kolding wrote: > Can anyone tell me whats wrong? > > Thanks! > /Jacob What hardware do you have? You might to build a new driver out of tree, the one that comes with the kernel doesn't work properly with some de

Re: [beagleboard] disassociating from 00:25...[snip] by local choice (reason=3) ?

2013-11-13 Thread Jacob Ole Juul Kolding
2013/11/13 Nuno Sucena Almeida > -BEGIN PGP SIGNED MESSAGE- > Hash: SHA1 > > On 11/13/2013 07:43 AM, Jacob Ole Juul Kolding wrote: > > Can anyone tell me whats wrong? > > > > Thanks! > > /Jacob > > What hardware do you have? You might to build a new driver out of tree, > the one that come

Re: [beagleboard] disassociating from 00:25...[snip] by local choice (reason=3) ?

2013-11-13 Thread Nuno Sucena Almeida
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 On 11/13/2013 08:42 AM, Jacob Ole Juul Kolding wrote: > But ifconfig shows that there is no inet4 address: ?? You might be missing a few steps there. Did you configure wpa supplicant with wifi password, etc ? You can check what wpa supplicant is doing

Re: [beagleboard] disassociating from 00:25...[snip] by local choice (reason=3) ?

2013-11-13 Thread Jacob Ole Juul Kolding
2013/11/13 Nuno Sucena Almeida > -BEGIN PGP SIGNED MESSAGE- > Hash: SHA1 > > On 11/13/2013 08:42 AM, Jacob Ole Juul Kolding wrote: > > But ifconfig shows that there is no inet4 address: ?? > > You might be missing a few steps there. Did you configure wpa supplicant > with wifi password, e

Re: [beagleboard] disassociating from 00:25...[snip] by local choice (reason=3) ?

2013-11-13 Thread Nuno Sucena Almeida
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 On 11/13/2013 09:01 AM, Jacob Ole Juul Kolding wrote: > I'm not using wpa supplicant, just dhcp Cross-compiling from a x86_64 machine, with gnuabihf: ~$ arm-linux-gnueabihf-gcc --version arm-linux-gnueabihf-gcc (Ubuntu/Linaro 4.7.3-1ubuntu1) 4.7.3

Re: [beagleboard] disassociating from 00:25...[snip] by local choice (reason=3) ?

2013-11-13 Thread Jacob Ole Juul Kolding
I tried compiling using your instructions but still get the same error: dacobi@ubuntu:~/rtl8192cu_beaglebone2$ make KSRC=../linux-dev/KERNEL/ ARCH=arm CROSS_COMPILE=arm-linux-gnueabihf- make[1]: Entering directory `/home/dacobi/linux-dev/KERNEL' CC [M] /home/dacobi/rtl8192cu_beaglebone2/os_dep

Re: [beagleboard] disassociating from 00:25...[snip] by local choice (reason=3) ?

2013-11-13 Thread Nuno Sucena Almeida
On 11/13/2013 10:48 AM, Jacob Ole Juul Kolding wrote: > I tried compiling using your instructions but still get the same error: Did you cross-compile the kernel successfully before building the 8192 module? Which kernel version are you building? Nuno -- http://aeminium.org/nuno/ -- For more o

Re: [beagleboard] disassociating from 00:25...[snip] by local choice (reason=3) ?

2013-11-13 Thread Jacob Ole Juul Kolding
The problem seems to be that create_proc_entry is deprecated: (https://github.com/raspberrypi/linux/pull/328) When I compiled I did git checkout 3.12-bone8 and ran the build_kernel.sh which invoked: make -j8 ARCH=arm LOCALVERSION=-bone8 CROSS_COMPILE=/home/dacobi/linux-dev/dl/gcc-linaro-arm-linu

Re: [beagleboard] disassociating from 00:25...[snip] by local choice (reason=3) ?

2013-11-13 Thread Jacob Ole Juul Kolding
I applied the patch from the raspberrypi git and it compiled :) I will test the module later tonight. https://raw.github.com/cybertronic/linux/0fdfdc69c275018b29f5350b4ba64c5241fb1010/drivers/net/wireless/rtl8192cu/os_dep/linux/os_intfs.c Thanks! /Jacob 2013/11/13 Jacob Ole Juul Kolding > The

Re: [beagleboard] disassociating from 00:25...[snip] by local choice (reason=3) ?

2013-11-13 Thread Nuno Sucena Almeida
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 On 11/13/2013 11:41 AM, Jacob Ole Juul Kolding wrote: > The problem seems to be that create_proc_entry is deprecated: > (https://github.com/raspberrypi/linux/pull/328) > > When I compiled I did > > git checkout 3.12-bone8 and ran the build_kernel.sh