chrissy wrote: 
> Hi,
> 
> it is up and running. After starting over again, I only changed the
> script.bin file and loaded the module and wifi worked. I changed the
> line bcmdhd in /etc/modules-load.d/cubie.conf to ap6210 and the module
> is loaded at boot an wifi starts up.
> Now I have to figure out how to get the new script.bin file into the
> install image.
> 
> This is work for tomorrow :-)
> Greets
> Chris

Just mod the create-sdcard-soa-cubietruck.sh in the SOA cubietruck
installer image, where  it says:


Code:
--------------------
    
  echo "Writing uboot"
  tar -xf $UBOOT_TAR -C mnt --exclude='.PKGINFO' --exclude='.MTREE' 
--exclude='.INSTALL'
  sync
  
--------------------


change to


Code:
--------------------
    
  echo "Writing uboot"
  tar -xf $UBOOT_TAR -C mnt --exclude='.PKGINFO' --exclude='.MTREE' 
--exclude='.INSTALL'
  wget 
https://github.com/cubieboard/cubie_configs/blob/master/sysconfig/linux/cubietruck.fex
  mv script.bin mnt/boot/script.bin
  sync
  
--------------------


On your current runnig system it would be insteresting to diff the fex
version of the two different script.bin files


------------------------------------------------------------------------
Krisbee's Profile: http://forums.slimdevices.com/member.php?userid=59080
View this thread: http://forums.slimdevices.com/showthread.php?t=101624

_______________________________________________
unix mailing list
[email protected]
http://lists.slimdevices.com/mailman/listinfo/unix

Reply via email to