【问题标题】:Yocto Custom Image Recipe does not install a file into the final rootfsYocto Custom Image Recipe 不会将文件安装到最终的 rootfs
【发布时间】:2019-01-27 16:57:40
【问题描述】:

我写了一个自定义的 Yocto Bitbake 食谱,并粘贴在下面。我执行了如下所示的某个 ROOTFS_POSTPROCESS_COMMAND 作为包含此配方的完整映像构建的一部分。目前,由于 rootfs 目录中缺少 TIInit_11.8.32-115200_no_dsm-TI_P2.136.bts 文件,因此映像处于映像 do_rootfs 步骤中。

cleanup_ble_baud_rate_function() {
    mv ${IMAGE_ROOTFS}/lib/firmware/ti-connectivity/TIInit_11.8.32-115200_no_dsm-TI_P2.136.bts ${IMAGE_ROOTFS}/lib/firmware/ti-connectivity/TIInit_11.8.32.bts
}

ROOTFS_POSTPROCESS_COMMAND_append_am57xx-phycore-rdk_arago = " cleanup_ble_baud_rate_function;"

配方如下:

DESCRIPTION = "Bluetooth Daemon and DBus Service"
LICENSE = "BU-License"
LIC_FILES_CHKSUM = "file://${CUSTOM_LAYER_DIR}/licenses/${LICENSE};md5=d41d8cd98f00b204e9800998ecf8427e"

# We depend on python and dbus
RDEPENDS_${PN} += "libedit bluez5"
DEPENDS += "libedit bluez5"

PACKAGE_ARCH = "${MACHINE_ARCH}"

PR = "r1"

SRC_URI += "file://bluetooth.service \
       file://bluetooth.socket \
       file://ble-service.py \
       file://setup-bluetooth-radio.sh \
           file://TIInit_11.8.32-115200_no_dsm-TI_P2.136.bts \locate
"

S = "${WORKDIR}"

PACKAGES = "${PN}"

FILES_${PN} += "/lib/"
FILES_${PN} += "/lib/firmware/"
FILES_${PN} += "/lib/firmware/ti-connectivity/"
FILES_${PN} += "/lib/firmware/ti-connectivity/TIInit_11.8.32-115200_no_dsm-TI_P2.136.bts"

do_install() {
  install -d ${D}${bindir}
  install -m 755 ble-service.py ${D}${bindir}
  install -m 755 setup-bluetooth-radio.sh ${D}${bindir}

  install -d ${D}/lib/firmware/ti-connectivity
  install -m 755 TIInit_11.8.32-115200_no_dsm-TI_P2.136.bts ${D}/lib/firmware/ti-connectivity/

  install -d ${D}${sysconfdir}/systemd/system
  install -d ${D}${sysconfdir}/systemd/system/multi-user.target.wants
  install -m 0644 ${S}/bluetooth.service ${D}${sysconfdir}/systemd/system
  ln -s ../bluetooth.service ${D}${sysconfdir}/systemd/system/multi-user.target.wants/bluetooth.service

  # Actually use socket based activation for this service
  install -d ${D}${sysconfdir}/systemd/system/sysinit.target.wants
  ln -s ../bluetooth.service ${D}${sysconfdir}/systemd/system/sysinit.target.wants/bluetooth.service
}

镜像构建失败后,当我执行Linux updatedblocate命令时,显示如下结果:

name@machine:/am57xx/build(master)>sudo updatedb
name@machine:~/am57xx/build(master)>locate TIInit_11.8.32-115200_no_dsm-TI_P2.136.bts /home/name/am57xx/build/tmp-external-linaro-toolchain/sysroots/am57xx-phycore-rdk/lib/firmware/ti-connectivity/TIInit_11.8.32-115200_no_dsm-TI_P2.136.bts
/home/name/am57xx/build/tmp-external-linaro-toolchain/work/am57xx_phycore_rdk-linux-gnueabi/ble-service/1.0-r1/TIInit_11.8.32-115200_no_dsm-TI_P2.136.bts
/home/name/am57xx/build/tmp-external-linaro-toolchain/work/am57xx_phycore_rdk-linux-gnueabi/ble-service/1.0-r1/image/lib/firmware/ti-connectivity/TIInit_11.8.32-115200_no_dsm-TI_P2.136.bts
/home/name/am57xx/build/tmp-external-linaro-toolchain/work/am57xx_phycore_rdk-linux-gnueabi/ble-service/1.0-r1/package/lib/firmware/ti-connectivity/TIInit_11.8.32-115200_no_dsm-TI_P2.136.bts
/home/name/am57xx/build/tmp-external-linaro-toolchain/work/am57xx_phycore_rdk-linux-gnueabi/ble-service/1.0-r1/packages-split/ble-service/lib/firmware/ti-connectivity/TIInit_11.8.32-115200_no_dsm-TI_P2.136.bts
/home/name/am57xx/build/tmp-external-linaro-toolchain/work/am57xx_phycore_rdk-linux-gnueabi/ble-service/1.0-r1/sysroot-destdir/lib/firmware/ti-connectivity/TIInit_11.8.32-115200_no_dsm-TI_P2.136.bts
/home/name/am57xx/layers/meta-custom/recipes-networking/ble-service/files/TIInit_11.8.32-115200_no_dsm-TI_P2.136.bts

【问题讨论】:

  • install -m 755 ${S}TIInit_11.8.32-115200_no_dsm-TI_P2.136.bts ${D}/lib/firmware/ti-connectivity/ 在 do_install() 并摆脱该功能。

标签: linux yocto bitbake recipe


【解决方案1】:

我同意 Oleksandr 的观点。不要使用 postprocess 命令,它可能不会按照您的想法进行。相反,只要确保您使用 ${S} 并且您的 FILES_${PN} 可能会更简单。

install -m 755 ${S}/TIInit_11.8.32-115200_no_dsm-TI_P2.136.bts ${D}/lib/firmware/ti-connectivity/

FILES_${PN} += "${libdir}/firmware/ti-connectivity/*"

在 tmp/work/target/recipename 中调试您的配方安装将帮助您弄清楚事情的发展方向。

【讨论】:

    猜你喜欢
    • 2021-10-31
    • 2020-04-18
    • 2018-02-07
    • 2020-02-17
    • 1970-01-01
    • 1970-01-01
    • 2018-09-05
    • 2017-02-16
    • 2020-01-26
    相关资源
    最近更新 更多