NVME OOB: add a recipe to build nvme-cli 2.1.2

We need the latest nvme-cli tool to do several out of bound test
on NVMe SSD. This recipe only installs the `nvme` executable on
the path: `/usr/bin/nvme`

Tested:
Build and install the image on an izumi machine, and verified that
`/usr/bin/nvme` exists.

Google-Bug-Id: 247824345
Change-Id: I6b77b42e847e5b345c8bfcfe024157abcf13eb79
Signed-off-by: Jinliang Wang <jinliangw@google.com>
diff --git a/recipes-connectivity/nvme-cli/nvme-cli_2.1.2.git.bb b/recipes-connectivity/nvme-cli/nvme-cli_2.1.2.git.bb
new file mode 100644
index 0000000..8c72c66
--- /dev/null
+++ b/recipes-connectivity/nvme-cli/nvme-cli_2.1.2.git.bb
@@ -0,0 +1,20 @@
+SUMMARY = "NVMe management command line interface"
+HOMEPAGE = "https://github.com/linux-nvme/nvme-cli"
+SECTION = "console/utils"
+LICENSE = "GPL-2.0-only"
+LIC_FILES_CHKSUM = "file://LICENSE;md5=8264535c0c4e9c6c335635c4026a8022"
+DEPENDS = "util-linux json-c libnvme"
+PV .= "+git${SRCPV}"
+PR = "r1"
+
+SRC_URI = "git://github.com/linux-nvme/nvme-cli.git;branch=master;protocol=https"
+SRCREV = "33e51c967c5e38f8360d6ff9bae9ad06275859ce"
+
+S = "${WORKDIR}/git"
+
+inherit bash-completion systemd meson pkgconfig
+
+do_install() {
+    install -d ${D}${bindir}
+    install -m 0755 ${WORKDIR}/build/nvme ${D}${bindir}/
+}