I am compiling the linux-2.6.33.tar.bz2 kernel that I downloaded from this site:
http://www.at91.com/linux4sam/bin/view/ ... inuxKernelI first applied the patch 2.6.33-at91.patch.gz and then compiled with the following commands:
make menuconfig ARCH=arm CROSS_COMPILE=arm-none-linux-gnueabi-
make ARCH=arm CROSS_COMPILE=arm-none-linux-gnueabi-
The second command has given me this error:
drivers/input/touchscreen/eeti_ts.c: In function 'eeti_ts_irq_active':
drivers/input/touchscreen/eeti_ts.c:64:2: error: implicit declaration of function 'irq_to_gpio'
make[3]: *** [drivers/input/touchscreen/eeti_ts.o] Error 1
make[2]: *** [drivers/input/touchscreen] Error 2
make[1]: *** [drivers/input] Error 2
make: *** [drivers] Error 2
>
How to solve this? I don't want to go in a modify things - I'm just trying to compile a provided kernel as-is.
Thanks.