homehowtokbslinksaboutcontactprojectsmusic

Index > Help Tutorials > Create Custom Kernel for FOG
Install the tools we need to create new kernel
sudo apt-get install qt3-dev-tools libqt3-mt-dev
Make development direcotry and change directory to it
mkdir dev && cd dev 
Download the laterst kernel
wget https://www.kernel.org/pub/linux/kernel/v3.x/linux-3.12.tar.gz 
Extract the new kernel
tar -zxvf linux-3.12.tar.gz
Copy the for kernal configuration file
cp fog_0.32/kernel/kitchensink.config linux-3.12/.config
Switch to kernel directory and run the configuration. Make nesessary changes and save before exiting.
cd linux-3.12 & make xconfig
Make the bzImage for x86 system
make ARCH=i386 bzImage