tufty said:
do you have write permissions for /boot and /usr/lib/modules (or wherever it's supposed to install the damn things to)
you mean when I do the make modules_install? Yeah, I've tried it both using sudo and as root (which I know is the same thing, but I wanted to be 100% that there wasn't something keeping this from working)
Pirx Danford said:
Abishur said:
That's what I meant by I can't find them.
Oh I see.
Well in cases like that the locate utilities are quite helpful (
http://wiki.ubuntuusers.de/locate).
First do "updatedb", to get all files into the search database, then do a "locate lirc_mceusb".
But maybe you just need to do a "depmod -a", which will do an update to the module dependencies. After a fresh module compile this is needed to get new modules working.
I'll give it a shot when I get back home today. I did try the sudo find / -name lirc_* to no avail.
Just to reiterate, I see the mceusb.c file in the /linux/drivers/media/rc/ directory when I build my kernel. The steps I go through are (and this is all on the pi itself):
1. make oldconfig (using the .config file I modified to have the code I listed above)
2. make,
3. make install,
4. make modules
5. and make modules_install.
6. mkimage tool script thing
7. Remove existing kernel.img from /boot
8. Copy the new kernel.img to /boot
9. Reboot
(I've also tried redoing the make modules and make modules_install at this point just in case I was supposed to do it after the new kernel was in use)
Thinking out loud for a minute. I know we need the kernel.img to boot, but is any part of my issue that I need to copy a non .img version of my kernel to some folder on the pi?