creating a custom Ubuntu Dapper kernel

Home
Photography
Projects
About me
Robots
Publications
Friends' pages:
Chris
Jeff
John
Minu
Raeed
Email me:
alex AT joni.ro


Share

I have been struggling the last few days to make a new Dapper kernel patched with RTAI. It has been a daunting & frustrating process, but eventually (with lots of googling & especially help from very skilled people in #ubuntu-kernel it worked...

There were a few problems, related to the RTAI patching and related to the make-kpkg package.

The stranger problem (related to make-kpkg) is that the new kernel didn't show an usplash, to fix that I've been told this is a temporary fix:

put this script (post-install) in the kernelsource/debian/ directory:

#!/bin/bash

cd "$IMAGE_TOP/lib/modules/$version"
mkdir initrd

if [ -f kernel/drivers/video/vesafb.ko ]; then
    ln kernel/drivers/video/vesafb.ko initrd
fi

chmod +x post-install

this way the splash will work as expected.




[æ]