# The install path of the kernel DESTDIR=./ CURRDIR=$(pwd) cd $DESTDIR # untar the kernel tar xvzf linux-2.4.18.tar.gz # apply the rmk patch zcat patch-2.4.18-rmk5.gz | patch -p 0 # apply the cdb89712 patch cat $CURRDIR/kernel-2.4.18-rmk5-patch | patch -p 0 cp $CURRDIR/LINUX_CONFIG linux/.config # apply the boot_patch cat $CURRDIR/boot_patch | patch -p 0 cp $CURRDIR/tags.h linux/arch/arm/boot/compressed cd $CURRDIR echo "To compile the kernel :" echo "you must have arm-linux-gcc in your PATH (do not use gcc-3.0)" echo "then do make oldconfig, make dep, make zImage" echo "Enjoy"