找回密码
 立即注册

QQ登录

只需一步,快速开始

打印 上一主题 下一主题
开启左侧

[FAQ] FAQ_MA35D1_Add a New Recipe in Yocto

[复制链接]
跳转到指定楼层
楼主
admin 发表于 2022-12-22 10:31:23 | 只看该作者 回帖奖励 |倒序浏览 |阅读模式
此示例演示如何创建一个可以编译源代码并安装到MA35D1镜像的配置
1.在meta-ma35d1/precipes支持下创建一个名为helloworld的新文件夹
  1. ~/shared/yocto/sources/meta-ma35d1/recipes-support$ mdkir helloworld
复制代码
2.在helloworld文件夹下创建一个名为files的新文件夹
  1. ~/shared/yocto/sources/meta-ma35d1/recipes-support/hello$ mkdir files
复制代码
3.创建一个名为helloworld.C的C文件,其内容如下所示
  1. #include <stdio.h>

  2. int main()
  3. {
  4.     printf("Hello, World!\n");
  5.     return 0;
  6. }
复制代码
4.创建一个名为helloworld.bb的bb文件,其内容如下所示
  1. SUMMARY = "Demo how to compile a C code and add to root filesystem"
  2. LICENSE = "CLOSED"
  3. SRC_URI = "file://helloworld.c \
  4.       "
  5. S = "${WORKDIR}"

  6. do_compile() {
  7.     ${CC} helloworld.c -o helloworld
  8. }

  9. do_install() {
  10.     install -d ${D}/${bindir}
  11.     install -m 0777 ${S}/helloworld ${D}${bindir}/helloworld
  12. }
  13. INSANE_SKIP_${PN} += "ldflags"
  14. FILES_${PN} = "${bindir}"
复制代码
5.将配置添加到~/build/conf/local.conf
  1. IMAGE_INSTALL_append += "  helloworld "
复制代码
6.重新编译镜像,helloworld将位于/usr/bin中

分享到:  QQ好友和群QQ好友和群 QQ空间QQ空间 腾讯微博腾讯微博 腾讯朋友腾讯朋友
收藏收藏 顶 踩
牛卧堂
回复

使用道具 举报

高级模式
B Color Image Link Quote Code Smilies |上传

本版积分规则

新唐MCU