tik0 wrote:Hi there,
first of all, great job what you have done there with the Pi! So now my issue:
Systemstate:
Installad "2012-12-16-wheezy-raspbian" and the newest firmware(<- Here is the problem) from github. After that I ran apt-get update and apt-get upgrade, so everything is realy up-to-date.
Running: unameCode: Select all
Linux raspberrypi 3.6.11+
Problem:
With copying the new firmware from Github onto my Pi, the new Kernel 3.6.11+ is installed. But this Kernel causing problems when it tries to load modules. "modprob" is always searching in the folder /lib/modules/3.6.11+ for loading modules, but it's obviously not on the filesystem.
Folder /lib/modules containing:Outputmessages:Code: Select all
3.2.27+ 3.2.27-cutdown+
E.g. while booting, "modprob" tries to load "snd-bcm2835" which results in the following message:E.g. Running "depmod -a"Code: Select all
libkmod: ERROR ../libkmod/libkmod.c:554 kmod_search_moddep: could not open moddep file '/lib/modules/3.6.11+/modules.dep.bin'
Workaround until now:Code: Select all
ERROR: could not open directory /lib/modules/3.6.11+: No such file or directory FATAL: could not search modules:No suchfile or directory
Just copying back the old firmware with the original Kernel 3.2.27+ works fine, because then "modprob" is loading the modules from the existing folders. But I would like to have the newest firmware.
Does anyone know how to make the newst firmware work with Raspbian?
Would be nice if someone can help me.
Greetz Tik0
New RPi firmware with 3.6 kernel causing module problem
Re: New RPi firmware with 3.6 kernel causing module problem
Hi
Just download it from https://github.com/raspberrypi/firmware ... er/modules and copy to /lib/modules/
It works for me, so it should works for You
Just download it from https://github.com/raspberrypi/firmware ... er/modules and copy to /lib/modules/
It works for me, so it should works for You

Re: New RPi firmware with 3.6 kernel causing module problem
I had same problem, rebooting whole system helped
Re: New RPi firmware with 3.6 kernel causing module problem
Just hit this myself, trying to work out why my IR sensor had stopped working:
Clearly /lib/modules is out of date, despite just having updated everything with apt-get 
Also right now https://github.com/raspberrypi/firmware ... er/modules only has files for 3.10.27+
Code: Select all
$ sudo modprobe lirc_rpi
libkmod: ERROR ../libkmod/libkmod.c:554 kmod_search_moddep: could not open moddep file '/lib/modules/3.6.11+/modules.dep.bin'
$ uname -a
Linux raspberrypi16g 3.6.11+ #538 PREEMPT Fri Aug 30 20:42:08 BST 2013 armv6l GNU/Linux
$ ls /lib/modules
3.10.25+

Also right now https://github.com/raspberrypi/firmware ... er/modules only has files for 3.10.27+
Re: New RPi firmware with 3.6 kernel causing module problem
update doesn't update any softwarepjac wrote: Clearly /lib/modules is out of date, despite just having updated everything with apt-get![]()
apt-get upgrade
is what you need
Re: New RPi firmware with 3.6 kernel causing module problem
Re: apt-get update, apt-get upgrade - yes, I was too brief - sorry for any confusion.
Interestingly while a warm reboot (via the reboot command) did not help, a full restart (from power off) seems to have 'fixed' this. When I say fixed, "sudo modprobe lirc_rpi" now runs, but /lib/modules still seems out of date. Strange. Thanks all.
Interestingly while a warm reboot (via the reboot command) did not help, a full restart (from power off) seems to have 'fixed' this. When I say fixed, "sudo modprobe lirc_rpi" now runs, but /lib/modules still seems out of date. Strange. Thanks all.