摘要:
参考链接:https://www.cnblogs.com/LiuYanYGZ/p/14212022.html 阅读全文
摘要:
参考链接 https://blog.csdn.net/yangzheng_yz/article/details/40862343 https://blog.csdn.net/qzcsu/article/details/72861891 阅读全文
摘要:
1、locale locale -a 显示当前支持的语言, locale 显示当前的配置信息 LC_ALL它是一个宏,如果该值设置了,则该值会覆盖所有LC_*的设置值。注意,LANG的值不受该宏影响。 "C"是系统默认的locale,"POSIX"是"C"的别名。所以当我们新安装完一个系统时,默认的 阅读全文
摘要:
实现方法:https://whycan.com/t_6092.html cat /etc/init.d/S99ledblink #!/bin/sh case "$1" in start) printf "Starting led: " start-stop-daemon -S -b -x /usr/ 阅读全文
摘要:
1、Makefile、.config configs/xxx.h Makefile里包含所有要编译的文件 .config 与 configs/xxx.h 本质上是一样的, .config上的命名是CONFIG_xxx,, 在configs/xxx.h上的命名则为#define CONFIG_xxx 阅读全文
摘要:
1、rtc 支持设备的写入与告警时间的触发,告警时间触发需要进行request_irq,同时也需要实现alarm_irq_enable,对从设备芯片进行配置启用,但有告警时触发request_irq所关联的回调函数 2、I2C每一个外设都有唯一的设备地址,设备地址由原理图和芯片手册共同定义,芯片手册 阅读全文
摘要:
Boot opthions >Kernel command line type : (X) Use bootloader kernel arguments if available ( ) Extend bootloader kernel arguments ( ) Always use the d 阅读全文
摘要:
1、跳转到dts根目录下 执行命令预处理 cpp -I ../../../../include/ -I . -E -P -x assembler-with-cpp pioneer3-ssc020a-s01a-demo.dts pioneer3-ssc020a-s01a-demo.dts.pre 编译 阅读全文
摘要:
1、 2、依赖库 private 编译时进行包含 interface 使用时需要 public 编译和使用都需要 阅读全文
摘要:
make menuconfig What if you make menuconfig and go to Global build settings, then deselect Cryptographically signed package lists? 真正的解决方法: http://m.b 阅读全文