寒冷铃铛

文章
5
资源
0
加入时间
2年10月21天

Yocto新增一个hello程序

 刚接触yocto,在这里记录一下怎么向yocto添加一个自己的helloworld并编译到rootfs中去。1.编写源代码和Makefile既然是新增一个helloworld,那就和linux中的helloworld一样,需要源码以及编译这个源码的Makefile.hello.c#include "stdio.h"#include "stdlib.h"int main(){ while(1) { fprintf(stderr, "HelloW