安装自定义Deb软件包作为Bitbake食谱

时间:2019-07-19 10:17:33

标签: yocto bitbake deb

meta-example
├── conf
│   └── layer.conf
└── recipes-example
    └── debs
        ├── debs.bb
        └── files
            └── example.deb

我上面有一个简单的图层。我应该在debs.bb中写些什么,以便可以在构建过程中安装example.deb文件,并且最终映像包含已安装的deb软件包。此外,我还需要在local.conf文件中进行哪些其他更改。

1 个答案:

答案 0 :(得分:0)

由于您已经编写了食谱debs.bb,它将在构建debs的过程中安装所需的软件包。您需要将此包添加到最终目标中,因此您需要添加 在local.conf中进行调试。 (确保bblayers.conf包含您的元示例图层。)

IMAGE_INSTALL_append = "debs"