sorry for no description.
i use the arm-2008-11-24.
i went for the eldk installation as below:
..................
edit the bashrc file in the home directory,
[go to home directory vi .bashrc to view the bash rc file.. in that u need to edit the env variables.. (. means hidden file)
fi
export ARCH=arm
export CROSS_COMPILE=arm-linux-
export DEPMOD=/opt/ELDK/usr/bin/depmod.pl
export PATH=/opt/ELDK/usr/bin:/opt/ELDK/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games]
copy arm-2008-11-24.iso, and qt-4.6.. (for embedded linux) .. in /opt folder... & workspace tar file in the home directory.. extract tar files in respective folders & continue with following steps for arm iso]
linuxhost > ...means ... /opt folder
problem with 32/64 bit ... reffer URL [
http://www.denx.de/wiki/view/DULG/EL...itEnvironment]
(
14.1.7. Using the ELDK on a 64 bit platform
As the ELDK is compiled for 32-bit host systems, a compatibility layer is required on 64-bit systems. This package is usually called ia32-libs. So on a Debian or Ubuntu system a
sudo apt-get install ia32-libs
should be enough to make the ELDK work.
On the U-Boot mailing list, it was reported that for a 64 bit Fedora 11 the following should be enough:
sudo yum -y install glibc.i586 zlib.i586
)
/**/
linuxhost > mkdir eldk
linuxhost > mkdir install_mount [....to mount the .iso]
linuxhost > cd eldk/
linuxhost/eldk > su
linuxhost/eldk # mount -o loop,exec ../arm-2007-01-21.iso ../install_mount/
linuxhost/eldk # exit
linuxhost/eldk > ls install_mount/[to check in install_mount...
. arm ELDK_FIXOWNER etc install RPMS tools
.. common ELDK_MAKEDEV icons README.html sys version.. will be there]
linuxhost/eldk > ../install_mount/install arm
linuxhost/eldk > chmod u+x eldk_init
now unmount the ISO image as root *** not required
linuxhost/eldk > ./eldk_init arm
export these variable to environment,or include them as part of .bashrc file. [in the home directory.. for every user.]
ARCH=arm
CROSS_COMPILE=arm-linux-
DEPMOD=host/eldk/usr/bin/depmod.pl
PATH=host/eldk/usr/bin:host/eldk/bin
/**/
.........
then when i went for make command :
.........
[Bibhu@localhost ~]$ cd /home/suriya/satya/linux-2.6.30.4/
[Bibhu@localhost linux-2.6.30.4]$ make clean
CLEAN include/asm-arm/mach-types.h
[Bibhu@localhost linux-2.6.30.4]$
[Bibhu@localhost linux-2.6.30.4]$
[Bibhu@localhost linux-2.6.30.4]$ make
CHK include/linux/version.h
Generating include/asm-arm/mach-types.h
CHK include/linux/utsrelease.h
ERROR: include/asm is a directory but a symlink was expected
make: *** [include/asm] Error 1
[Bibhu@localhost linux-2.6.30.4]$
[Bibhu@localhost linux-2.6.30.4]$
[Bibhu@localhost linux-2.6.30.4]$
[Bibhu@localhost linux-2.6.30.4]$ make clean
CLEAN include/asm-arm/mach-types.h
[Bibhu@localhost linux-2.6.30.4]$
[Bibhu@localhost linux-2.6.30.4]$
[Bibhu@localhost linux-2.6.30.4]$ make mrproper
CLEAN scripts/basic
CLEAN scripts/kconfig
CLEAN include/config
CLEAN .config include/asm include/linux/autoconf.h include/linux/version.h include/linux/utsrelease.h
rm: cannot remove `include/asm': Is a directory
make: *** [mrproper] Error 1
[Bibhu@localhost linux-2.6.30.4]$
..........