Linux kernel compilation (for mini6410 board)

From Tuxamito
Revision as of 10:03, 23 April 2013 by Daniel (talk | contribs) (Created page with "Before starting make sure to have installed in your system an ARM GCC toolchain. ===Download Kernel sources=== Get from the mini6410 support DVD, the FriendlyARM ftp or the l...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to: navigation, search

Before starting make sure to have installed in your system an ARM GCC toolchain.

Download Kernel sources

Get from the mini6410 support DVD, the FriendlyARM ftp or the links in this page the source of the linux kernel. These versions are patched and already include a good configured.

See all kernels

Name Version Date Notes
FriendlyARM 2.6.38 2.6.38 2012.09.04 Original FriendlyARM kernel
FriendlyARM 2.6.38 gcc patched 2.6.38 2013.04.22 Patched to work with GCC 4.7+ versions

Uncompress the sources

Uncompress the kernel source file with the command

  • tar xzvf linux-xxx.tar.gz

or

  • tar Xzvf linux-xxx.tar.xz

depending on the ending of the file (tar.gz vs tar.xz)

And then cd into de directory: cd linux-xxx

Configure the kernel

These kernels are patched with drivers to address hardware in the mini6410 board, but we can do some configuration to for example select the LCD (if any) attached to our board:

  • Make sure the configuration file is active:
    cp config_linux_mini6410 .config
  • Enter the configuration menul
    make menuconfig
    (Note that you might need to install ncurses library, libncurses5-dev in Ubuntu / Debian)
  • Surf the menu to Device Drivers -> Graphics Support -> Support for frame buffer devices -> S3C Framebuffer Support (eXtended) -> Select LCD Type and chose the correct LCD.
  • Exit the menu saving the changes.
LCD Kernel configuration
LCD Kernel configuration

Compile the kernel

Execute:

  • make

The compiled kernel is the file zImage in the directory arch/arm/boot/zImage inside the kernel sources directory.