Hi !
everyone
I'm newer in linux.i'm doing my project in Linux.i'm do it with mini2440 board.now i have any trouble when i setting up bootloader.i use uboot.
when i setting up follow :
mkdir uboot ; cd uboot
git clone git://repo.or.cz/u-boot-openmoko/mini2440.git sources
Setup cross compiling env and compile.
export CROSS_COMPILE=arm-none-linux-gnueabi-
cd mini2440
make mini2440_config
make all
after that i have result;
abc~/uboot/mini2440:$: make
make: arm-none-linux-gnueabi-gcc: Command not found
for dir in tools examples api_examples ; do make -C $dir _depend ; done
make[1]: arm-none-linux-gnueabi-gcc: Command not found
make[1]: Entering directory `/home/canht/uboot/mini2440/tools'
make[1]: Nothing to be done for `_depend'.
make[1]: Leaving directory `/home/canht/uboot/mini2440/tools'
make[1]: arm-none-linux-gnueabi-gcc: Command not found
make[1]: Entering directory `/home/canht/uboot/mini2440/examples'
/bin/sh: arm-none-linux-gnueabi-gcc: not found
dirname: missing operand
Try `dirname --help' for more information.
/bin/sh: arm-none-linux-gnueabi-gcc: not found
dirname: missing operand
Try `dirname --help' for more information.
make[1]: Nothing to be done for `_depend'.
make[1]: Leaving directory `/home/canht/uboot/mini2440/examples'
make[1]: arm-none-linux-gnueabi-gcc: Command not found
make[1]: Entering directory `/home/canht/uboot/mini2440/api_examples'
/bin/sh: arm-none-linux-gnueabi-gcc: not found
dirname: missing operand
Try `dirname --help' for more information.
make[1]: Nothing to be done for `_depend'.
make[1]: Leaving directory `/home/canht/uboot/mini2440/api_examples'
Generating include/autoconf.mk
/bin/sh: arm-none-linux-gnueabi-gcc: not found
make: *** [include/autoconf.mk] Error 127
I have installed cross-compiler .
Anyone can help me find out what the problem i should fix.
thanks.