简体   繁体   中英

Cross compile Kernel drivers

I am new at Linux kernel and I try to make a cross compile to build a driver for imx6, previusly I created the kernel using Yocto1.8 (this works ok). I have a linux distribution of 64 bits, and the arm inside imx6 is based in 32 bits

I have this configuration in my makefile:

export CROSS_COMPILE=arm-poky-linux-gnueabi-
export PRODUCT_NAME PRODUCT_VERSION
export ROOTDIR
export PCIE X86 PL330 
export KDIR=~/src/imx6/yocto/build/tmp/work-shared/cgtqmx6/kernel-source/

but doing "make" the compilation generates these errors:

截图

I think the problem is due to the differents distribution (64 and 32bits) but I don´t know sure.

If anybody can help me ... thanks!!!

Those are x86 compiler options.

You probably need to add ARCH=arm .

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM