mirror of
https://github.com/openembedded/meta-openembedded.git
synced 2026-06-04 14:39:54 +00:00
ndctl: Upgrade to v73
Add iniparser dependency to util subdir Correct path to iniparser.h Signed-off-by: Khem Raj <raj.khem@gmail.com>
This commit is contained in:
@@ -0,0 +1,41 @@
|
|||||||
|
From 44516eee75696c84849c0f7aa632e2456b101813 Mon Sep 17 00:00:00 2001
|
||||||
|
From: Khem Raj <raj.khem@gmail.com>
|
||||||
|
Date: Sat, 26 Mar 2022 00:57:03 -0700
|
||||||
|
Subject: [PATCH] meson: Use pkg-config to detect iniparser
|
||||||
|
|
||||||
|
Add iniparser dependency to util subdir
|
||||||
|
|
||||||
|
Upstream-Status: Pending
|
||||||
|
Signed-off-by: Khem Raj <raj.khem@gmail.com>
|
||||||
|
---
|
||||||
|
meson.build | 2 +-
|
||||||
|
util/meson.build | 1 +
|
||||||
|
2 files changed, 2 insertions(+), 1 deletion(-)
|
||||||
|
|
||||||
|
diff --git a/meson.build b/meson.build
|
||||||
|
index 42e11aa..4209320 100644
|
||||||
|
--- a/meson.build
|
||||||
|
+++ b/meson.build
|
||||||
|
@@ -160,7 +160,7 @@ cc = meson.get_compiler('c')
|
||||||
|
|
||||||
|
# keyutils and iniparser lack pkgconfig
|
||||||
|
keyutils = cc.find_library('keyutils', required : get_option('keyutils'))
|
||||||
|
-iniparser = cc.find_library('iniparser', required : true)
|
||||||
|
+iniparser = dependency('iniparser', required : true)
|
||||||
|
|
||||||
|
conf = configuration_data()
|
||||||
|
check_headers = [
|
||||||
|
diff --git a/util/meson.build b/util/meson.build
|
||||||
|
index 784b279..8e9ae9a 100644
|
||||||
|
--- a/util/meson.build
|
||||||
|
+++ b/util/meson.build
|
||||||
|
@@ -12,5 +12,6 @@ util = static_library('util', [
|
||||||
|
'iomem.c',
|
||||||
|
],
|
||||||
|
include_directories : root_inc,
|
||||||
|
+ dependencies : iniparser,
|
||||||
|
)
|
||||||
|
util_dep = declare_dependency(link_with : util)
|
||||||
|
--
|
||||||
|
2.35.1
|
||||||
|
|
||||||
@@ -0,0 +1,28 @@
|
|||||||
|
From c212d228c25cb583f52a6d31e9f0ec7bc1f9c506 Mon Sep 17 00:00:00 2001
|
||||||
|
From: Khem Raj <raj.khem@gmail.com>
|
||||||
|
Date: Sat, 26 Mar 2022 01:10:02 -0700
|
||||||
|
Subject: [PATCH] util: Correct path to iniparser.h
|
||||||
|
|
||||||
|
Upstream-Status: Pending
|
||||||
|
|
||||||
|
Signed-off-by: Khem Raj <raj.khem@gmail.com>
|
||||||
|
---
|
||||||
|
util/parse-configs.c | 2 +-
|
||||||
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
||||||
|
|
||||||
|
diff --git a/util/parse-configs.c b/util/parse-configs.c
|
||||||
|
index c834a07..1b7ffa6 100644
|
||||||
|
--- a/util/parse-configs.c
|
||||||
|
+++ b/util/parse-configs.c
|
||||||
|
@@ -4,7 +4,7 @@
|
||||||
|
#include <dirent.h>
|
||||||
|
#include <errno.h>
|
||||||
|
#include <fcntl.h>
|
||||||
|
-#include <iniparser.h>
|
||||||
|
+#include <iniparser/iniparser.h>
|
||||||
|
#include <sys/stat.h>
|
||||||
|
#include <util/parse-configs.h>
|
||||||
|
#include <util/strbuf.h>
|
||||||
|
--
|
||||||
|
2.35.1
|
||||||
|
|
||||||
@@ -1,34 +0,0 @@
|
|||||||
SUMMARY = "libnvdimm utility library"
|
|
||||||
DESCRIPTION = "Utility library for managing the libnvdimm \
|
|
||||||
(non-volatile memory device) sub-system in the Linux kernel. \
|
|
||||||
The LIBNVDIMM subsystem provides support for three types of \
|
|
||||||
NVDIMMs, namely,PMEM, BLK, and NVDIMM devices that can \
|
|
||||||
simultaneously support both PMEM and BLK mode access."
|
|
||||||
HOMEPAGE = "https://git.kernel.org/cgit/linux/kernel/git/nvdimm/nvdimm.git/tree/Documentation/nvdimm/nvdimm.txt?h=libnvdimm-for-next"
|
|
||||||
LICENSE = "GPL-2.0-or-later"
|
|
||||||
LIC_FILES_CHKSUM = "file://COPYING;md5=e66651809cac5da60c8b80e9e4e79e08"
|
|
||||||
|
|
||||||
inherit autotools-brokensep pkgconfig bash-completion systemd
|
|
||||||
|
|
||||||
SRCREV = "ea62d6d53bf6f806c4841e97a370201e18446860"
|
|
||||||
SRC_URI = "git://github.com/pmem/ndctl.git;branch=master;protocol=https"
|
|
||||||
|
|
||||||
UPSTREAM_CHECK_GITTAGREGEX = "(?P<pver>v\d+(\.\d+)*)"
|
|
||||||
|
|
||||||
DEPENDS = "kmod udev json-c keyutils"
|
|
||||||
|
|
||||||
S = "${WORKDIR}/git"
|
|
||||||
|
|
||||||
EXTRA_OECONF += "--enable-test --enable-destructive --disable-docs"
|
|
||||||
|
|
||||||
PACKAGECONFIG ??= "${@bb.utils.contains('DISTRO_FEATURES','systemd','systemd','',d)}"
|
|
||||||
PACKAGECONFIG[systemd] = "--with-systemd, --without-systemd, systemd"
|
|
||||||
|
|
||||||
do_configure:prepend() {
|
|
||||||
${S}/autogen.sh
|
|
||||||
}
|
|
||||||
|
|
||||||
SYSTEMD_SERVICE:${PN} = "ndctl-monitor.service"
|
|
||||||
SYSTEMD_AUTO_ENABLE:${PN} = "disable"
|
|
||||||
|
|
||||||
FILES:${PN} += "${datadir}/daxctl/daxctl.conf"
|
|
||||||
@@ -0,0 +1,35 @@
|
|||||||
|
SUMMARY = "libnvdimm utility library"
|
||||||
|
DESCRIPTION = "Utility library for managing the libnvdimm \
|
||||||
|
(non-volatile memory device) sub-system in the Linux kernel. \
|
||||||
|
The LIBNVDIMM subsystem provides support for three types of \
|
||||||
|
NVDIMMs, namely,PMEM, BLK, and NVDIMM devices that can \
|
||||||
|
simultaneously support both PMEM and BLK mode access."
|
||||||
|
HOMEPAGE = "https://git.kernel.org/cgit/linux/kernel/git/nvdimm/nvdimm.git/tree/Documentation/nvdimm/nvdimm.txt?h=libnvdimm-for-next"
|
||||||
|
LICENSE = "GPL-2.0-or-later & LGPL-2.1-or-later & MIT & CC0-1.0"
|
||||||
|
LIC_FILES_CHKSUM = "file://COPYING;md5=74a614eac8b2657a4b8e6607421a0883"
|
||||||
|
|
||||||
|
inherit meson pkgconfig bash-completion systemd
|
||||||
|
|
||||||
|
SRCREV = "dd58d43458943d20ff063850670bf54a5242c9c5"
|
||||||
|
SRC_URI = "git://github.com/pmem/ndctl.git;branch=main;protocol=https \
|
||||||
|
file://0001-util-Correct-path-to-iniparser.h.patch \
|
||||||
|
file://0001-meson-Use-pkg-config-to-detect-iniparser.patch"
|
||||||
|
|
||||||
|
UPSTREAM_CHECK_GITTAGREGEX = "(?P<pver>v\d+(\.\d+)*)"
|
||||||
|
|
||||||
|
DEPENDS = "kmod udev json-c keyutils iniparser"
|
||||||
|
|
||||||
|
S = "${WORKDIR}/git"
|
||||||
|
|
||||||
|
EXTRA_OECONF += "-Ddestructive=enabled"
|
||||||
|
|
||||||
|
PACKAGECONFIG ??= "tests ${@bb.utils.contains('DISTRO_FEATURES','systemd','systemd','',d)}"
|
||||||
|
PACKAGECONFIG[systemd] = "-Dsystemd=enabled,-Dsystemd=disabled,systemd"
|
||||||
|
PACKAGECONFIG[tests] = "-Dtest=enabled, -Dtest=disabled,"
|
||||||
|
PACKAGECONFIG[docs] = "-Ddocs=enabled -Dasciidoctor=enabled,-Ddocs=disabled -Dasciidoctor=disabled, asciidoc-native"
|
||||||
|
|
||||||
|
SYSTEMD_PACKAGES = "${@bb.utils.contains('DISTRO_FEATURES','systemd','${PN}','',d)}"
|
||||||
|
SYSTEMD_SERVICE:${PN} = "ndctl-monitor.service daxdev-reconfigure@.service"
|
||||||
|
SYSTEMD_AUTO_ENABLE:${PN} = "disable"
|
||||||
|
|
||||||
|
FILES:${PN} += "${datadir}/daxctl/daxctl.conf "
|
||||||
Reference in New Issue
Block a user