diff options
| author | Martin Jansa <Martin.Jansa@gmail.com> | 2013-04-13 13:23:32 +0200 |
|---|---|---|
| committer | Martin Jansa <Martin.Jansa@gmail.com> | 2013-04-15 16:22:02 +0200 |
| commit | a67fc4b8a3fc69143d581ee2f991647f5764e9f2 (patch) | |
| tree | bc1475ae61bc37a40b1eeda1cfc9c0445e778c69 /meta-systemd/oe-core/recipes-core | |
| parent | 1fb0eacf0349c4b886e89aea275f43b973b78245 (diff) | |
| download | meta-openembedded-a67fc4b8a3fc69143d581ee2f991647f5764e9f2.tar.gz | |
busybox: move bbappend to oe-core subdirectory
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
Diffstat (limited to 'meta-systemd/oe-core/recipes-core')
3 files changed, 44 insertions, 0 deletions
diff --git a/meta-systemd/oe-core/recipes-core/busybox/busybox/busybox-klogd.service.in b/meta-systemd/oe-core/recipes-core/busybox/busybox/busybox-klogd.service.in new file mode 100644 index 0000000000..d7c77558f3 --- /dev/null +++ b/meta-systemd/oe-core/recipes-core/busybox/busybox/busybox-klogd.service.in | |||
| @@ -0,0 +1,8 @@ | |||
| 1 | [Unit] | ||
| 2 | Description=Kernel Logging Service | ||
| 3 | |||
| 4 | [Service] | ||
| 5 | ExecStart=@base_sbindir@/klogd -n | ||
| 6 | |||
| 7 | [Install] | ||
| 8 | WantedBy=multi-user.target | ||
diff --git a/meta-systemd/oe-core/recipes-core/busybox/busybox/busybox-syslog.service.in b/meta-systemd/oe-core/recipes-core/busybox/busybox/busybox-syslog.service.in new file mode 100644 index 0000000000..2e04321385 --- /dev/null +++ b/meta-systemd/oe-core/recipes-core/busybox/busybox/busybox-syslog.service.in | |||
| @@ -0,0 +1,13 @@ | |||
| 1 | [Unit] | ||
| 2 | Description=System Logging Service | ||
| 3 | Wants=busybox-klogd.service | ||
| 4 | |||
| 5 | [Service] | ||
| 6 | EnvironmentFile=-/etc/default/busybox-syslog | ||
| 7 | ExecStart=@base_sbindir@/syslogd -n $OPTIONS | ||
| 8 | Sockets=syslog.socket | ||
| 9 | |||
| 10 | [Install] | ||
| 11 | WantedBy=multi-user.target | ||
| 12 | Also=busybox-klogd.service | ||
| 13 | Alias=syslog.service | ||
diff --git a/meta-systemd/oe-core/recipes-core/busybox/busybox_1.20.2.bbappend b/meta-systemd/oe-core/recipes-core/busybox/busybox_1.20.2.bbappend new file mode 100644 index 0000000000..06993025f1 --- /dev/null +++ b/meta-systemd/oe-core/recipes-core/busybox/busybox_1.20.2.bbappend | |||
| @@ -0,0 +1,23 @@ | |||
| 1 | inherit systemd | ||
| 2 | |||
| 3 | PRINC := "${@int(PRINC) + 2}" | ||
| 4 | |||
| 5 | # look for files in the layer first | ||
| 6 | FILESEXTRAPATHS_prepend := "${THISDIR}/${PN}:" | ||
| 7 | |||
| 8 | SRC_URI += "file://busybox-syslog.service.in \ | ||
| 9 | file://busybox-klogd.service.in" | ||
| 10 | |||
| 11 | SYSTEMD_PACKAGES = "${PN}-syslog" | ||
| 12 | SYSTEMD_SERVICE_${PN}-syslog = "busybox-syslog.service" | ||
| 13 | |||
| 14 | do_install_append() { | ||
| 15 | install -d ${D}${systemd_unitdir}/system | ||
| 16 | sed 's,@base_sbindir@,${base_sbindir},g' < ${WORKDIR}/busybox-syslog.service.in \ | ||
| 17 | > ${D}${systemd_unitdir}/system/busybox-syslog.service | ||
| 18 | sed 's,@base_sbindir@,${base_sbindir},g' < ${WORKDIR}/busybox-klogd.service.in \ | ||
| 19 | > ${D}${systemd_unitdir}/system/busybox-klogd.service | ||
| 20 | |||
| 21 | ln -sf /dev/null ${D}${systemd_unitdir}/system/syslog.service | ||
| 22 | } | ||
| 23 | FILES_${PN}-syslog += "${systemd_unitdir}/system/syslog.service" | ||
