Got a problem which makes updating very difficult. When kernel is supposed to be updated, initramfs-update can't create any boot image because it gets stuck in some kind of module load loop. Running 'sudo update-initramfs -u -v' reveals that the process gets stuck on this line:
Ironically my system seem to be booting into the newer kernel version even though the boot image don't seem to generate (uname -r gives 3.5.0-21-generic). I found a launchpad bug here (https://bugs.launchpad.net/ubuntu/+s...ls/+bug/982514) which seem related, but no workaround has worked for me. Any ideas how to fix this?
System runs Kubuntu 12.10 on kernel version 3.5.0-21-generic. Also have a Nvidia-gpu on board.
Edit:
The workaround listed in https://bugs.launchpad.net/ubuntu/+s...ls/+bug/982514 works fine. Running this command solves the hickup:
After this, I also found that the next kernel upgrade also gets stuck (upgrade to 3.5.0-23-generic in my case), but because the system can't find the i915 module anymore. To solve this just reverse the process above with this command:
Adding module /lib/modules/3.5.0-21-generic/kernel/drivers/gpu/drm/savage/savage.ko
System runs Kubuntu 12.10 on kernel version 3.5.0-21-generic. Also have a Nvidia-gpu on board.
Edit:
The workaround listed in https://bugs.launchpad.net/ubuntu/+s...ls/+bug/982514 works fine. Running this command solves the hickup:
Code:
sudo cp /lib/modules/[your kernel version here, in my case it's 3.5.0-21-generic]/kernel/drivers/gpu/drm/i915/i915.ko /lib/modules/3.5.0-21-generic/kernel/drivers/gpu/drm/i915/i915.ko.backup && sudo rm /lib/modules/3.5.0-21-generic/kernel/drivers/gpu/drm/i915/i915.ko
Code:
sudo cp /lib/modules/[your kernel version here]/kernel/drivers/gpu/drm/i915/i915.ko.backup /lib/modules/[your kernel version here]/kernel/drivers/gpu/drm/i915/i915.ko
Comment