我无法在我的 yocto 项目中安装 db berkeley
I can not install db berkeley in my yocto project
我是 Yocto 的新手,我无法在使用 Yocto 项目创建的自定义映像中安装 db berkeley。
我尝试在我的自定义 image.bb 中使用 IMAGE_INSTALL_append="db"
安装它(正如我在安装其他食谱时所做的那样,例如 "rpm" 或 "iptables"),但在这种情况下,使用db berkeley 没有工作。我也尝试将 "db" 插入到 conf/local.conf
文件中,但无能为力。我不明白我做错了什么?
一般来说,如果您不确定,应该使用 oe-pkgdata-util 来找出您需要什么。在这种情况下,
$ oe-pkgdata-util find-path *db_load
db-bin: /usr/bin/db_load
所以你只需要使用
IMAGE_INSTALL_append = " db-bin"
我是 Yocto 的新手,我无法在使用 Yocto 项目创建的自定义映像中安装 db berkeley。
我尝试在我的自定义 image.bb 中使用 IMAGE_INSTALL_append="db"
安装它(正如我在安装其他食谱时所做的那样,例如 "rpm" 或 "iptables"),但在这种情况下,使用db berkeley 没有工作。我也尝试将 "db" 插入到 conf/local.conf
文件中,但无能为力。我不明白我做错了什么?
一般来说,如果您不确定,应该使用 oe-pkgdata-util 来找出您需要什么。在这种情况下,
$ oe-pkgdata-util find-path *db_load
db-bin: /usr/bin/db_load
所以你只需要使用
IMAGE_INSTALL_append = " db-bin"