On Wed, Jan 25, 2012 at 1:29 PM, Johnson Pinto <johnsonpin...@gmail.com> wrote:
> Hi,
> Am using rowboat version of android. I want to build kernel module
> 'hello.c'
>
> my android kernel is in the path ~/rowboat-android/kernel
> I had extracted arm compiler in the path ~/tools/arm/arm-2008q3
>
> My module and makefile is in the path ~/Desktop/test_kernelmod/
>
> My makefile is:
>
>    obj-m := mymod.o
>    COMPILER :=/home/johnson/rowboat-android/prebuilt/linux-x86/
> toolchain/arm-eabi-4.4.0/bin/arm-eabi-
>    CROSS_COMPILE := $(COMPILER)
>    ARCH := arm
>    KERNELDIR :=/home/johnson/rowboat-android/kernel
>
>    PWD := $(shell pwd)
>
> default:
>        make -C $(KERNEL_DIR) M=$(PWD) ARCH=$(ARCH) CROSS_COMPILE=$
> (COMPILER) modules
>
> clean:
>        rm *.o; rm *.ko
>
>
>
> I tried all the options by changing the KERNELDIR, and also the
> COMPILER path but of no use..
> I get the errror as :
> make: *** M=/home/johnson/Desktop/test_kernelmod: No such file or
> directory.  Stop.
> make: *** [default] Error 2
>
> Can anyone say how to compile it ? what all changes to be made to
> Makefile ?
>
> Thanks,
> Johnson
>
> --
> unsubscribe: android-kernel+unsubscr...@googlegroups.com
> website: http://groups.google.com/group/android-kernel

Hi,

Is compilation from shell working? I mean have you tried something like
$make -C /home/johnson/rowboat-android/kernel M=$PWD ARCH=arm
CROSS_COMPILE=/home/johnson/rowboat-android/prebuilt/linux-x86toolchain/arm-eabi-4.4.0/bin/arm-eabi-
modules

BTW, I think you should use arm-none-linux-gnueabi- toolchain instead
of arm-none-eabi

Best wishes
Vladimir Murzin

-- 
unsubscribe: android-kernel+unsubscr...@googlegroups.com
website: http://groups.google.com/group/android-kernel

Reply via email to