目前共有10篇帖子。
![]() |
备两份内核代码。
一份专门用来用./build.sh生成镜像并烧录,设备树也在这里面改。 另一份专门用来编译内核模块,不用改里面的设备树。 cp -r /home/oct1158/Documents/Code/C/luckfox-pico/sysdrv/source/kernel /home/oct1158/Documents/Code/C/kernel_for_modules cd /home/oct1158/Documents/Code/C/kernel_for_modules 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- |
![]() |
修改设备树后重新编译内核: 然后用另一份没有改设备树的内核代码重新编译驱动模块: 上传到板子上运行: 查看新增的设备树节点: |
![]() |
从打印输出里面可以看到,编译好的设备树文件最终是放到boot.img镜像里面的。 Image: resource.img (with rv1103g-luckfox-pico-mini.dtb logo.bmp logo_kernel.bmp) is ready |
![]() |
设备树文件rv1103g-luckfox-pico-mini.dts的修改内容: / {}里面添加 mytest { |
![]() |
内核模块test.c的代码: #include <linux/gpio/consumer.h> // gpiod_set_value static int mytestdriver_probe(struct platform_device *pdev) static int mytestdriver_remove(struct platform_device *pdev) static const struct of_device_id mytestdriver_match_ids[] = { static struct platform_driver mytestdriver = { module_platform_driver(mytestdriver); MODULE_AUTHOR("Oct1158"); |
![]() |
内核模块Makefile文件: KDIR := /home/oct1158/Documents/Code/C/kernel_for_modules obj-m := test.o build: clean:
|
![]() |
[root@luckfox root]# cat /sys/firmware/devicetree/base/mytest/compatible && echo [root@luckfox root]# insmod test.ko [root@luckfox root]# rmmod test |
![]() |
【解决办法】编译linux内核或模块时遇到错误不显示报错信息:https://zh.purasbar.com/post.php?t=31654
|
文档上写的:Search for a property in a device tree node and retrieve a null terminated string value (pointer to data, not a copy).