Cross Development Tool Chain

Srinivasulu Reddy
Hi Friends.
I am very beginner to linux programming.I have good exposure on Firmware.I
bought mini 2440 for learning embedded linux purpose.With the board they
has given one DVD.
on the DVD in the Linux Folder i am having:
1.arm-linux-gcc-4.3.2.tgz
2.bootloader.tgz
3.busybox-1.13.3-mini2440.tgz
4.linux-2.6.32.2-mini2440-20100113.tgz
5.mkyaffs2image.tgz

My problem is how to install the cross development toll chain on my host
system by using the above files.
I gone through the Building Embedded Linux systems book also,
Please help me to start working on this.Anybody having any step by step
procedure please send the link to me.

Thank U

davef
To install your cross dev toolchain you only get to step #1.

There are many tutorial that describe that process.

http://www.sereno-online.com/site/2010/05/01/qt-4-6-2-installation-proce...

***
First of all you have to download the GCC toolchain provided by the
supplier:

http://www.friendlyarm.net/dl.php?file=arm-linux-gcc-4.3.2.tgz

Now untar the tgz file:

tar -xzf arm-linux-gcc-4.3.2.tgz

and then copy the directory tree under

/usr/local/

Remember to export this path on your shell

export PATH=/usr/local/arm/4.3.2/bin:$PATH
***

Thanks to paolo