Hi,
You have to recompile the module agains the kernel version you have.
Or recompile the entire kernel.
From the BSP Android documents:
3.6 Building a kernel image
Kernel image is built while building the Android root file system.
If you do not need to build the kernel image, skip this section.
To run the Android platform using NFS or from SD, build the kernel with the default configuration as follows:
Assume you had already built U-Boot. mkimage was generated under myandroid/bootable/bootloader/uboot-imx/tools/ and it
is in your PATH.
$ export PATH=~/myandroid/bootable/bootloader/uboot-imx/tools:$PATH
$ cd ~/myandroid/kernel_imx
$ echo $ARCH && echo $CROSS_COMPILE
Make sure that you have those two environment variables set. If the two variables are not set, set them as follows:
$ export ARCH=arm
$ export CROSS_COMPILE=~/myandroid/prebuilts/gcc/linux-x86/arm/arm-eabi-4.6/bin/arm-eabi-
# Generate ".config" according to default config file under arch/arm/configs.
# To build the kernel image for i.MX 6Dual/Quad, 6DualLite, 6Solo, 6SoloLite, and 6SoloX
$ make imx_v7_android_defconfig
# To build the kernel image for i.MX 6Dual/Quad, 6DualLite, and 6Solo
$ make uImage LOADADDR=0x10008000
# To build the kernel image for i.MX 6SoloLite
$ make uImage LOADADDR=0x80008000
# To build the kernel image for i.MX 6SoloX
$ make uImage LOADADDR=0x80008000
The kernel images are found in the folders: ~/myandroid/kernel_imx/arch/arm/boot/zImage and ~/myandroid/kernel_imx/
arch/arm/boot/uImage.
Alejandro