All of lore.kernel.org
 help / color / mirror / Atom feed
* Install systemd unit file into image from source?
@ 2021-02-09  1:44 pwicks86
  2021-02-09  4:27 ` [yocto] " Sean McKay
  0 siblings, 1 reply; 2+ messages in thread
From: pwicks86 @ 2021-02-09  1:44 UTC (permalink / raw)
  To: yocto

[-- Attachment #1: Type: text/plain, Size: 1159 bytes --]

I've got an application that I'd like to install into my custom image and
that application has a couple of associated systemd unit files that should
be installed as well. The application itself is a very simple cmake
project. The relevant bits of the recipe file look something like this:

```
<standard variables go here>

SRC_URI = "<git address goes here>"

S = "${WORKDIR}/git"

inherit systemd
SYSTEMD_AUTO_ENABLE = "enable"
# the service files are stored in the git repository in the misc folder
SYSTEMD_SERVICE_${PN} = "${S}/misc/testapp@.service ${S}/misc/testapp-extra@
.service"

do_install_append() {
    install -d ${D}${systemd_unitdir}/system
    install -m 0644 ${S}/misc/testapp@.service
${D}${systemd_unitdir}/system/
    install -m 0644 ${S}/misc/testapp-extra@.service
${D}${systemd_unitdir}/system/
}

inherit cmake
```

When i try to do do `bitbake testapp` to try out the recipe, I get an error
telling me that: SYSTEMD_SERVICE_testapp value
/projects/poky/build/tmp/work/core2-64-poky-linux/testapp/0.1-r0/git/misc/testapp@.service
does not exist.

I'm using yocto 3.2.1 if that matters.
-Paul Wicks

[-- Attachment #2: Type: text/html, Size: 1429 bytes --]

^ permalink raw reply	[flat|nested] 2+ messages in thread

* Re: [yocto] Install systemd unit file into image from source?
  2021-02-09  1:44 Install systemd unit file into image from source? pwicks86
@ 2021-02-09  4:27 ` Sean McKay
  0 siblings, 0 replies; 2+ messages in thread
From: Sean McKay @ 2021-02-09  4:27 UTC (permalink / raw)
  To: Paul Wicks, yocto

[-- Attachment #1: Type: text/plain, Size: 1795 bytes --]

SYSTEMD_SERVICE_${PN} should just be set to the service name, not the full path. So…
SYSTEMD_SERVICE_${PN} = "testapp-extra@.service"

Also, consider using ${systemd_system_unitdir} instead of ${systemd_unitdir}/system

Cheers!
-Sean McKay

From: yocto@lists.yoctoproject.org <yocto@lists.yoctoproject.org> On Behalf Of Paul Wicks
Sent: Monday, February 8, 2021 5:44 PM
To: yocto@lists.yoctoproject.org
Subject: [yocto] Install systemd unit file into image from source?

I've got an application that I'd like to install into my custom image and that application has a couple of associated systemd unit files that should be installed as well. The application itself is a very simple cmake project. The relevant bits of the recipe file look something like this:
```
<standard variables go here>

SRC_URI = "<git address goes here>"

S = "${WORKDIR}/git"

inherit systemd
SYSTEMD_AUTO_ENABLE = "enable"
# the service files are stored in the git repository in the misc folder
SYSTEMD_SERVICE_${PN} = "${S}/misc/testapp@.service ${S}/misc/testapp-extra@.service<mailto:$%7bS%7d/misc/testapp@.service%20$%7bS%7d/misc/testapp-extra@.service>"

do_install_append() {
    install -d ${D}${systemd_unitdir}/system
    install -m 0644 ${S}/misc/testapp@.service<mailto:$%7bS%7d/misc/testapp@.service> ${D}${systemd_unitdir}/system/
    install -m 0644 ${S}/misc/testapp-extra@.service<mailto:$%7bS%7d/misc/testapp-extra@.service> ${D}${systemd_unitdir}/system/
}

inherit cmake
```

When i try to do do `bitbake testapp` to try out the recipe, I get an error telling me that: SYSTEMD_SERVICE_testapp value /projects/poky/build/tmp/work/core2-64-poky-linux/testapp/0.1-r0/git/misc/testapp@.service does not exist.

I'm using yocto 3.2.1 if that matters.
-Paul Wicks

[-- Attachment #2: Type: text/html, Size: 4404 bytes --]

^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2021-02-09  4:27 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-02-09  1:44 Install systemd unit file into image from source? pwicks86
2021-02-09  4:27 ` [yocto] " Sean McKay

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.