yocto rocko 中bitbake selinux 时出现ERROR: Nothing PROVIDES 'selinux'. Close matches: libselinux syslinux selinux-gui
时间: 2023-12-05 18:11:27 浏览: 288
yocto-queue:微小的队列数据结构
在 Yocto Rocko 中,如果你想编译 selinux,需要确保在你的 local.conf 文件中设置了以下内容:
```
DISTRO_FEATURES_append = " selinux"
```
这会启用 selinux 功能,并将其作为一个构建选项添加到 Yocto 构建系统中。同时,为了确保可以找到 selinux,你可能还需要在你的 bblayers.conf 文件中包含相关的 meta 层,例如:
```
BBLAYERS ?= " \
/path/to/poky/meta \
/path/to/poky/meta-poky \
/path/to/poky/meta-yocto-bsp \
/path/to/meta-security \
"
```
其中,`meta-security` 就是包含 selinux 的 meta 层。
在设置好这些内容后,重新运行 `bitbake selinux` 命令,应该就可以编译成功了。如果还有其他问题,请随时问我。
阅读全文