diff options
| author | Hongxu Jia <hongxu.jia@windriver.com> | 2018-11-27 16:32:46 +0800 |
|---|---|---|
| committer | Khem Raj <raj.khem@gmail.com> | 2018-11-27 11:13:37 -0800 |
| commit | 28303f2f70c7d9466689236a704f8e5cae481bd7 (patch) | |
| tree | 24bbf52872c1b830a8b1ad8d8b4b344031ed813a | |
| parent | be16770cc47cb4b1745711c62421ebb2bef43b9a (diff) | |
| download | meta-openembedded-28303f2f70c7d9466689236a704f8e5cae481bd7.tar.gz | |
ndctl: v62 -> v63
- Upstream introduce --with-systemd to replace --with-systemd-unit-dir
[86ab28b ndctl, build: Introduce --with-{bash,systemd}]
It fixed previously "No package 'systemd' found" failure
- Remove COMPATIBLE_HOST to build on more machines.
Signed-off-by: Hongxu Jia <hongxu.jia@windriver.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
| -rw-r--r-- | meta-oe/recipes-core/ndctl/ndctl_v63.bb (renamed from meta-oe/recipes-core/ndctl/ndctl_git.bb) | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/meta-oe/recipes-core/ndctl/ndctl_git.bb b/meta-oe/recipes-core/ndctl/ndctl_v63.bb index b20915f20f..17f3405920 100644 --- a/meta-oe/recipes-core/ndctl/ndctl_git.bb +++ b/meta-oe/recipes-core/ndctl/ndctl_v63.bb | |||
| @@ -10,21 +10,20 @@ LIC_FILES_CHKSUM = "file://COPYING;md5=e66651809cac5da60c8b80e9e4e79e08" | |||
| 10 | 10 | ||
| 11 | inherit autotools-brokensep pkgconfig module-base bash-completion systemd | 11 | inherit autotools-brokensep pkgconfig module-base bash-completion systemd |
| 12 | 12 | ||
| 13 | # v62 | 13 | SRCREV = "cb2d678dd6d286dd96d31548c32449a8b883ae32" |
| 14 | SRCREV = "11f560f4048c1d38b7011a49566871a1e8a07c94" | ||
| 15 | SRC_URI = "git://github.com/pmem/ndctl.git" | 14 | SRC_URI = "git://github.com/pmem/ndctl.git" |
| 16 | 15 | ||
| 17 | DEPENDS = "virtual/kernel kmod udev json-c" | 16 | DEPENDS = "virtual/kernel kmod udev json-c" |
| 18 | 17 | ||
| 19 | PV = "v62+git${SRCPV}" | ||
| 20 | S = "${WORKDIR}/git" | 18 | S = "${WORKDIR}/git" |
| 21 | 19 | ||
| 22 | EXTRA_OECONF += "--enable-test --enable-destructive --disable-docs" | 20 | EXTRA_OECONF += "--enable-test --enable-destructive --disable-docs" |
| 23 | 21 | ||
| 22 | PACKAGECONFIG ??= "${@bb.utils.contains('DISTRO_FEATURES','systemd','systemd','',d)}" | ||
| 23 | PACKAGECONFIG[systemd] = "--with-systemd, --without-systemd, systemd" | ||
| 24 | |||
| 24 | do_configure_prepend() { | 25 | do_configure_prepend() { |
| 25 | ${S}/autogen.sh | 26 | ${S}/autogen.sh |
| 26 | } | 27 | } |
| 27 | 28 | ||
| 28 | SYSTEMD_SERVICE_${PN} = "ndctl-monitor.service" | 29 | SYSTEMD_SERVICE_${PN} = "ndctl-monitor.service" |
| 29 | |||
| 30 | COMPATIBLE_HOST='(x86_64).*' | ||
