将 git 添加到 yocto 图像
Posted
技术标签:
【中文标题】将 git 添加到 yocto 图像【英文标题】:add git to yocto image 【发布时间】:2020-06-22 17:32:35 【问题描述】:为了开发,我想将 git 添加到我的 yocto 图像中。所以我加了
IMAGE_INSTALL += "git"
到我的`local.conf。但是当我运行 qemu 时,我直接遇到了这个崩溃:
Welcome to GRUB!
lock: OK
lock: OK
error: file `/boot/bzImage' not found.
Dropping to grub prompt for unknown reason. Should never get here.
知道为什么吗? 干杯
【问题讨论】:
【参考方案1】:我必须将IMAGE_INSTALL += "git"
从local.conf
移动到我实际构建的图像的图像配方中才能完成这项工作。我没有解释,但以这种方式固定添加git
。非常欢迎任何解释。
编辑:查看 Erik 的答案以获得进一步解释:Yocto Image file size reduces after adding a particular package
【讨论】:
看看我的回复,它描述了你在这里看到的同样的问题:***.com/a/59786952/7434032 感谢@ErikBotö!这确实有很大帮助!以上是关于将 git 添加到 yocto 图像的主要内容,如果未能解决你的问题,请参考以下文章
对于核心图像,Yocto - meta-extsdk-toolchain和do_populate_sdk_ext有什么区别?