I\'m trying to cross compile a helloworld kernel (2.6.x) module for ARM architecture on my intel x86 host.
The codesourcery tool chain for ARM is located at: /ho
Replace
ARCH=arm CROSS_COMPILE=arm-none-linux-gnueabi
by
export ARCH:=arm export CROSS_COMPILE:=arm-none-linux-gnueabi-
this will also work if you do not want to give these parameter command line each time.