All of lore.kernel.org
 help / color / mirror / Atom feed
* [meta-oe][PATCH] nvme-cli: add recipe
@ 2018-10-08  8:18 Stefan Wiehler
  2018-10-08 13:39 ` Khem Raj
  0 siblings, 1 reply; 6+ messages in thread
From: Stefan Wiehler @ 2018-10-08  8:18 UTC (permalink / raw)
  To: openembedded-devel

NVMe management command line interface.

Signed-off-by: Stefan Wiehler <stefan.wiehler@missinglinkelectronics.com>
---
 meta-oe/recipes-extended/nvme-cli/nvme-cli_1.6.bb | 19 +++++++++++++++++++
 1 file changed, 19 insertions(+)
 create mode 100644 meta-oe/recipes-extended/nvme-cli/nvme-cli_1.6.bb

diff --git a/meta-oe/recipes-extended/nvme-cli/nvme-cli_1.6.bb b/meta-oe/recipes-extended/nvme-cli/nvme-cli_1.6.bb
new file mode 100644
index 0000000..68c73ca
--- /dev/null
+++ b/meta-oe/recipes-extended/nvme-cli/nvme-cli_1.6.bb
@@ -0,0 +1,19 @@
+SUMMARY = "NVMe management command line interface"
+AUTHOR = "Stefan Wiehler <stefan.wiehler@missinglinkelectronics.com>"
+HOMEPAGE = "https://github.com/linux-nvme/nvme-cli"
+SECTION = "console/utils"
+LICENSE = "GPLv2"
+LIC_FILES_CHKSUM = "file://LICENSE;md5=8264535c0c4e9c6c335635c4026a8022"
+DEPENDS = "util-linux"
+PV .= "+git${SRCPV}"
+
+SRC_URI = "git://github.com/linux-nvme/nvme-cli.git"
+SRCREV = "642d426faf8a67ed01e90f7c35c0d967f8cc52a3"
+
+S = "${WORKDIR}/git"
+
+do_install() {
+    oe_runmake PREFIX=${prefix} DESTDIR=${D} install
+}
+
+FILES_${PN} += "${datadir}/bash_completion.d"
-- 
2.7.4



^ permalink raw reply related	[flat|nested] 6+ messages in thread

* Re: [meta-oe][PATCH] nvme-cli: add recipe
  2018-10-08  8:18 [meta-oe][PATCH] nvme-cli: add recipe Stefan Wiehler
@ 2018-10-08 13:39 ` Khem Raj
  2018-10-09 13:40   ` [meta-oe][PATCH v2] " Stefan Wiehler
  0 siblings, 1 reply; 6+ messages in thread
From: Khem Raj @ 2018-10-08 13:39 UTC (permalink / raw)
  To: stefan.wiehler; +Cc: openembeded-devel

On Mon, Oct 8, 2018 at 1:19 AM Stefan Wiehler
<stefan.wiehler@missinglinkelectronics.com> wrote:
>
> NVMe management command line interface.
>
> Signed-off-by: Stefan Wiehler <stefan.wiehler@missinglinkelectronics.com>
> ---
>  meta-oe/recipes-extended/nvme-cli/nvme-cli_1.6.bb | 19 +++++++++++++++++++
>  1 file changed, 19 insertions(+)
>  create mode 100644 meta-oe/recipes-extended/nvme-cli/nvme-cli_1.6.bb
>
> diff --git a/meta-oe/recipes-extended/nvme-cli/nvme-cli_1.6.bb b/meta-oe/recipes-extended/nvme-cli/nvme-cli_1.6.bb
> new file mode 100644
> index 0000000..68c73ca
> --- /dev/null
> +++ b/meta-oe/recipes-extended/nvme-cli/nvme-cli_1.6.bb
> @@ -0,0 +1,19 @@
> +SUMMARY = "NVMe management command line interface"
> +AUTHOR = "Stefan Wiehler <stefan.wiehler@missinglinkelectronics.com>"
> +HOMEPAGE = "https://github.com/linux-nvme/nvme-cli"
> +SECTION = "console/utils"
> +LICENSE = "GPLv2"
> +LIC_FILES_CHKSUM = "file://LICENSE;md5=8264535c0c4e9c6c335635c4026a8022"
> +DEPENDS = "util-linux"
> +PV .= "+git${SRCPV}"
> +
> +SRC_URI = "git://github.com/linux-nvme/nvme-cli.git"
> +SRCREV = "642d426faf8a67ed01e90f7c35c0d967f8cc52a3"
> +
> +S = "${WORKDIR}/git"
> +
> +do_install() {
> +    oe_runmake PREFIX=${prefix} DESTDIR=${D} install
> +}
> +
> +FILES_${PN} += "${datadir}/bash_completion.d"

this perhaps should inherit bash-completion bbclass
> --
> 2.7.4
>
> --
> _______________________________________________
> Openembedded-devel mailing list
> Openembedded-devel@lists.openembedded.org
> http://lists.openembedded.org/mailman/listinfo/openembedded-devel


^ permalink raw reply	[flat|nested] 6+ messages in thread

* [meta-oe][PATCH v2] nvme-cli: add recipe
  2018-10-08 13:39 ` Khem Raj
@ 2018-10-09 13:40   ` Stefan Wiehler
  2018-10-10  0:36     ` akuster808
  0 siblings, 1 reply; 6+ messages in thread
From: Stefan Wiehler @ 2018-10-09 13:40 UTC (permalink / raw)
  To: openembedded-devel

NVMe management command line interface.

Signed-off-by: Stefan Wiehler <stefan.wiehler@missinglinkelectronics.com>
---

Change: Use bash-completion class and patch bash completion install path

 ...Makefile-fix-bash-completion-install-path.patch | 33 ++++++++++++++++++++++
 meta-oe/recipes-extended/nvme-cli/nvme-cli_1.6.bb  | 21 ++++++++++++++
 2 files changed, 54 insertions(+)
 create mode 100644 meta-oe/recipes-extended/nvme-cli/files/0001-Makefile-fix-bash-completion-install-path.patch
 create mode 100644 meta-oe/recipes-extended/nvme-cli/nvme-cli_1.6.bb

diff --git a/meta-oe/recipes-extended/nvme-cli/files/0001-Makefile-fix-bash-completion-install-path.patch b/meta-oe/recipes-extended/nvme-cli/files/0001-Makefile-fix-bash-completion-install-path.patch
new file mode 100644
index 0000000..ecd4f03
--- /dev/null
+++ b/meta-oe/recipes-extended/nvme-cli/files/0001-Makefile-fix-bash-completion-install-path.patch
@@ -0,0 +1,33 @@
+From ef64032b34190079aab591c64a25f7535a977390 Mon Sep 17 00:00:00 2001
+From: Stefan Wiehler <stefan.wiehler@missinglinkelectronics.com>
+Date: Tue, 9 Oct 2018 11:26:34 +0200
+Subject: [PATCH] Makefile: fix bash completion install path
+
+Change path to bash-completion upstream recommendation used by most
+distributions.
+
+Upstream-Status: Submitted [https://github.com/linux-nvme/nvme-cli/pull/418]
+
+Signed-off-by: Stefan Wiehler <stefan.wiehler@missinglinkelectronics.com>
+---
+ Makefile | 4 ++--
+ 1 file changed, 2 insertions(+), 2 deletions(-)
+
+diff --git a/Makefile b/Makefile
+index fa587dd..433bc41 100644
+--- a/Makefile
++++ b/Makefile
+@@ -69,8 +69,8 @@ install-bin: default
+ 	$(INSTALL) -m 755 nvme $(DESTDIR)$(SBINDIR)
+ 
+ install-bash-completion:
+-	$(INSTALL) -d $(DESTDIR)$(PREFIX)/share/bash_completion.d
+-	$(INSTALL) -m 644 -T ./completions/bash-nvme-completion.sh $(DESTDIR)$(PREFIX)/share/bash_completion.d/nvme
++	$(INSTALL) -d $(DESTDIR)$(PREFIX)/share/bash-completion/completions
++	$(INSTALL) -m 644 -T ./completions/bash-nvme-completion.sh $(DESTDIR)$(PREFIX)/share/bash-completion/completions/nvme
+ 
+ install: install-bin install-man install-bash-completion
+ 
+-- 
+1.9.1
+
diff --git a/meta-oe/recipes-extended/nvme-cli/nvme-cli_1.6.bb b/meta-oe/recipes-extended/nvme-cli/nvme-cli_1.6.bb
new file mode 100644
index 0000000..9b7e6cd
--- /dev/null
+++ b/meta-oe/recipes-extended/nvme-cli/nvme-cli_1.6.bb
@@ -0,0 +1,21 @@
+SUMMARY = "NVMe management command line interface"
+AUTHOR = "Stefan Wiehler <stefan.wiehler@missinglinkelectronics.com>"
+HOMEPAGE = "https://github.com/linux-nvme/nvme-cli"
+SECTION = "console/utils"
+LICENSE = "GPLv2"
+LIC_FILES_CHKSUM = "file://LICENSE;md5=8264535c0c4e9c6c335635c4026a8022"
+DEPENDS = "util-linux"
+PV .= "+git${SRCPV}"
+
+SRC_URI = "git://github.com/linux-nvme/nvme-cli.git \
+           file://0001-Makefile-fix-bash-completion-install-path.patch \
+           "
+SRCREV = "642d426faf8a67ed01e90f7c35c0d967f8cc52a3"
+
+S = "${WORKDIR}/git"
+
+inherit bash-completion
+
+do_install() {
+    oe_runmake PREFIX=${prefix} DESTDIR=${D} install
+}
-- 
1.9.1



^ permalink raw reply related	[flat|nested] 6+ messages in thread

* Re: [meta-oe][PATCH v2] nvme-cli: add recipe
  2018-10-09 13:40   ` [meta-oe][PATCH v2] " Stefan Wiehler
@ 2018-10-10  0:36     ` akuster808
  2018-10-10  2:00       ` Khem Raj
  0 siblings, 1 reply; 6+ messages in thread
From: akuster808 @ 2018-10-10  0:36 UTC (permalink / raw)
  To: Stefan Wiehler, openembedded-devel



On 10/09/2018 06:40 AM, Stefan Wiehler wrote:
> NVMe management command line interface.
>
> Signed-off-by: Stefan Wiehler <stefan.wiehler@missinglinkelectronics.com>
> ---
>
> Change: Use bash-completion class and patch bash completion install path
>
>  ...Makefile-fix-bash-completion-install-path.patch | 33 ++++++++++++++++++++++
>  meta-oe/recipes-extended/nvme-cli/nvme-cli_1.6.bb  | 21 ++++++++++++++

Would it be more appropriate to have this in the recipes-bsp ?


>  2 files changed, 54 insertions(+)
>  create mode 100644 meta-oe/recipes-extended/nvme-cli/files/0001-Makefile-fix-bash-completion-install-path.patch
>  create mode 100644 meta-oe/recipes-extended/nvme-cli/nvme-cli_1.6.bb
>
> diff --git a/meta-oe/recipes-extended/nvme-cli/files/0001-Makefile-fix-bash-completion-install-path.patch b/meta-oe/recipes-extended/nvme-cli/files/0001-Makefile-fix-bash-completion-install-path.patch
> new file mode 100644
> index 0000000..ecd4f03
> --- /dev/null
> +++ b/meta-oe/recipes-extended/nvme-cli/files/0001-Makefile-fix-bash-completion-install-path.patch
> @@ -0,0 +1,33 @@
> +From ef64032b34190079aab591c64a25f7535a977390 Mon Sep 17 00:00:00 2001
> +From: Stefan Wiehler <stefan.wiehler@missinglinkelectronics.com>
> +Date: Tue, 9 Oct 2018 11:26:34 +0200
> +Subject: [PATCH] Makefile: fix bash completion install path
> +
> +Change path to bash-completion upstream recommendation used by most
> +distributions.
> +
> +Upstream-Status: Submitted [https://github.com/linux-nvme/nvme-cli/pull/418]
> +
> +Signed-off-by: Stefan Wiehler <stefan.wiehler@missinglinkelectronics.com>
> +---
> + Makefile | 4 ++--
> + 1 file changed, 2 insertions(+), 2 deletions(-)
> +
> +diff --git a/Makefile b/Makefile
> +index fa587dd..433bc41 100644
> +--- a/Makefile
> ++++ b/Makefile
> +@@ -69,8 +69,8 @@ install-bin: default
> + 	$(INSTALL) -m 755 nvme $(DESTDIR)$(SBINDIR)
> + 
> + install-bash-completion:
> +-	$(INSTALL) -d $(DESTDIR)$(PREFIX)/share/bash_completion.d
> +-	$(INSTALL) -m 644 -T ./completions/bash-nvme-completion.sh $(DESTDIR)$(PREFIX)/share/bash_completion.d/nvme
> ++	$(INSTALL) -d $(DESTDIR)$(PREFIX)/share/bash-completion/completions
> ++	$(INSTALL) -m 644 -T ./completions/bash-nvme-completion.sh $(DESTDIR)$(PREFIX)/share/bash-completion/completions/nvme
> + 
> + install: install-bin install-man install-bash-completion
> + 
> +-- 
> +1.9.1
> +
> diff --git a/meta-oe/recipes-extended/nvme-cli/nvme-cli_1.6.bb b/meta-oe/recipes-extended/nvme-cli/nvme-cli_1.6.bb
> new file mode 100644
> index 0000000..9b7e6cd
> --- /dev/null
> +++ b/meta-oe/recipes-extended/nvme-cli/nvme-cli_1.6.bb
> @@ -0,0 +1,21 @@
> +SUMMARY = "NVMe management command line interface"
> +AUTHOR = "Stefan Wiehler <stefan.wiehler@missinglinkelectronics.com>"
> +HOMEPAGE = "https://github.com/linux-nvme/nvme-cli"
> +SECTION = "console/utils"
> +LICENSE = "GPLv2"
> +LIC_FILES_CHKSUM = "file://LICENSE;md5=8264535c0c4e9c6c335635c4026a8022"
> +DEPENDS = "util-linux"
> +PV .= "+git${SRCPV}"
> +
> +SRC_URI = "git://github.com/linux-nvme/nvme-cli.git \
> +           file://0001-Makefile-fix-bash-completion-install-path.patch \
> +           "
> +SRCREV = "642d426faf8a67ed01e90f7c35c0d967f8cc52a3"
> +
> +S = "${WORKDIR}/git"
> +
> +inherit bash-completion
> +
> +do_install() {
> +    oe_runmake PREFIX=${prefix} DESTDIR=${D} install
> +}



^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: [meta-oe][PATCH v2] nvme-cli: add recipe
  2018-10-10  0:36     ` akuster808
@ 2018-10-10  2:00       ` Khem Raj
  2018-10-10  9:29         ` [meta-oe][PATCH v3] " Stefan Wiehler
  0 siblings, 1 reply; 6+ messages in thread
From: Khem Raj @ 2018-10-10  2:00 UTC (permalink / raw)
  To: Armin Kuster; +Cc: openembeded-devel

On Tue, Oct 9, 2018 at 5:36 PM akuster808 <akuster808@gmail.com> wrote:
>
>
>
> On 10/09/2018 06:40 AM, Stefan Wiehler wrote:
> > NVMe management command line interface.
> >
> > Signed-off-by: Stefan Wiehler <stefan.wiehler@missinglinkelectronics.com>
> > ---
> >
> > Change: Use bash-completion class and patch bash completion install path
> >
> >  ...Makefile-fix-bash-completion-install-path.patch | 33 ++++++++++++++++++++++
> >  meta-oe/recipes-extended/nvme-cli/nvme-cli_1.6.bb  | 21 ++++++++++++++
>
> Would it be more appropriate to have this in the recipes-bsp ?
>

i think thats a fair point, Or recipes-devtools is also a possible location
but recipes-bsp seems more appropriate. Please send a v3

>
> >  2 files changed, 54 insertions(+)
> >  create mode 100644 meta-oe/recipes-extended/nvme-cli/files/0001-Makefile-fix-bash-completion-install-path.patch
> >  create mode 100644 meta-oe/recipes-extended/nvme-cli/nvme-cli_1.6.bb
> >
> > diff --git a/meta-oe/recipes-extended/nvme-cli/files/0001-Makefile-fix-bash-completion-install-path.patch b/meta-oe/recipes-extended/nvme-cli/files/0001-Makefile-fix-bash-completion-install-path.patch
> > new file mode 100644
> > index 0000000..ecd4f03
> > --- /dev/null
> > +++ b/meta-oe/recipes-extended/nvme-cli/files/0001-Makefile-fix-bash-completion-install-path.patch
> > @@ -0,0 +1,33 @@
> > +From ef64032b34190079aab591c64a25f7535a977390 Mon Sep 17 00:00:00 2001
> > +From: Stefan Wiehler <stefan.wiehler@missinglinkelectronics.com>
> > +Date: Tue, 9 Oct 2018 11:26:34 +0200
> > +Subject: [PATCH] Makefile: fix bash completion install path
> > +
> > +Change path to bash-completion upstream recommendation used by most
> > +distributions.
> > +
> > +Upstream-Status: Submitted [https://github.com/linux-nvme/nvme-cli/pull/418]
> > +
> > +Signed-off-by: Stefan Wiehler <stefan.wiehler@missinglinkelectronics.com>
> > +---
> > + Makefile | 4 ++--
> > + 1 file changed, 2 insertions(+), 2 deletions(-)
> > +
> > +diff --git a/Makefile b/Makefile
> > +index fa587dd..433bc41 100644
> > +--- a/Makefile
> > ++++ b/Makefile
> > +@@ -69,8 +69,8 @@ install-bin: default
> > +     $(INSTALL) -m 755 nvme $(DESTDIR)$(SBINDIR)
> > +
> > + install-bash-completion:
> > +-    $(INSTALL) -d $(DESTDIR)$(PREFIX)/share/bash_completion.d
> > +-    $(INSTALL) -m 644 -T ./completions/bash-nvme-completion.sh $(DESTDIR)$(PREFIX)/share/bash_completion.d/nvme
> > ++    $(INSTALL) -d $(DESTDIR)$(PREFIX)/share/bash-completion/completions
> > ++    $(INSTALL) -m 644 -T ./completions/bash-nvme-completion.sh $(DESTDIR)$(PREFIX)/share/bash-completion/completions/nvme
> > +
> > + install: install-bin install-man install-bash-completion
> > +
> > +--
> > +1.9.1
> > +
> > diff --git a/meta-oe/recipes-extended/nvme-cli/nvme-cli_1.6.bb b/meta-oe/recipes-extended/nvme-cli/nvme-cli_1.6.bb
> > new file mode 100644
> > index 0000000..9b7e6cd
> > --- /dev/null
> > +++ b/meta-oe/recipes-extended/nvme-cli/nvme-cli_1.6.bb
> > @@ -0,0 +1,21 @@
> > +SUMMARY = "NVMe management command line interface"
> > +AUTHOR = "Stefan Wiehler <stefan.wiehler@missinglinkelectronics.com>"
> > +HOMEPAGE = "https://github.com/linux-nvme/nvme-cli"
> > +SECTION = "console/utils"
> > +LICENSE = "GPLv2"
> > +LIC_FILES_CHKSUM = "file://LICENSE;md5=8264535c0c4e9c6c335635c4026a8022"
> > +DEPENDS = "util-linux"
> > +PV .= "+git${SRCPV}"
> > +
> > +SRC_URI = "git://github.com/linux-nvme/nvme-cli.git \
> > +           file://0001-Makefile-fix-bash-completion-install-path.patch \
> > +           "
> > +SRCREV = "642d426faf8a67ed01e90f7c35c0d967f8cc52a3"
> > +
> > +S = "${WORKDIR}/git"
> > +
> > +inherit bash-completion
> > +
> > +do_install() {
> > +    oe_runmake PREFIX=${prefix} DESTDIR=${D} install
> > +}
>
> --
> _______________________________________________
> Openembedded-devel mailing list
> Openembedded-devel@lists.openembedded.org
> http://lists.openembedded.org/mailman/listinfo/openembedded-devel


^ permalink raw reply	[flat|nested] 6+ messages in thread

* [meta-oe][PATCH v3] nvme-cli: add recipe
  2018-10-10  2:00       ` Khem Raj
@ 2018-10-10  9:29         ` Stefan Wiehler
  0 siblings, 0 replies; 6+ messages in thread
From: Stefan Wiehler @ 2018-10-10  9:29 UTC (permalink / raw)
  To: openembedded-devel

NVMe management command line interface.

Signed-off-by: Stefan Wiehler <stefan.wiehler@missinglinkelectronics.com>
---

Changes: - Use bash-completion class and patch bash completion install path
         - Mark bash completion install path patch as accepted
         - Move from recipes-extended to recipes-bsp

 ...Makefile-fix-bash-completion-install-path.patch | 33 ++++++++++++++++++++++
 meta-oe/recipes-bsp/nvme-cli/nvme-cli_1.6.bb       | 21 ++++++++++++++
 2 files changed, 54 insertions(+)
 create mode 100644 meta-oe/recipes-bsp/nvme-cli/files/0001-Makefile-fix-bash-completion-install-path.patch
 create mode 100644 meta-oe/recipes-bsp/nvme-cli/nvme-cli_1.6.bb

diff --git a/meta-oe/recipes-bsp/nvme-cli/files/0001-Makefile-fix-bash-completion-install-path.patch b/meta-oe/recipes-bsp/nvme-cli/files/0001-Makefile-fix-bash-completion-install-path.patch
new file mode 100644
index 0000000..154e140
--- /dev/null
+++ b/meta-oe/recipes-bsp/nvme-cli/files/0001-Makefile-fix-bash-completion-install-path.patch
@@ -0,0 +1,33 @@
+From ef64032b34190079aab591c64a25f7535a977390 Mon Sep 17 00:00:00 2001
+From: Stefan Wiehler <stefan.wiehler@missinglinkelectronics.com>
+Date: Tue, 9 Oct 2018 11:26:34 +0200
+Subject: [PATCH] Makefile: fix bash completion install path
+
+Change path to bash-completion upstream recommendation used by most
+distributions.
+
+Upstream-Status: Accepted
+
+Signed-off-by: Stefan Wiehler <stefan.wiehler@missinglinkelectronics.com>
+---
+ Makefile | 4 ++--
+ 1 file changed, 2 insertions(+), 2 deletions(-)
+
+diff --git a/Makefile b/Makefile
+index fa587dd..433bc41 100644
+--- a/Makefile
++++ b/Makefile
+@@ -69,8 +69,8 @@ install-bin: default
+ 	$(INSTALL) -m 755 nvme $(DESTDIR)$(SBINDIR)
+ 
+ install-bash-completion:
+-	$(INSTALL) -d $(DESTDIR)$(PREFIX)/share/bash_completion.d
+-	$(INSTALL) -m 644 -T ./completions/bash-nvme-completion.sh $(DESTDIR)$(PREFIX)/share/bash_completion.d/nvme
++	$(INSTALL) -d $(DESTDIR)$(PREFIX)/share/bash-completion/completions
++	$(INSTALL) -m 644 -T ./completions/bash-nvme-completion.sh $(DESTDIR)$(PREFIX)/share/bash-completion/completions/nvme
+ 
+ install: install-bin install-man install-bash-completion
+ 
+-- 
+1.9.1
+
diff --git a/meta-oe/recipes-bsp/nvme-cli/nvme-cli_1.6.bb b/meta-oe/recipes-bsp/nvme-cli/nvme-cli_1.6.bb
new file mode 100644
index 0000000..9b7e6cd
--- /dev/null
+++ b/meta-oe/recipes-bsp/nvme-cli/nvme-cli_1.6.bb
@@ -0,0 +1,21 @@
+SUMMARY = "NVMe management command line interface"
+AUTHOR = "Stefan Wiehler <stefan.wiehler@missinglinkelectronics.com>"
+HOMEPAGE = "https://github.com/linux-nvme/nvme-cli"
+SECTION = "console/utils"
+LICENSE = "GPLv2"
+LIC_FILES_CHKSUM = "file://LICENSE;md5=8264535c0c4e9c6c335635c4026a8022"
+DEPENDS = "util-linux"
+PV .= "+git${SRCPV}"
+
+SRC_URI = "git://github.com/linux-nvme/nvme-cli.git \
+           file://0001-Makefile-fix-bash-completion-install-path.patch \
+           "
+SRCREV = "642d426faf8a67ed01e90f7c35c0d967f8cc52a3"
+
+S = "${WORKDIR}/git"
+
+inherit bash-completion
+
+do_install() {
+    oe_runmake PREFIX=${prefix} DESTDIR=${D} install
+}
-- 
1.9.1



^ permalink raw reply related	[flat|nested] 6+ messages in thread

end of thread, other threads:[~2018-10-10  9:29 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2018-10-08  8:18 [meta-oe][PATCH] nvme-cli: add recipe Stefan Wiehler
2018-10-08 13:39 ` Khem Raj
2018-10-09 13:40   ` [meta-oe][PATCH v2] " Stefan Wiehler
2018-10-10  0:36     ` akuster808
2018-10-10  2:00       ` Khem Raj
2018-10-10  9:29         ` [meta-oe][PATCH v3] " Stefan Wiehler

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.