web-dev-qa-db-ja.com

yoctoを使用してシステム化されたサービスを有効にする

こんにちは、これは私のレイヤーツリーです

├── conf
│   └── layer.conf
├── COPYING.MIT
├── README
└── recipes-hello
    ├── helloworld
    │   ├── helloworld-0.1
    │   │   ├── helloworld.c
    │   │   ├── helloworld.patch
    │   │   └── newhelloworld.c
    │   └── helloworld_0.1.bb
    ├── message
    │   ├── message-0.1
    │   │   └── message.txt
    │   └── message_0.1.bb
    └── service
        ├── service-0.1
        │   ├── test_systemd.service
        │   └── test_systemd.sh
        └── service_0.1.bb

ここで、test_systemd.serviceはtest_systemd.shを呼び出す必要があるサービスファイルです。これは、service_0.1.bbを使用して実現しようとしています。

    # This recipe performs the following tasks
    # 1) Install .sh file in /home/root/ and .sh script creates a random text file
    # 2) Install the .service file in systemd directory
    # 3) Invoke the .sh script via .service file
    inherit systemd

SUMMARY = "Install and start a systemd service"
SECTION = "examples"
LICENSE = "MIT"
LIC_FILES_CHKSUM = "file://${COMMON_LICENSE_DIR}/MIT;md5=0835ade698e0bcf8506ecda2f7b4f302"

#here we specify the source we want to build
SRC_URI = "file://test_systemd.sh"
SRC_URI += "file://test_systemd.service"
#here we specify the source directory, where we can do all the building and expect sources to be placed
S = "${WORKDIR}"

SYSTEMD_SERVICE_${PN} = "test_systemd.service"


#bitbake task
#created a directory /home/root for target install the script
do_install() {
             install -d ${D}/home/root
             install -m 0755 ${WORKDIR}/test_systemd.sh ${D}/home/root

             install -d ${D}{systemd_system_unitdir}
             install -m 0644 ${WORKDIR}/test_systemd.service ${D}{systemd_system_unitdir}
}

#Pack the path
FILES_${PN} += "/home/root"
FILES_${PN} += "/lib/systemd/system"

REQUIRED_DISTRO_FEATURES= "systemd"

問題は、システムレシピをbitbakeしようとすると、test_systemd.serviceが見つからないというエラーをbitbakeがスローすることです。以前の試みでRFSに両方のファイルをインストールできましたが、systemdコンセプトを含めました。 no such fileエラーが出ます。理由は何でしょうか?エラーメッセージ

 NOTE: Executing SetScene Tasks
NOTE: Executing RunQueue Tasks
ERROR: service-0.1-r0 do_package: SYSTEMD_SERVICE_service value test_systemd.service does not exist
ERROR: service-0.1-r0 do_package: Function failed: systemd_populate_packages
ERROR: Logfile of failure stored in: /home/guest/yocto_practice/poky/build-beaglebone/tmp/work/cortexa8hf-neon-poky-linux-gnueabi/service/0.1-r0/temp/log.do_package.2860
ERROR: Task (/home/guest/yocto_practice/meta-testlayer/recipes-hello/service/service_0.1.bb:do_package) failed with exit code '1'
NOTE: Tasks Summary: Attempted 514 tasks of which 506 didn't need to be rerun and 1 failed.

Summary: 1 task failed:
  /home/guest/yocto_practice/meta-testlayer/recipes-hello/service/service_0.1.bb:do_package
Summary: There were 2 ERROR messages shown, returning a non-zero exit code.

また、これはsystemdのbbレシピを書く正しい方法であり、これを書くことの意義は何ですか

#Pack the path
    FILES_${PN} += "/home/root"
    FILES_${PN} += "/lib/systemd/system"

このビットベイクがないとエラーがスローされます。

9
user7345878
_SYSTEMD_SERVICE_${PN} += "file://test_systemd.service"
_

これは次のとおりです。

_SYSTEMD_SERVICE_${PN} = "test_systemd.service"
_

その他の注意事項(エラーとは無関係):

  • / homeに物事をインストールすることはおそらく素晴らしい考えではありません(他のスクリプトが必要とするスクリプトに_${libexecdir}_を使用できます)。
  • bbファイルにdo_install_append()を持つ理由はありません。すべてをdo_install()に入れることができます。
  • Yoctoが最近の場合、_${systemd_system_unitdir}_の代わりに_/lib/systemd/system_を使用することをお勧めします(古いリリースでは_${systemd_unitdir}/system/_が機能します)
12
Jussi Kukkonen

このパッケージエラーを解決するために、次のインストール手順を使用しました

do_install() {
   install -d ${D}${bindir}
   install -m 0755 ${WORKDIR}/test_systemd.sh ${D}${bindir}
   install -d ${D}${systemd_unitdir}/system
   install -m 0644 ${WORKDIR}/test_systemd.service ${D}${systemd_unitdir}/system
}
0
smokycookie