Yocto 构建无法调用 dnf。 command && no Match for the argument : recipe-name

Yocto build could not invoke dnf . command && no Match for the argument : recipe-name

我试图为包含传感器程序的项目构建自定义配方。所有任务和库制作都由 CMakeLists.txt 负责,它还具有 python 依赖项。我在我的食谱中添加了所有必需的依赖项,并尝试使用“bitbake soofierecp”命令构建它并成功执行。而在尝试使用“IMAGE_INSTALL += soofierecp”通过 local.conf 安装它时,它给出了如下所列的错误:

错误是:

ERROR: soofie-img-1.0-r0 do_rootfs: Could not invoke dnf. Command '/home/anvation/nitish/source/build/tmp/work/qemux86_64-poky-linux/soofie-img/1.0-r0/recipe-sysroot-native/usr/bin/dnf -v --rpmverbosity=info -y -c /home/anvation/nitish/source/build/tmp/work/qemux86_64-poky-linux/soofie-img/1.0-r0/rootfs/etc/dnf/dnf.conf --setopt=reposdir=/home/anvation/nitish/source/build/tmp/work/qemux86_64-poky-linux/soofie-img/1.0-r0/rootfs/etc/yum.repos.d --installroot=/home/anvation/nitish/source/build/tmp/work/qemux86_64-poky-linux/soofie-img/1.0-r0/rootfs --setopt=logdir=/home/anvation/nitish/source/build/tmp/work/qemux86_64-poky-linux/soofie-img/1.0-r0/temp --repofrompath=oe-repo,/home/anvation/nitish/source/build/tmp/work/qemux86_64-poky-linux/soofie-img/1.0-r0/oe-rootfs-repo --nogpgcheck install i2c-tools packagegroup-base-extended packagegroup-core-boot packagegroup-core-ssh-dropbear psplash python3 python3-dev python3-pip python3-requests run-postinsts soofierecp usbutils locale-base-en-us locale-base-en-gb' returned 1:
DNF version: 4.12.0
cachedir: /home/anvation/nitish/source/build/tmp/work/qemux86_64-poky-linux/soofie-img/1.0-r0/rootfs/var/cache/dnf
Added oe-repo repo from /home/anvation/nitish/source/build/tmp/work/qemux86_64-poky-linux/soofie-img/1.0-r0/oe-rootfs-repo
User-Agent: falling back to 'libdnf': could not detect OS or basearch
repo: using cache for: oe-repo
oe-repo: using metadata from Thu 26 May 2022 05:31:19 AM UTC.
Last metadata expiration check: 0:00:01 ago on Thu 26 May 2022 05:31:20 AM UTC.
No match for argument: soofierecp
Error: Unable to find a match: soofierecp
ERROR: Logfile of failure stored in: /home/anvation/nitish/source/build/tmp/work/qemux86_64-poky-linux/soofie-img/1.0-r0/temp/log.do_rootfs.1379711
ERROR: Task (/home/anvation/nitish/workspace/meta-soofie/recipes-example/images/soofie-img.bb:do_rootfs) failed with exit code '1'
NOTE: Tasks Summary: Attempted 4873 tasks of which 4872 didn't need to be rerun and 1 failed. "added the meta-layer in bblayer.conf file"

食谱是:

LICENSE = "MIT"

LIC_FILES_CHKSUM = "file://${COMMON_LICENSE_DIR}/MIT;md5=0835ade698e0bcf8506ecda2f7b4f302"

S = "${WORKDIR}"

PR = "r0"

DEPENDS = "openssl python3-six-native python3-pytest-runner-native"

SRC_URI = "\
           file://src/ \
           file://third_party/pybind11/ \
           file://third_party/CLI11/ \
           file://third_party/c-periphery/ \
           file://CMakeLists.txt \
          "
do_configure() {
        cmake ../
}
RDEPENDS_${PN} = "python-requests python-six"

inherit pkgconfig cmake python3native

EXTRA_OEMAKE = ""
ALLOW_EMPTY_${PN}="1"
FILES_${PN} = "${bindir}/*"
DEPENDS += "udev"

请帮助我找到解决方案 非常感谢您提供的任何帮助。

我在建议和帮助下得到了上面的代码 太感谢了 更新的食谱是:

'

LIC_FILES_CHKSUM = "file://${COMMON_LICENSE_DIR}/MIT;md5=0835ade698e0bcf8506ecda2f7b4f302"
    
    S = "${WORKDIR}"
    
    PR = "r0"
    
    SRC_URI = "\
               file://src/ \
               file://third_party/pybind11/ \
               file://third_party/CLI11/ \
               file://third_party/c-periphery/ \
               file://CMakeLists.txt \
              "
    inherit cmake pkgconfig python3native
    
    DEPENDS += "openssl python3-six-native python3-pytest-runner-native"
    EXTRA_OECMAKE = ""
    
    do_install() {
            install -d ${D}${bindir}
            install -m 0755 ${WORKDIR}/build/datagen ${D}${bindir}
    }
    
    DEPENDS += "udev"
    FILES_${PN} += "${D}${bindir}/"
    ALLOW_EMPTY_${PN} = "1" 

'