You may want to try KERNEL_DIR rather than KERNELDIR.
--Ken
> --
> unsubscribe: android-kerne...@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
obj-m := hello.o
all: make -C /lib/modules/$(shell uname -r)/build M=$(PWD) modules clean: make -C /lib/modules/$(shell uname -r)/build M=$(PWD) clean
obj-m := mymod.o
mymod-objs := hello.o
all: make -C $(KERNELDIR) M=$(PWD) modules
clean: make -C $(KERNELDIR) M=$(PWD) clean