我需要在realpath
文件中的RDEPENDS_${PN}
变量中添加**.bbapend
,但出现此错误:
Nothing RPROVIDES 'realpath' (but /home/.../recipes-xxx/images/xxx-image-xx.bb RDEPENDS on or otherwise requires it)
是错误的软件包名称还是什么?真的不知道。
答案 0 :(得分:3)
realpath
实用程序由coreutils
或busybox
软件包提供。如果要使用coreutils,请添加
IMAGE_INSTALL += "coreutils"
添加到图像配方中,或者也可以通过RDEPENDS_${PN}
对于busybox,您需要确保在CONFIG_REALPATH=y
中为busybox设置了defconfig
。
这也可以通过busybox _%。bbappend定义
SRC_URI_append = " file://custom.cfg "
custom.cfg
所在的地方
CONFIG_REALPATH=y
,并放在busybox
旁边的busybox_%.bbappend
文件夹中