将 git 添加到 yocto 图像

add git to yocto image

为了开发,我想将 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.

知道为什么吗? 干杯

我必须将 IMAGE_INSTALL += "git"local.conf 移动到我实际正在构建的图像的图像配方中才能完成这项工作。我没有解释,但固定以这种方式添加 git 。非常欢迎任何解释。

编辑:查看 Erik 的回答以获得进一步解释: