[OE-core] [PATCH] image-mklibs: handle position independent binaries

2016-03-08 Thread Tyler Hall
such is antithetical to the pupose of mklibs. Signed-off-by: Tyler Hall --- meta/classes/image-mklibs.bbclass | 16 +--- 1 file changed, 9 insertions(+), 7 deletions(-) diff --git a/meta/classes/image-mklibs.bbclass b/meta/classes/image-mklibs.bbclass index 6c0e8dc..5f6df1b 100644

[OE-core] [PATCH] classes/cpan-base: fix libdir for nativesdk

2015-10-27 Thread Tyler Hall
is used elsewhere. Signed-off-by: Tyler Hall --- meta/classes/cpan-base.bbclass | 11 ++- 1 file changed, 2 insertions(+), 9 deletions(-) diff --git a/meta/classes/cpan-base.bbclass b/meta/classes/cpan-base.bbclass index d9817ba..080ce92 100644 --- a/meta/classes/cpan-base.bbclass +++ b

Re: [OE-core] [PATCH v2] uninative-tarball: fix dependency on patchelf

2015-03-25 Thread Tyler Hall
Randy, Richard, Disregard. Looks like we raced with each other. Thanks for applying v1. -Tyler -- ___ Openembedded-core mailing list Openembedded-core@lists.openembedded.org http://lists.openembedded.org/mailman/listinfo/openembedded-core

[OE-core] [PATCH v2] uninative-tarball: fix dependency on patchelf

2015-03-25 Thread Tyler Hall
chelf. [Yocto #7467] Signed-off-by: Tyler Hall Acked-by: Randy Witt CC: Richard Purdie CC: Randy Witt --- meta/recipes-core/meta/uninative-tarball.bb | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/meta/recipes-core/meta/uninative-tarball.bb b/meta/recipes-core/meta/unin

[OE-core] [PATCH] uninative-tarball: fix dependency on patchelf

2015-03-24 Thread Tyler Hall
chelf. Signed-off-by: Tyler Hall CC: Richard Purdie CC: Randy Witt --- meta/recipes-core/meta/uninative-tarball.bb | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/meta/recipes-core/meta/uninative-tarball.bb b/meta/recipes-core/meta/uninative-tarball.bb index 53435f2..62

[OE-core] [PATCH 0/1] Fix TOCTOU issue with sstate mirror

2014-08-09 Thread Tyler Hall
Error:" prefix when scraping the log for this message. Then bitbake's log level can change. Tyler Hall (1): lib/oeqa/selftest: Don't match log level in output meta/lib/oeqa/selftest/bbtests.py | 2 +- 1 file changed, 1 insertion(+), 1 de

[OE-core] [PATCH 1/1] lib/oeqa/selftest: Don't match log level in output

2014-08-09 Thread Tyler Hall
To facilitate changing the log level of the "Fetcher failure" message, search only for the message without the "Error:" prefix. --- meta/lib/oeqa/selftest/bbtests.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meta/lib/oeqa/selftest/bbtests.py b/meta/lib/oeqa/selftest/bbte

[OE-core] [PATCH v2] python3: Substitute correct python version in shebang

2014-05-05 Thread Tyler Hall
If python2 and python3 are both available, scripts that are subject to this substitution can possibly run with the wrong python version. python3-config is one such script. Signed-off-by: Tyler Hall --- v2: Update comment meta/recipes-devtools/python/python3-native_3.3.3.bb | 4 ++-- 1 file

[OE-core] [RFC][PATCH] python3: Revert python-config to distutils.sysconfig

2014-05-04 Thread Tyler Hall
staging directory and for the target, as appropriate. This change reverts this upstream patch http://hg.python.org/cpython/diff/712970b019f7/Misc/python-config.in Signed-off-by: Tyler Hall --- Right now, python3-config returns paths in the native sysroot regardless of whether the recipe is native

[OE-core] [PATCH] python3: Substitute correct python version in shebang

2014-05-04 Thread Tyler Hall
If python2 and python3 are both available, scripts that are subject to this substitution can possibly run with the wrong python version. python3-config is one such script. Signed-off-by: Tyler Hall --- meta/recipes-devtools/python/python3-native_3.3.3.bb | 2 +- 1 file changed, 1 insertion

Re: [OE-core] Quick question about OE-core/bitbake's re-building

2014-05-04 Thread Tyler Hall
On Sun, May 4, 2014 at 4:53 PM, Joel Fernandes wrote: > How does it figure out when it needs to rebuild a package? > Bitbake generates hashes for every task that are based on the data that will be used when running the task. This includes the body of the task function, any variables it reference

[OE-core] [PATCH] db: Fix libtool linking against local libstdc++.so

2014-01-24 Thread Tyler Hall
the sysroot from the compiler. Signed-off-by: Tyler Hall --- meta/recipes-support/db/db_5.3.21.bb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meta/recipes-support/db/db_5.3.21.bb b/meta/recipes-support/db/db_5.3.21.bb index 8ec8870..caf6890 100644 --- a/meta/recipes-support

Re: [OE-core] [PATCH] cpan-base: Don't use immediate expansion

2013-08-06 Thread Tyler Hall
On Mon, Aug 5, 2013 at 5:19 PM, Saul Wold wrote: > I could not replicate this, can you provide more details about how you > setup the failure, was it from a clean sstate? > It was with clean sstate, but I can switch between libxml-sax-perl task hashes with a regular clean or setscene of perl. I

[OE-core] [PATCH] cpan-base: Don't use immediate expansion

2013-08-05 Thread Tyler Hall
: Bitbake's cached basehash does not match the one we just generated (/bonus/scratch/tylerh/oe-core/meta/recipes-extended/perl/libxml-sax-perl_0.99.bb.do_package)! Signed-off-by: Tyler Hall --- meta/classes/cpan-base.bbclass | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meta/cl

[OE-core] [RFC PATCH] terminal: Run command using a wrapper script

2013-06-30 Thread Tyler Hall
ve full control over the final environment. Replace the env dictionary with an empty data smart that will contain the exported variables and a wrapper function that execs the original command. Signed-off-by: Tyler Hall --- Currently the devshell command fails when run from tmux, because tmux doesn&#x

[OE-core] [PATCH] TmuxRunning: handle multi-word commands

2013-06-30 Thread Tyler Hall
From: Tyler Hall Just as in f8ed7446755eeb88191e16749350efa1e7e6197c, tmux wants a single argument for its command. This applies to the "split-window" command as well as "new." Note that this alone is not enough to fix the TmuxRunning devshell when using pseudo because tm