Penguin
Note: You are viewing an old revision of this page. View the current version.

Tools for LinuxKernel development

Resources

Some notes

Using DistCC for KernelDevelopment can be problematic.

A script to copy a new Kernel to remote machines:

#!/bin/bash
SRC=$HOME/linuxsrc/dccpwork
VER=2.6.14-rc4
rm $HOME/tmp/lib/modules/$VER/build
rm $HOME/tmp/lib/modules/$VER/source
scp $SRC/System.map root@$1:/boot/System.map-$VER
scp $SRC/arch/i386/boot/bzImage root@$1:/boot/vmlinuz-$VER
scp -r $HOME/tmp/lib root@$1:/

CategoryKernel