gpt4 book ai didi

embedded-linux - Yocto/Bitbake 将空目录添加到 rootfs 嵌入式 Linux 的秘诀

转载 作者:行者123 更新时间:2023-12-03 23:30:23 24 4
gpt4 key购买 nike

是否有将新的空目录添加到 rootfs 的方法?我尝试将其添加到我的 bbappend 文件之一中:

do_install() {
install -d ${D}/tmp/myNewDir
}
FILES_${PN} += "/tmp/myNewDir"

但我收到一个非描述性错误, Function failed: do_install

最佳答案

有几种方法。图片命令方式已经由 StackedUser 描述过。

您也可以尝试扩展您的一些食谱(正如您在问题中所做的那样)。我猜您看到错误是因为您覆盖了 do_install任务。你可能想要扩展它,所以你应该添加 _append到任务名称,即:

do_install_append () {
install -d ${D}/tmp/myNewDir
}

顺便说一句,您遇到的错误“功能失败:do_install”通常会显示错误代码或有问题的命令。也许有什么。

另一种方法是创建一个简单的配方并将其添加到图像中,这是一个 stub :
SUMMARY = "XXX project directory structure"
# FIXME - add proper license below
LICENSE = "CLOSED"
PV = "1.0"

S = "${WORKDIR}"

inherit allarch

do_install () {
install -d ${D}/foo/bar
}

FILES_${PN} = "/foo/bar"

关于embedded-linux - Yocto/Bitbake 将空目录添加到 rootfs 嵌入式 Linux 的秘诀,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/48653297/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com