Re: [OE-core] [PATCH] lrzsz: remove

2017-12-08 Thread Bill Randle
On Fri, Dec 8, 2017 at 9:46 AM, Richard Purdie wrote: > On Fri, 2017-12-08 at 17:05 +, Burton, Ross wrote: >> I've had people from the past > > What are you suggesting? ;-) > >> suggest that this is still useful for deeply embedded environments >> where a

Re: [OE-core] [PATCH] u-boot: Update to v2016.11 release

2016-12-05 Thread Bill Randle
On Fri, Nov 18, 2016 at 11:29 AM, Marek Vasut wrote: > Upgrade U-Boot to the latest version. > > Signed-off-by: Marek Vasut > Cc: Richard Purdie > Cc: Denys Dmytriyenko > Cc: Ross Burton

Re: [OE-core] [PATCH] perl: correct the path of perl used by ptest

2016-08-31 Thread Bill Randle
Under what conditions is the explicit path to /usr/bin/perl required? Just before your added code, it creates a symlink from the installed perl location to the "t" directory where the tests are run. What if the perl that was built was an alternate version and installed in /usr/local/bin?

[OE-core] [PATCH] testimage: allow using kvm when running qemux86* machines

2016-08-16 Thread Bill Randle
Using kvm can provide significant speedups when running qemux86* machines on an x86* host. Enabled by using the new QEMU_USE_KVM variable. [YOCTO #9298] Signed-off-by: Bill Randle <william.c.ran...@intel.com> --- meta/lib/oeqa/targetcontrol.py| 7 +++ meta/lib/oeqa/utils/qemurun

[OE-core] [PATCH] keep platform_extra and default_platform_extra lists ordered

2016-06-27 Thread Bill Randle
operators. [YOCTO #9717] Signed-off-by: Bill Randle <william.c.ran...@intel.com> --- meta/lib/oe/package_manager.py | 13 +++-- 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/meta/lib/oe/package_manager.py b/meta/lib/oe/package_manager.py index 717246d..2004a42

[OE-core] [PATCH 2/3] perl: some perl tests require libssp

2016-06-04 Thread Bill Randle
Add libssp to the list of dependencies when building with perl-ptest as some tests require it. [YOCTO #8656] Signed-off-by: Bill Randle <william.c.ran...@intel.com> --- meta/recipes-devtools/perl/perl-ptest.inc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meta/r

[OE-core] [PATCH 1/3] perl: set proper perl subversion number in config files

2016-06-04 Thread Bill Randle
] Signed-off-by: Bill Randle <william.c.ran...@intel.com> --- meta/recipes-devtools/perl/perl/config.sh | 10 +- meta/recipes-devtools/perl/perl/perl-configure.sh | 2 +- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/meta/recipes-devtools/perl/perl/config

[OE-core] [PATCH 0/3] perl: fix perl-ptest failures

2016-06-04 Thread Bill Randle
Perl-ptest reports several failures when run. These occur when Perl is cross-compiled and run on a target machine. [YOCTO #8656] Bill Randle (3): perl: set proper perl subversion number in config files perl: some perl tests require libssp perl: fix several perl test failures meta/recipes

[OE-core] [PATCH 3/3] perl: fix several perl test failures

2016-06-04 Thread Bill Randle
] Signed-off-by: Bill Randle <william.c.ran...@intel.com> --- ...erl-fix-conflict-between-skip_all-and-END.patch | 181 + .../perl/perl/perl-test-customized.patch | 61 +++ meta/recipes-devtools/perl/perl_5.22.1.bb | 2 + 3 files changed, 244 inse

[OE-core] [PATCH] systemd: use OE core paths under /var/volatile for /var/tmp and /var/log

2016-04-15 Thread Bill Randle
. [YOCTO #9424] Signed-off-by: Bill Randle <william.c.ran...@intel.com> --- .../systemd/systemd/00-create-volatile.conf| 10 ++-- ...use-OE-core-paths-for-var-tmp-and-var-log.patch | 53 ++ meta/recipes-core/systemd/systemd_229.bb | 1 + 3 files chang

[OE-core] [PATCH] ext-sdk-prepare.py: exclude do_rm_work from unexpected output; create unit test

2016-04-13 Thread Bill Randle
fy the fix. The unit test can be run direct from the command line or via oe-selftest. [YOCTO #9019] Signed-off-by: Bill Randle <william.c.ran...@intel.com> --- meta/files/ext-sdk-prepare.py | 27 +++- meta/lib/oeqa/selftest/esdk_prepare.py | 75 ++

[OE-core] [PATCH 2/2] image.bbclass: add DEB_{PRE, POST}PROCESS_COMMANDS to rootfs_command_variables list

2016-04-12 Thread Bill Randle
commands may removed entirely in Yocto 2.2 or later. Signed-off-by: Bill Randle <william.c.ran...@intel.com> --- meta/classes/image.bbclass | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meta/classes/image.bbclass b/meta/classes/image.bbclass index ea77ab8..4421acb

[OE-core] [PATCH 1/2] rootfs.py: apply ROOTFS_POSTINSTALL_COMMAND to all package formats

2016-04-12 Thread Bill Randle
Previously, ROOTFS_POSTINSTALL_COMMAND was run only after the opkg rootfs install post processing phase. This patch makes it generic so it is run fter any package manager specific rootfs post processing, but before _run_intercepts(). [YOCTO #9248] Signed-off-by: Bill Randle <william.c.

[OE-core] [PATCH 0/2] rootfs post processing cleanup

2016-04-12 Thread Bill Randle
Bill Randle (2): rootfs.py: apply ROOTFS_POSTINSTALL_COMMAND to all package formats image.bbclass: add DEB_{PRE,POST}_PROCESS_COMMANDS to rootfs_command_variables list meta/classes/image.bbclass | 2 +- meta/lib/oe/rootfs.py | 5 +++-- 2 files changed, 4 insertions(+), 3 deletions

[OE-core] [PATCH] package.bbclass: handle links in sorted order

2016-04-12 Thread Bill Randle
order of the destination. [YOCTO #9430] Signed-off-by: Bill Randle <william.c.ran...@intel.com> --- meta/classes/package.bbclass | 19 ++- 1 file changed, 10 insertions(+), 9 deletions(-) diff --git a/meta/classes/package.bbclass b/meta/classes/package.bbclass index 4452e2f..89

[OE-core] [PATCHv2] bdwgc: use github repo for source location

2016-04-04 Thread Bill Randle
The Yocto Autobuilder has been unable to fetch the release package from the developer's website at www.hboehm.info, so change recipe to fetch from the developer's github repo instead. Signed-off-by: Bill Randle <william.c.ran...@intel.com> --- v2: diff against latest master meta/r

[OE-core] [PATCH] bdwgc: use github repo for source location

2016-04-04 Thread Bill Randle
The Yocto Autobuilder has been unable to fetch the release package from the developer's website at www.hboehm.info, so change recipe to fetch from the developer's github repo instead. Signed-off-by: Bill Randle <william.c.ran...@intel.com> --- meta/recipes-support/bdwgc/bdwgc_7.4.2.

[OE-core] [PATCHv2] insane.bbclass: avoid false positives on library location

2016-04-01 Thread Bill Randle
-by: Bill Randle <william.c.ran...@intel.com> --- meta/classes/insane.bbclass | 19 +-- 1 file changed, 17 insertions(+), 2 deletions(-) diff --git a/meta/classes/insane.bbclass b/meta/classes/insane.bbclass index 7ac945d..c57b217 100644 --- a/meta/classes/insane.bbclass +++

[OE-core] [PATCH] man: use BUILD_CC and target include files for configure

2016-03-30 Thread Bill Randle
The configure script was using the cross-compiler for feature tests, which fails to execute when the target is different than the host. Change the script to use the build compiler instead, but use the target include files to check for the target features. [YOCTO #9359] Signed-off-by: Bill Randle

[OE-core] [PATCHv4] man: fix several annoying compile/build warnings

2016-03-30 Thread Bill Randle
other files. [YOCTO #9341] Signed-off-by: Bill Randle <william.c.ran...@intel.com> --- [Note: should be applied after previous man patch "fix src/Makefile to work with parallel make".] v4: redo patch to src/gripes.c .../man/man/man-1.5m2-tv_fhs.patch | 31 -

[OE-core] [PATCHv3] man: fix several annoying compile/build warnings

2016-03-29 Thread Bill Randle
other files. [YOCTO #9341] Signed-off-by: Bill Randle <william.c.ran...@intel.com> --- [Note: should be applied after previous man patch "fix src/Makefile to work with parallel make".] v3: clean up patch submission for mailing list .../man/man/man-1.5m2-tv_fhs.patch

[OE-core] [PATCHv3] man: fix src/Makefile to work with parallel make

2016-03-29 Thread Bill Randle
] Signed-off-by: Bill Randle <william.c.ran...@intel.com> --- v3: clean up patch submission for mailing list .../man/man/man-1.6g-parallel.patch| 30 ++ meta/recipes-extended/man/man_1.6g.bb | 1 + 2 files changed, 31 insertions(+) creat

[OE-core] [PATCHv2] fix several annoying compile/build warnings

2016-03-29 Thread Bill Randle
r parallel builds. Drop a FHS patch that is no longer needed, as the standard Makefile puts the man pages in the proper location. Also, fix compile warnings in a couple other files. [YOCTO #9341] Signed-off-by: Bill Randle <william.c.ran...@intel.com> --- .../man/man/man-1.5m2-tv_fhs.patch

[OE-core] [PATCHv2] fix src/Makefile to work with parallel make

2016-03-29 Thread Bill Randle
. This patch forces the rule to be run only once. [YOCTO #9333] Signed-off-by: Bill Randle <william.c.ran...@intel.com> --- .../man/man/man-1.6g-parallel.patch| 30 ++ meta/recipes-extended/man/man_1.6g.bb | 1 + 2 files changed, 31 inse

[OE-core] [PATCH] man: fix several annoying compile/build warnings

2016-03-29 Thread Bill Randle
other files. [YOCTO #9341] Signed-off-by: Bill Randle <william.c.ran...@intel.com> --- .../man/man/man-1.5m2-tv_fhs.patch | 31 --- .../man/man/man-1.6g-compile-warnings.patch| 96 ++ meta/recipes-extended/man/man_1.6g.bb | 2 +- 3

[OE-core] [PATCH] man: fix src/Makefile to work with parallel make

2016-03-28 Thread Bill Randle
] Signed-off-by: Bill Randle <william.c.ran...@intel.com> --- .../recipes-extended/man/man/man-1.6g-parallel.patch | 20 meta/recipes-extended/man/man_1.6g.bb| 1 + 2 files changed, 21 insertions(+) create mode 100644 meta/recipes-extended/man/man/ma

[OE-core] [PATCH] insane.bbclass: tighten lib_re and exec_re patterns to avoid false positive

2016-03-23 Thread Bill Randle
lib_re would match files like "/libsoletta.so.0.0.1-gdb.py" which are not valid library filenames. Tighten up the re for lib_re and exec_re so they match only valid sonames (.so or .so followed by major version and optional minor version and release). [YOCTO #9215] Signed-off-by: B

[OE-core] [PATCH] sanity.bbclass: check host tool dependencies on change in NATIVELBSSTRING

2016-03-22 Thread Bill Randle
dependencies. Store the NATIVELBSSTRING in the sanity_info file. [YOCTO #8585] Signed-off-by: Bill Randle <william.c.ran...@intel.com> --- meta/classes/sanity.bbclass | 13 ++--- 1 file changed, 10 insertions(+), 3 deletions(-) diff --git a/meta/classes/sanity.bbclass b/meta/c

[OE-core] [jethro][PATCH] systemd: fix segfault on shutdown

2016-03-21 Thread Bill Randle
This applies upstream fixes to fix a segfault in systemd-logind on shutdown. [Fixes YOCTO #9265] Signed-off-by: Bill Randle <william.c.ran...@intel.com> --- .../0023-backported-fixes-for-null-messages.patch | 101 + meta/recipes-core/systemd/systemd_225.bb

[OE-core] [PATCH] sanity.bbclass cleanup

2016-03-21 Thread Bill Randle
successful config file update are to the bblayers.conf file. Replace a stray tab with spaces for consistency. [Fixes YOCTO #9318] Signed-off-by: Bill Randle <william.c.ran...@intel.com> --- meta/classes/sanity.bbclass | 9 ++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git

[OE-core] [PATCH v3] grub: add -Wno-error=trampolines to native CFLAGS

2016-03-18 Thread Bill Randle
(Resend as mailer munged previous submission. Also updated comments to indicate problem is not limited to gcc 5.3.0.) Adds -Wno-error=trampolines to native CFLAGS prevent multiple compile errors when using gentoo builf of gcc. [YOCTO #9201] Signed-off-by: Bill Randle <william.c.ran...@intel.