I've been trying to compile a custom kernel for my 3100 (need to get Socket Low power card to work with Kismet)
I downloaded the sources, applied the patches on my linux laptop, copied over the patched sources to my Z, ran make menuconfig fine; saved it but when I run make dep I get the following error:
# make dep
Making asm-arm/arch -> asm-arm/arch-pxa symlink
Making asm-arm/proc -> asm-arm/proc-armv symlink
rm -f include/asm
( cd include; ln -sf asm-arm asm)
make[1]: Entering directory `/mnt/ide2/linux/arch/arm/tools'
/mnt/ide2/linux/scripts/mkdep -D__KERNEL__ -I/mnt/ide2/linux/include -Wall -Wstrict-prototypes -Wno-trigraphs -O2 -fno-strict-aliasing -fno-common -Uarm -fno-common -pipe -mapcs-32 -D__LINUX_ARM_ARCH__=4 -march=armv4 -Wa,-mxscale -mtune=strongarm -mshort-load-bytes -msoft-float -Uarm -- getconstants.c |\
sed s,getconstants.o,constants.h, > .depend
make all
make[2]: Entering directory `/mnt/ide2/linux/arch/arm/tools'
arm-linux-gcc -D__KERNEL__ -I/mnt/ide2/linux/include -Wall -Wstrict-prototypes -Wno-trigraphs -O2 -fno-strict-aliasing -fno-common -Uarm -fno-common -pipe -mapcs-32 -D__LINUX_ARM_ARCH__=4 -march=armv4 -Wa,-mxscale -mtune=strongarm -mshort-load-bytes -msoft-float -Uarm -S -o constants.h.tmp.1 getconstants.c
make[2]: arm-linux-gcc: Command not found
make[2]: *** [constants.h] Error 127
make[2]: Leaving directory `/mnt/ide2/linux/arch/arm/tools'
make[1]: *** [dep] Error 2
make[1]: Leaving directory `/mnt/ide2/linux/arch/arm/tools'
make: *** [archdep] Error 2
I have zgcc 3.4.5 mounted
/dev/loop0 on /opt/native/arm/3.4.5-xscale-softvfp type cramfs (rw)
What am I missing?