Re: [OE-core] [PATCH v1] wic: Add --exclude-path option to rootfs source plugin.

2016-11-27 Thread Kristian Amlie
On 25/11/16 17:31, Ed Bartosh wrote: > On Fri, Nov 25, 2016 at 01:07:34PM +0100, Kristian Amlie wrote: >> On 25/11/16 11:33, Patrick Ohly wrote: >>> On Fri, 2016-11-25 at 11:15 +0100, Kristian Amlie wrote: +if os.stat(real_rootfs_dir).st_dev == os.stat(cr_workdir).st_dev:

Re: [OE-core] [PATCH v1] wic: Add --exclude-path option to rootfs source plugin.

2016-11-27 Thread Kristian Amlie
On 25/11/16 17:33, Ed Bartosh wrote: > On Fri, Nov 25, 2016 at 01:35:53PM +0100, Kristian Amlie wrote: >> On 25/11/16 13:28, Maciej Borzęcki wrote: >>> On Fri, Nov 25, 2016 at 11:15 AM, Kristian Amlie +# Disallow '..', because doing so could be quite disastrous +

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

2016-11-27 Thread Marek Vasut
On 11/18/2016 09:24 PM, Tom Rini wrote: > On Fri, Nov 18, 2016 at 08:29:55PM +0100, Marek Vasut wrote: > >> Upgrade U-Boot to the latest version. >> >> Signed-off-by: Marek Vasut >> Cc: Richard Purdie >> Cc: Denys Dmytriyenko >> Cc: Ross Burton > > Reviewed-by: Tom Rini > Bump, can we get t

[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 | 2 ++ 1 file changed, 2 insertion