TS-72XX 2.4 Kernel Compile Guide: Difference between revisions

From embeddedTS Manuals
No edit summary
No edit summary
Line 47: Line 47:
Optionally you can compile and archive the modules to extract on the flash later:
Optionally you can compile and archive the modules to extract on the flash later:
<source lang=bash>
<source lang=bash>
make modules
mkdir newmodules
mkdir newmodules
INSTALL_MOD_PATH=./newmodules make modules_install
INSTALL_MOD_PATH=./newmodules make modules_install

Revision as of 10:02, 3 October 2013

WARNING: BACKUP YOUR DATA FIRST

Prerequisites

RHEL/Fedora/CentOS:

yum install ncurses-devel ncurses
yum groupinstall "Development Tools" "Development Libraries"
Ubuntu/Debian:
apt-get install build-essential libncurses5-dev libncursesw5-dev

For other distributions, please refer to their documentation to find equivalent tools.

Set up the Sources and Toolchain

wget ftp://ftp.embeddedarm.com/ts-arm-sbc/ts-7200-linux/cross-toolchains/crosstool-linux-gcc-3.3.4-glibc-2.3.2-0.28rc39.tar.bz2

bunzip2 crosstool-linux-gcc-3.3.4-glibc-2.3.2-0.28rc39.tar.bz2

tar -xvf crosstool-linux-gcc-3.3.4-glibc-2.3.2-0.28rc39.tar

wget ftp://ftp.embeddedarm.com/ts-arm-sbc/ts-7200-linux/sources/tskernel-2.4.26-ts11-feb232011.tar.gz

tar -xvzf tskernel-2.4.26-ts11-feb232011.tar.gz

cd linux24

Open the Makefile and edit CROSS_COMPILE to say:

 CROSS_COMPILE = insert/your/directory/structure/here/crosstool/arm-linux/gcc-3.3.4-glibc-2.3.2/bin/arm-linux-

Next the config file needs to be set up. Run "make menuconfig"

  • Load the TS-7260 config file by typing "L" three times, "ENTER", and specify "arch/arm/def-configs/ts7200". When finished, save and exit back to the menuconfig
  • Exit menuconfig and be sure to say "Yes" to save your changes
Note: Large kernels may not fit on the kernel partition of the SD card. Check the size of the newly created kernel.
make dep
make Image

Optionally you can compile and archive the modules to extract on the flash later:

make modules
mkdir newmodules
INSTALL_MOD_PATH=./newmodules make modules_install
tar czvf modules_2.4.26-ts11.tar.gz -C newmodules/
Note: If you receive the error "Kernel version 2.4.26-ts11 requires old depmod" the modules can still be installed to the board, but "depmod" should be invoked manually after the modules are installed.

Copy the newmodules directory to a thumb drive or other accessible media (ftp or NFS will work also), then copy newmodules/lib/modules/2.4.26-ts11/* to your board. See the Linux for ARM on TS-72XX User's Guide#eCos.2FRedBoot redboot instructions for loading a kernel permanently.