step1 workspace 下创建工程目录 liyongjun@Box:~/project/board/buildroot-2021.05$ mkdir override/hello/ step2 完成工程代码 hello.c #include <stdio.h> int main() { print("hello\n") return 0; } Makefile all: hello hello: hello.o $(CC) -o hello hello.o step3 在 package/Config.in 中添加如下 menu "app user" source "package/hello/Config.in" endmenu 这样在执行 make menuconfig 时就会展示 package/hello/Config.in 中的选项 step4……
阅读全文