Re: [OE-core] Recipe for Linux page-types tool

2018-03-15 Thread Martin Vuille
On 03/15/18 06:49, Alexander Kanavin wrote: On 03/15/2018 12:20 AM, Martin Vuille wrote: page-types is a simple Linux kernel debugging tool to list information about the state of virtual memory (VM) pages. The source is distributed as part of the kernel tree: tools/vm/page-types.c MV On 03

Re: [OE-core] Recipe for Linux page-types tool

2018-03-15 Thread Martin Vuille
On 03/15/18 06:49, Alexander Kanavin wrote: On 03/15/2018 12:20 AM, Martin Vuille wrote: page-types is a simple Linux kernel debugging tool to list information about the state of virtual memory (VM) pages. The source is distributed as part of the kernel tree: tools/vm/page-types.c MV On 03

Re: [OE-core] Recipe for Linux page-types tool

2018-03-14 Thread Martin Vuille
page-types is a simple Linux kernel debugging tool to list information about the state of virtual memory (VM) pages. The source is distributed as part of the kernel tree: tools/vm/page-types.c MV On 03/14/18 11:22, Martin Vuille wrote: I have a recipe for building the page-types Linux kernel

[OE-core] Recipe for Linux page-types tool

2018-03-14 Thread Martin Vuille
I have a recipe for building the page-types Linux kernel VM tool. Is there any interest in this? If so, to what project/layer should I send it? MV -- ___ Openembedded-core mailing list Openembedded-core@lists.openembedded.org http://lists.openembedded.o

[OE-core] [morty][PATCH v2] rpm: fix failure to report file conflicts

2018-03-13 Thread Martin Vuille
Signed-off-by: Martin Vuille --- .../rpm-fix-failure-to-report-file-conflicts.patch | 44 ++ meta/recipes-devtools/rpm/rpm_5.4.16.bb| 1 + 2 files changed, 45 insertions(+) create mode 100644 meta/recipes-devtools/rpm/rpm/rpm-fix-failure-to-report-file

[OE-core] [morty][PATCH] rpm: fix failure to report file conflicts

2018-03-13 Thread Martin Vuille
handleColorConflict in lib/transaction.c). Only treat as a color conflict when both of the conflicting files have a color and they do not both have the same color. Do not handle color conflicts by installing both conflicting files. Signed-off-by: Martin Vuille

[OE-core] [PATCH] terminal.py: Pass string instead of bytes to ExecutionError to avoid exception

2016-11-27 Thread Martin Vuille
Based on run() in bitbake/lib/bb/process.py, ExecutionError() expects strings not bytes. Passing bytes results in a "TypeError: Can't convert 'bytes' object to str implicitly" exception. Fixes Bug 10729 Signed-off-by: Martin Vuille --- meta/lib/oe/terminal.py