summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--meta-oe/recipes-core/ndctl/ndctl_git.bb29
1 files changed, 29 insertions, 0 deletions
diff --git a/meta-oe/recipes-core/ndctl/ndctl_git.bb b/meta-oe/recipes-core/ndctl/ndctl_git.bb
new file mode 100644
index 0000000000..36f94ecfd5
--- /dev/null
+++ b/meta-oe/recipes-core/ndctl/ndctl_git.bb
@@ -0,0 +1,29 @@
1SUMMARY = "libnvdimm utility library"
2DESCRIPTION = "Utility library for managing the libnvdimm \
3(non-volatile memory device) sub-system in the Linux kernel. \
4The LIBNVDIMM subsystem provides support for three types of \
5NVDIMMs, namely,PMEM, BLK, and NVDIMM devices that can \
6simultaneously support both PMEM and BLK mode access."
7HOMEPAGE = "https://git.kernel.org/cgit/linux/kernel/git/nvdimm/nvdimm.git/tree/Documentation/nvdimm/nvdimm.txt?h=libnvdimm-for-next"
8LICENSE = "GPLv2+"
9LIC_FILES_CHKSUM = "file://COPYING;md5=e66651809cac5da60c8b80e9e4e79e08"
10
11inherit autotools-brokensep pkgconfig module-base
12
13SRCREV = "0d6aeeabec9d271e08c12e4cf679b59946e20156"
14SRC_URI = "git://github.com/pmem/ndctl.git"
15
16DEPENDS = "virtual/kernel kmod udev json-c"
17
18PV = "v61+git${SRCPV}"
19S = "${WORKDIR}/git"
20
21EXTRA_OECONF += "--enable-test --enable-destructive --disable-docs"
22
23do_configure_prepend() {
24 ${S}/autogen.sh
25}
26
27COMPATIBLE_HOST='(x86_64).*'
28
29FILES_${PN} += "/usr/share/bash-completion/completions/ndctl"