编译luckfox_rv1106模块时报找不到include/config/auto.conf文件的错误:
[oct1158@fed41-bh8f7e0 first]$ make
make -C /home/oct1158/Documents/Code/C/luckfox-pico/sysdrv/source/kernel M=/home/oct1158/Documents/Code/C/driver_test/first modules ARCH=arm CROSS_COMPILE=/home/oct1158/Documents/Code/C/luckfox-pico/tools/linux/toolchain/arm-rockchip830-linux-uclibcgnueabihf/bin/arm-rockchip830-linux-uclibcgnueabihf-
Makefile:672: include/config/auto.conf: No such file or directory
make: *** [Makefile:7: build] Error 2
[oct1158@fed41-bh8f7e0 first]$
先编译内核:
cd /home/oct1158/Documents/Code/C/luckfox-pico/sysdrv/source/kernel
make luckfox_rv1106_linux_defconfig ARCH=arm CROSS_COMPILE=/home/oct1158/Documents/Code/C/luckfox-pico/tools/linux/toolchain/arm-rockchip830-linux-uclibcgnueabihf/bin/arm-rockchip830-linux-uclibcgnueabihf-
make ARCH=arm CROSS_COMPILE=/home/oct1158/Documents/Code/C/luckfox-pico/tools/linux/toolchain/arm-rockchip830-linux-uclibcgnueabihf/bin/arm-rockchip830-linux-uclibcgnueabihf-
(这条命令等待时间较长,并且长时间没有输出,需要耐心等待)
再编译模块:
cd /home/oct1158/Documents/Code/C/driver_test/first
make
这下就能编译成功生成test.ko文件了。
[oct1158@fed41-bh8f7e0 kernel]$ cd /home/oct1158/Documents/Code/C/driver_test/first
[oct1158@fed41-bh8f7e0 first]$ make
make -C /home/oct1158/Documents/Code/C/luckfox-pico/sysdrv/source/kernel M=/home/oct1158/Documents/Code/C/driver_test/first modules ARCH=arm CROSS_COMPILE=/home/oct1158/Documents/Code/C/luckfox-pico/tools/linux/toolchain/arm-rockchip830-linux-uclibcgnueabihf/bin/arm-rockchip830-linux-uclibcgnueabihf-
[oct1158@fed41-bh8f7e0 first]$ ls -l
total 240
-rwxr--r-- 1 oct1158 oct1158 404 Mar 11 17:44 Makefile
-rw-r--r-- 1 oct1158 oct1158 57 Mar 11 17:47 modules.order
-rw-r--r-- 1 oct1158 oct1158 0 Mar 11 18:01 Module.symvers
-rwxr--r-- 1 oct1158 oct1158 886 Mar 7 17:40 test.c
-rw-r--r-- 1 oct1158 oct1158 109016 Mar 11 18:01 test.ko
-rw-r--r-- 1 oct1158 oct1158 57 Mar 11 17:47 test.mod
-rw-r--r-- 1 oct1158 oct1158 534 Mar 11 17:47 test.mod.c
-rw-r--r-- 1 oct1158 oct1158 39220 Mar 11 17:47 test.mod.o
-rw-r--r-- 1 oct1158 oct1158 70712 Mar 11 17:47 test.o
[oct1158@fed41-bh8f7e0 first]$ file test.ko
test.ko: ELF 32-bit LSB relocatable, ARM, EABI5 version 1 (SYSV), BuildID[sha1]=5f8c00b5d550340d31842a2a861b7bd85c401d9f, with debug_info, not stripped
[oct1158@fed41-bh8f7e0 first]$