I am following the GSG:_DVSDK_2.0_Software_Setup_In_Ubuntu guide & on running the following:
sudo make ARCH=arm CROSS_COMPILE=arm_v5t_le- uImage
in order to attempt to compile the Kernel I receive the following error:
make: arm_v5t_le-gcc: Command not found
CHK include/linux/version.h
make[1]: 'include/asm-arm/mach-types.h' is up to date.
CHK include/linux/utsrelease.h
CC arch/arm/kernel/asm-offsets.s
/bin/sh arm_v5t_le-gcc: not found
make[1]: *** [arch/arm/kernel/arm-offsets.s] Error 127
make: *** [prepare0] Error 2
I have added the relevant paths which I confirmed by running:
echo $PATH
which correctly has the montavista/pro/devkit/arm/v5t_le/bin ; montavista/pro/bin & montavista/common/bin paths included
I can also confirm that I am able to run arm_v5t_le-gcc from this location.
What am I missing? Where can I find information on "Error 127"?