All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 0/6] A few misc fixes from meta-mentor-staging
@ 2018-06-21 21:07 Christopher Larson
  2018-06-21 21:07 ` [PATCH 1/6] oe.scriptutils.run_editor: ditch the error-prone argument quoting Christopher Larson
                   ` (5 more replies)
  0 siblings, 6 replies; 11+ messages in thread
From: Christopher Larson @ 2018-06-21 21:07 UTC (permalink / raw)
  To: openembedded-core; +Cc: Christopher Larson

From: Christopher Larson <chris_larson@mentor.com>

The following changes since commit 83c9405df5748744ef673ac8757bb89d7050ad8d:

  alsa-tools: rewrite packaging (2018-06-15 11:18:15 +0100)

are available in the git repository at:

  git@github.com:kergoth/openembedded-core.git misc-fixes

for you to fetch changes up to 5ce7b09e00b4967d2c0efaad58049cf871fab57a:

  perf: drop the rdep on man (2018-06-16 02:04:35 +0500)

----------------------------------------------------------------
Christopher Larson (6):
  oe.scriptutils.run_editor: ditch the error-prone argument quoting
  pcmciautils: depend on bison-native
  console-tools: add missing flex/bison deps
  ovmf: set PARALLEL_MAKE for target as well
  dmidecode: correct docdir
  perf: drop the rdep on man

 meta/recipes-bsp/pcmciautils/pcmciautils.inc       |  2 +-
 .../console-tools/console-tools_0.3.2.bb           |  1 +
 meta/recipes-core/ovmf/ovmf_git.bb                 |  2 +-
 meta/recipes-devtools/dmidecode/dmidecode_3.1.bb   |  4 ++++
 meta/recipes-kernel/perf/perf.bb                   |  1 -
 scripts/lib/scriptutils.py                         | 24 +++++++++++-----------
 6 files changed, 19 insertions(+), 15 deletions(-)

-- 
2.11.1



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

* [PATCH 1/6] oe.scriptutils.run_editor: ditch the error-prone argument quoting
  2018-06-21 21:07 [PATCH 0/6] A few misc fixes from meta-mentor-staging Christopher Larson
@ 2018-06-21 21:07 ` Christopher Larson
  2018-06-27 12:52   ` Richard Purdie
  2018-06-21 21:07 ` [PATCH 2/6] pcmciautils: depend on bison-native Christopher Larson
                   ` (4 subsequent siblings)
  5 siblings, 1 reply; 11+ messages in thread
From: Christopher Larson @ 2018-06-21 21:07 UTC (permalink / raw)
  To: openembedded-core; +Cc: Christopher Larson

From: Christopher Larson <chris_larson@mentor.com>

Rather than trying to construct a string by quoting the files in an
error-prone way, parse $EDITOR to pass a list to subprocess rather than
a string.

Signed-off-by: Christopher Larson <chris_larson@mentor.com>
---
 scripts/lib/scriptutils.py | 24 ++++++++++++------------
 1 file changed, 12 insertions(+), 12 deletions(-)

diff --git a/scripts/lib/scriptutils.py b/scripts/lib/scriptutils.py
index 85b1c949bf5..470f76995f0 100644
--- a/scripts/lib/scriptutils.py
+++ b/scripts/lib/scriptutils.py
@@ -15,16 +15,17 @@
 # with this program; if not, write to the Free Software Foundation, Inc.,
 # 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
 
-import sys
-import os
-import logging
-import glob
 import argparse
-import subprocess
-import tempfile
-import shutil
+import glob
+import logging
+import os
 import random
+import shlex
+import shutil
 import string
+import subprocess
+import sys
+import tempfile
 
 def logger_create(name, stream=None):
     logger = logging.getLogger(name)
@@ -214,15 +215,14 @@ def fetch_url(tinfoil, srcuri, srcrev, destdir, logger, preserve_tmp=False, mirr
 
 def run_editor(fn, logger=None):
     if isinstance(fn, str):
-        params = '"%s"' % fn
+        files = [fn]
     else:
-        params = ''
-        for fnitem in fn:
-            params += ' "%s"' % fnitem
+        files = fn
 
     editor = os.getenv('VISUAL', os.getenv('EDITOR', 'vi'))
     try:
-        return subprocess.check_call('%s %s' % (editor, params), shell=True)
+        print(shlex.split(editor) + files)
+        return subprocess.check_call(shlex.split(editor) + files)
     except subprocess.CalledProcessError as exc:
         logger.error("Execution of '%s' failed: %s" % (editor, exc))
         return 1
-- 
2.11.1



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

* [PATCH 2/6] pcmciautils: depend on bison-native
  2018-06-21 21:07 [PATCH 0/6] A few misc fixes from meta-mentor-staging Christopher Larson
  2018-06-21 21:07 ` [PATCH 1/6] oe.scriptutils.run_editor: ditch the error-prone argument quoting Christopher Larson
@ 2018-06-21 21:07 ` Christopher Larson
  2018-06-21 21:07 ` [PATCH 3/6] console-tools: add missing flex/bison deps Christopher Larson
                   ` (3 subsequent siblings)
  5 siblings, 0 replies; 11+ messages in thread
From: Christopher Larson @ 2018-06-21 21:07 UTC (permalink / raw)
  To: openembedded-core; +Cc: Christopher Larson

From: Christopher Larson <chris_larson@mentor.com>

pcmciautils needs yacc as well as lex.

Signed-off-by: Christopher Larson <chris_larson@mentor.com>
---
 meta/recipes-bsp/pcmciautils/pcmciautils.inc | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/meta/recipes-bsp/pcmciautils/pcmciautils.inc b/meta/recipes-bsp/pcmciautils/pcmciautils.inc
index 05249805098..26c6d75d4b7 100644
--- a/meta/recipes-bsp/pcmciautils/pcmciautils.inc
+++ b/meta/recipes-bsp/pcmciautils/pcmciautils.inc
@@ -5,7 +5,7 @@ SECTION = "kernel/userland"
 LICENSE = "GPLv2"
 LIC_FILES_CHKSUM = "file://COPYING;md5=94d55d512a9ba36caa9b7df079bae19f"
 
-DEPENDS = "udev sysfsutils flex-native"
+DEPENDS = "udev sysfsutils flex-native bison-native"
 RDEPENDS_${PN} = "udev module-init-tools"
 
 SRC_URI = "${KERNELORG_MIRROR}/linux/utils/kernel/pcmcia/${BP}.tar.xz"
-- 
2.11.1



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

* [PATCH 3/6] console-tools: add missing flex/bison deps
  2018-06-21 21:07 [PATCH 0/6] A few misc fixes from meta-mentor-staging Christopher Larson
  2018-06-21 21:07 ` [PATCH 1/6] oe.scriptutils.run_editor: ditch the error-prone argument quoting Christopher Larson
  2018-06-21 21:07 ` [PATCH 2/6] pcmciautils: depend on bison-native Christopher Larson
@ 2018-06-21 21:07 ` Christopher Larson
  2018-06-21 21:07 ` [PATCH 4/6] ovmf: set PARALLEL_MAKE for target as well Christopher Larson
                   ` (2 subsequent siblings)
  5 siblings, 0 replies; 11+ messages in thread
From: Christopher Larson @ 2018-06-21 21:07 UTC (permalink / raw)
  To: openembedded-core; +Cc: Christopher Larson

From: Christopher Larson <chris_larson@mentor.com>

Signed-off-by: Christopher Larson <chris_larson@mentor.com>
---
 meta/recipes-core/console-tools/console-tools_0.3.2.bb | 1 +
 1 file changed, 1 insertion(+)

diff --git a/meta/recipes-core/console-tools/console-tools_0.3.2.bb b/meta/recipes-core/console-tools/console-tools_0.3.2.bb
index 6b9c82834cb..ba44fbe60f9 100644
--- a/meta/recipes-core/console-tools/console-tools_0.3.2.bb
+++ b/meta/recipes-core/console-tools/console-tools_0.3.2.bb
@@ -3,6 +3,7 @@ DESCRIPTION = "Provides tools that enable the set-up and manipulation of the lin
 SECTION = "base"
 LICENSE = "GPLv2"
 LIC_FILES_CHKSUM = "file://COPYING.kbd;md5=9b2d91511d3d80d4d20ac6e6b0137fe9"
+DEPENDS = "flex-native bison-native"
 PR = "r8"
 
 SRC_URI = "${SOURCEFORGE_MIRROR}/lct/console-tools-${PV}.tar.gz \
-- 
2.11.1



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

* [PATCH 4/6] ovmf: set PARALLEL_MAKE for target as well
  2018-06-21 21:07 [PATCH 0/6] A few misc fixes from meta-mentor-staging Christopher Larson
                   ` (2 preceding siblings ...)
  2018-06-21 21:07 ` [PATCH 3/6] console-tools: add missing flex/bison deps Christopher Larson
@ 2018-06-21 21:07 ` Christopher Larson
  2018-06-21 21:07 ` [PATCH 5/6] dmidecode: correct docdir Christopher Larson
  2018-06-21 21:07 ` [PATCH 6/6] perf: drop the rdep on man Christopher Larson
  5 siblings, 0 replies; 11+ messages in thread
From: Christopher Larson @ 2018-06-21 21:07 UTC (permalink / raw)
  To: openembedded-core; +Cc: Christopher Larson

From: Christopher Larson <chris_larson@mentor.com>

This can fail for target, not just native.

Signed-off-by: Christopher Larson <chris_larson@mentor.com>
---
 meta/recipes-core/ovmf/ovmf_git.bb | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/meta/recipes-core/ovmf/ovmf_git.bb b/meta/recipes-core/ovmf/ovmf_git.bb
index 212530acbf9..e57fa097274 100644
--- a/meta/recipes-core/ovmf/ovmf_git.bb
+++ b/meta/recipes-core/ovmf/ovmf_git.bb
@@ -39,7 +39,7 @@ SRC_URI[openssl.sha256sum] = "57be8618979d80c910728cfc99369bf97b2a1abd8f366ab6eb
 
 inherit deploy
 
-PARALLEL_MAKE_class-native = ""
+PARALLEL_MAKE = ""
 
 S = "${WORKDIR}/git"
 
-- 
2.11.1



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

* [PATCH 5/6] dmidecode: correct docdir
  2018-06-21 21:07 [PATCH 0/6] A few misc fixes from meta-mentor-staging Christopher Larson
                   ` (3 preceding siblings ...)
  2018-06-21 21:07 ` [PATCH 4/6] ovmf: set PARALLEL_MAKE for target as well Christopher Larson
@ 2018-06-21 21:07 ` Christopher Larson
  2018-06-21 21:07 ` [PATCH 6/6] perf: drop the rdep on man Christopher Larson
  5 siblings, 0 replies; 11+ messages in thread
From: Christopher Larson @ 2018-06-21 21:07 UTC (permalink / raw)
  To: openembedded-core; +Cc: Christopher Larson

From: Christopher Larson <chris_larson@mentor.com>

Without this, the package clutters up the root of /usr/share/doc.

Signed-off-by: Christopher Larson <chris_larson@mentor.com>
---
 meta/recipes-devtools/dmidecode/dmidecode_3.1.bb | 4 ++++
 1 file changed, 4 insertions(+)

diff --git a/meta/recipes-devtools/dmidecode/dmidecode_3.1.bb b/meta/recipes-devtools/dmidecode/dmidecode_3.1.bb
index f83281e2359..b423fda6d24 100644
--- a/meta/recipes-devtools/dmidecode/dmidecode_3.1.bb
+++ b/meta/recipes-devtools/dmidecode/dmidecode_3.1.bb
@@ -9,6 +9,10 @@ COMPATIBLE_HOST = "(i.86|x86_64|aarch64|arm|powerpc|powerpc64).*-linux"
 
 EXTRA_OEMAKE = "-e MAKEFLAGS="
 
+# The upstream buildsystem uses 'docdir' as the path where it puts AUTHORS,
+# README, etc, but we don't want those in the root of our docdir.
+docdir .= "/${BPN}"
+
 do_install() {
 	oe_runmake DESTDIR="${D}" install
 }
-- 
2.11.1



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

* [PATCH 6/6] perf: drop the rdep on man
  2018-06-21 21:07 [PATCH 0/6] A few misc fixes from meta-mentor-staging Christopher Larson
                   ` (4 preceding siblings ...)
  2018-06-21 21:07 ` [PATCH 5/6] dmidecode: correct docdir Christopher Larson
@ 2018-06-21 21:07 ` Christopher Larson
  2018-06-22  7:36   ` Richard Purdie
  5 siblings, 1 reply; 11+ messages in thread
From: Christopher Larson @ 2018-06-21 21:07 UTC (permalink / raw)
  To: openembedded-core; +Cc: Christopher Larson

From: Christopher Larson <chris_larson@mentor.com>

It's not common practice to make -doc rdep on man when man pages are
included, and doing so prevents the recipe from building for non-gplv3

Signed-off-by: Christopher Larson <chris_larson@mentor.com>
---
 meta/recipes-kernel/perf/perf.bb | 1 -
 1 file changed, 1 deletion(-)

diff --git a/meta/recipes-kernel/perf/perf.bb b/meta/recipes-kernel/perf/perf.bb
index 51f5597eb92..5e710f61834 100644
--- a/meta/recipes-kernel/perf/perf.bb
+++ b/meta/recipes-kernel/perf/perf.bb
@@ -239,7 +239,6 @@ PACKAGE_ARCH = "${MACHINE_ARCH}"
 PACKAGES =+ "${PN}-archive ${PN}-tests ${PN}-perl ${PN}-python"
 
 RDEPENDS_${PN} += "elfutils bash"
-RDEPENDS_${PN}-doc += "man"
 RDEPENDS_${PN}-archive =+ "bash"
 RDEPENDS_${PN}-python =+ "bash python python-modules ${@bb.utils.contains('PACKAGECONFIG', 'audit', 'audit-python', '', d)}"
 RDEPENDS_${PN}-perl =+ "bash perl perl-modules"
-- 
2.11.1



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

* Re: [PATCH 6/6] perf: drop the rdep on man
  2018-06-21 21:07 ` [PATCH 6/6] perf: drop the rdep on man Christopher Larson
@ 2018-06-22  7:36   ` Richard Purdie
  2018-06-22 15:07     ` Christopher Larson
  0 siblings, 1 reply; 11+ messages in thread
From: Richard Purdie @ 2018-06-22  7:36 UTC (permalink / raw)
  To: Christopher Larson, openembedded-core; +Cc: Christopher Larson

On Fri, 2018-06-22 at 02:07 +0500, Christopher Larson wrote:
> From: Christopher Larson <chris_larson@mentor.com>
> 
> It's not common practice to make -doc rdep on man when man pages are
> included, and doing so prevents the recipe from building for non-
> gplv3
> 
> Signed-off-by: Christopher Larson <chris_larson@mentor.com>
> ---
>  meta/recipes-kernel/perf/perf.bb | 1 -
>  1 file changed, 1 deletion(-)
> 
> diff --git a/meta/recipes-kernel/perf/perf.bb b/meta/recipes-
> kernel/perf/perf.bb
> index 51f5597eb92..5e710f61834 100644
> --- a/meta/recipes-kernel/perf/perf.bb
> +++ b/meta/recipes-kernel/perf/perf.bb
> @@ -239,7 +239,6 @@ PACKAGE_ARCH = "${MACHINE_ARCH}"
>  PACKAGES =+ "${PN}-archive ${PN}-tests ${PN}-perl ${PN}-python"
>  
>  RDEPENDS_${PN} += "elfutils bash"
> -RDEPENDS_${PN}-doc += "man"
>  RDEPENDS_${PN}-archive =+ "bash"
>  RDEPENDS_${PN}-python =+ "bash python python-modules ${@bb.utils.con
> tains('PACKAGECONFIG', 'audit', 'audit-python', '', d)}"
>  RDEPENDS_${PN}-perl =+ "bash perl perl-modules"

We're certainly not consistent but:

http://git.yoctoproject.org/cgit.cgi/poky/tree/meta/classes/manpages.bbclass#n13

RDEPENDS_${MAN_PKG} += "${@bb.utils.contains('PACKAGECONFIG', 'manpages', 'man-db', '', d)}"

man-db is gplv2 too...

Cheers,

Richard




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

* Re: [PATCH 6/6] perf: drop the rdep on man
  2018-06-22  7:36   ` Richard Purdie
@ 2018-06-22 15:07     ` Christopher Larson
  0 siblings, 0 replies; 11+ messages in thread
From: Christopher Larson @ 2018-06-22 15:07 UTC (permalink / raw)
  To: Richard Purdie; +Cc: Patches and discussions about the oe-core layer

[-- Attachment #1: Type: text/plain, Size: 1805 bytes --]

On Fri, Jun 22, 2018 at 12:36 AM Richard Purdie <
richard.purdie@linuxfoundation.org> wrote:

> On Fri, 2018-06-22 at 02:07 +0500, Christopher Larson wrote:
> > From: Christopher Larson <chris_larson@mentor.com>
> >
> > It's not common practice to make -doc rdep on man when man pages are
> > included, and doing so prevents the recipe from building for non-
> > gplv3
> >
> > Signed-off-by: Christopher Larson <chris_larson@mentor.com>
> > ---
> >  meta/recipes-kernel/perf/perf.bb | 1 -
> >  1 file changed, 1 deletion(-)
> >
> > diff --git a/meta/recipes-kernel/perf/perf.bb b/meta/recipes-
> > kernel/perf/perf.bb
> > index 51f5597eb92..5e710f61834 100644
> > --- a/meta/recipes-kernel/perf/perf.bb
> > +++ b/meta/recipes-kernel/perf/perf.bb
> > @@ -239,7 +239,6 @@ PACKAGE_ARCH = "${MACHINE_ARCH}"
> >  PACKAGES =+ "${PN}-archive ${PN}-tests ${PN}-perl ${PN}-python"
> >
> >  RDEPENDS_${PN} += "elfutils bash"
> > -RDEPENDS_${PN}-doc += "man"
> >  RDEPENDS_${PN}-archive =+ "bash"
> >  RDEPENDS_${PN}-python =+ "bash python python-modules ${@bb.utils.con
> > tains('PACKAGECONFIG', 'audit', 'audit-python', '', d)}"
> >  RDEPENDS_${PN}-perl =+ "bash perl perl-modules"
>
> We're certainly not consistent but:
>
>
> http://git.yoctoproject.org/cgit.cgi/poky/tree/meta/classes/manpages.bbclass#n13
>
> RDEPENDS_${MAN_PKG} += "${@bb.utils.contains('PACKAGECONFIG', 'manpages',
> 'man-db', '', d)}"
>
> man-db is gplv2 too...
>

Ah, well spotted, I didn't know about that one. If that's the case, I'll
drop this patch and rework both it and manpages.bbclass to make the rdep
conditional on license compatibility. Thanks!
-- 
Christopher Larson
kergoth at gmail dot com
Founder - BitBake, OpenEmbedded, OpenZaurus
Senior Software Engineer, Mentor Graphics

[-- Attachment #2: Type: text/html, Size: 3109 bytes --]

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

* Re: [PATCH 1/6] oe.scriptutils.run_editor: ditch the error-prone argument quoting
  2018-06-21 21:07 ` [PATCH 1/6] oe.scriptutils.run_editor: ditch the error-prone argument quoting Christopher Larson
@ 2018-06-27 12:52   ` Richard Purdie
  2018-06-27 15:24     ` Christopher Larson
  0 siblings, 1 reply; 11+ messages in thread
From: Richard Purdie @ 2018-06-27 12:52 UTC (permalink / raw)
  To: Christopher Larson, openembedded-core; +Cc: Christopher Larson

On Fri, 2018-06-22 at 02:07 +0500, Christopher Larson wrote:
> From: Christopher Larson <chris_larson@mentor.com>
> 
> Rather than trying to construct a string by quoting the files in an
> error-prone way, parse $EDITOR to pass a list to subprocess rather
> than
> a string.
> 
> Signed-off-by: Christopher Larson <chris_larson@mentor.com>
> ---
>  scripts/lib/scriptutils.py | 24 ++++++++++++------------
>  1 file changed, 12 insertions(+), 12 deletions(-)
> 
> diff --git a/scripts/lib/scriptutils.py b/scripts/lib/scriptutils.py
> index 85b1c949bf5..470f76995f0 100644
> --- a/scripts/lib/scriptutils.py
> +++ b/scripts/lib/scriptutils.py
> @@ -214,15 +215,14 @@ def fetch_url(tinfoil, srcuri, srcrev, destdir,
> logger, preserve_tmp=False, mirr
>  
>  def run_editor(fn, logger=None):
>      if isinstance(fn, str):
> -        params = '"%s"' % fn
> +        files = [fn]
>      else:
> -        params = ''
> -        for fnitem in fn:
> -            params += ' "%s"' % fnitem
> +        files = fn
>  
>      editor = os.getenv('VISUAL', os.getenv('EDITOR', 'vi'))
>      try:
> -        return subprocess.check_call('%s %s' % (editor, params), shell=True)
> +        print(shlex.split(editor) + files)
> +        return subprocess.check_call(shlex.split(editor) + files)
>      except subprocess.CalledProcessError as exc:
>          logger.error("Execution of '%s' failed: %s" % (editor, exc))
>          return 1

I'm guessing you didn't mean to leave the print() above in?

If the print is there, it breaks:

"oe-selftest -r devtool.DevtoolTests.test_devtool_add"

I can comment it out...

Cheers,

Richard




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

* Re: [PATCH 1/6] oe.scriptutils.run_editor: ditch the error-prone argument quoting
  2018-06-27 12:52   ` Richard Purdie
@ 2018-06-27 15:24     ` Christopher Larson
  0 siblings, 0 replies; 11+ messages in thread
From: Christopher Larson @ 2018-06-27 15:24 UTC (permalink / raw)
  To: Richard Purdie; +Cc: Patches and discussions about the oe-core layer

[-- Attachment #1: Type: text/plain, Size: 2025 bytes --]

On Wed, Jun 27, 2018 at 5:52 AM Richard Purdie <
richard.purdie@linuxfoundation.org> wrote:

> On Fri, 2018-06-22 at 02:07 +0500, Christopher Larson wrote:
> > From: Christopher Larson <chris_larson@mentor.com>
> >
> > Rather than trying to construct a string by quoting the files in an
> > error-prone way, parse $EDITOR to pass a list to subprocess rather
> > than
> > a string.
> >
> > Signed-off-by: Christopher Larson <chris_larson@mentor.com>
> > ---
> >  scripts/lib/scriptutils.py | 24 ++++++++++++------------
> >  1 file changed, 12 insertions(+), 12 deletions(-)
> >
> > diff --git a/scripts/lib/scriptutils.py b/scripts/lib/scriptutils.py
> > index 85b1c949bf5..470f76995f0 100644
> > --- a/scripts/lib/scriptutils.py
> > +++ b/scripts/lib/scriptutils.py
> > @@ -214,15 +215,14 @@ def fetch_url(tinfoil, srcuri, srcrev, destdir,
> > logger, preserve_tmp=False, mirr
> >
> >  def run_editor(fn, logger=None):
> >      if isinstance(fn, str):
> > -        params = '"%s"' % fn
> > +        files = [fn]
> >      else:
> > -        params = ''
> > -        for fnitem in fn:
> > -            params += ' "%s"' % fnitem
> > +        files = fn
> >
> >      editor = os.getenv('VISUAL', os.getenv('EDITOR', 'vi'))
> >      try:
> > -        return subprocess.check_call('%s %s' % (editor, params),
> shell=True)
> > +        print(shlex.split(editor) + files)
> > +        return subprocess.check_call(shlex.split(editor) + files)
> >      except subprocess.CalledProcessError as exc:
> >          logger.error("Execution of '%s' failed: %s" % (editor, exc))
> >          return 1
>
> I'm guessing you didn't mean to leave the print() above in?
>
> If the print is there, it breaks:
>
> "oe-selftest -r devtool.DevtoolTests.test_devtool_add"
>
> I can comment it out...
>

Yeah, that was a debug remnant, sorry about that. :\
-- 
Christopher Larson
kergoth at gmail dot com
Founder - BitBake, OpenEmbedded, OpenZaurus
Senior Software Engineer, Mentor Graphics

[-- Attachment #2: Type: text/html, Size: 2987 bytes --]

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

end of thread, other threads:[~2018-06-27 15:24 UTC | newest]

Thread overview: 11+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2018-06-21 21:07 [PATCH 0/6] A few misc fixes from meta-mentor-staging Christopher Larson
2018-06-21 21:07 ` [PATCH 1/6] oe.scriptutils.run_editor: ditch the error-prone argument quoting Christopher Larson
2018-06-27 12:52   ` Richard Purdie
2018-06-27 15:24     ` Christopher Larson
2018-06-21 21:07 ` [PATCH 2/6] pcmciautils: depend on bison-native Christopher Larson
2018-06-21 21:07 ` [PATCH 3/6] console-tools: add missing flex/bison deps Christopher Larson
2018-06-21 21:07 ` [PATCH 4/6] ovmf: set PARALLEL_MAKE for target as well Christopher Larson
2018-06-21 21:07 ` [PATCH 5/6] dmidecode: correct docdir Christopher Larson
2018-06-21 21:07 ` [PATCH 6/6] perf: drop the rdep on man Christopher Larson
2018-06-22  7:36   ` Richard Purdie
2018-06-22 15:07     ` Christopher Larson

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.