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