簡體   English   中英

Yocto自定義圖像配方未將文件安裝到最終的rootfs中

[英]Yocto Custom Image Recipe does not install a file into the final rootfs

我寫了以下自定義的Yocto Bitbake食譜。 我將執行某些ROOTFS_POSTPROCESS_COMMAND,如下所示,作為包含此配方的完整映像構建的一部分。 當前,該映像在映像do_rootfs步驟中,因為rootfs目錄中缺少TIInit_11.8.32-115200_no_dsm-TI_P2.136.bts文件。

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

我同意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中調試配方安裝將幫助您弄清楚事情的發展方向。

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM