Get the linux kernel source code linux-sunxi-sunxi-3.4.61.tar.gz, Or can be obtained from the internet: https://github.com/linux-sunxi/linux-sunxi/releases , To avoid unexpected error while porting, please download the 3.4.61 version kernel.
Assume that the source code was placed under /home/waveshare/cubieboard/kernel directory, use the following command to extract it:
#cd /home/waveshare/cubieboard/kernel #tar -xzvf linux-sunxi-sunxi-3.4.61.tar.gz
Now we get the linux-sunxi-sunxi-3.4.61 original source code, as shown in the picture below:
The purpose of kernel porting is to run the linux-sunxi-sunxi-3.4.61 on Cubieboard. Modify the Makefile under root directory:
#cd linux-sunxi-sunxi-3.4.61 #vi Makefile
Edit the following lines:
export KBUILD_BUILDHOST := $(SUBARCH) ARCH ?= $(SUBARCH) CROSS_COMPILE ?=
As:
export KBUILD_BUILDHOST := $(SUBARCH) ARCH ?= arm CROSS_COMPILE ?= arm-linux-gnueabihf-
ARCH specifies the target platform as arm, CROSS_COMPILE assigns the cross compile tool chain. As shown in the picture below:
Note: the vim editor is recommended.
Under the root directory, enter:
#make clean
Under the root directory, enter:
#make sun4i_defconfig
A hidden .config file will be generated under the root directory.
Under the root directory, enter:
#make menuconfig
Config the kernel on the popup window, as shown in the picture below:
Under the root directory, enter:
#make uImage
It will take much time to complete the compiling. When completed, the compressed kernel image will be generated under linux-sunxi-sunxi-3.4.61/arch/arm/boot directory.