[OE-core] Open ISA (RISC-V, OpenPOWER, etc) Miniconf at LCA 2020

2019-11-15 Thread Alistair Francis
Hi All, We’re pleased to announce the first Open ISA miniconf at linux.conf.au Open Instruction Set Architectures like RISC-V, OpenPOWER and others are the next step in the evolution of Open Hardware. The mini-conference will commence with a brief overview of Open ISAs in general. It will then

Re: [OE-core] [PATCH RESEND] staging.bbclass: Fix wrong library path in sysroot_strip

2019-11-15 Thread Richard Purdie
On Fri, 2019-11-15 at 18:45 +0800, Junling Zheng wrote: > Do not reset libdir and base_libdir in sysroot_strip, and just pass > crude > paths as they will be reset later in strip_execs. > > Signed-off-by: Junling Zheng > --- > meta/classes/staging.bbclass | 2 -- > 1 file changed, 2 deletions(-)

Re: [OE-core] [PATCH] bind: Whitelist CVE-2019-6470

2019-11-15 Thread Adrian Bunk
On Thu, Nov 14, 2019 at 07:18:28AM -0800, akuster808 wrote: > > > On 11/14/19 4:51 AM, Adrian Bunk wrote: > > On Thu, Nov 14, 2019 at 12:04:40PM +, Ross Burton wrote: > >> On 13/11/2019 08:19, Adrian Bunk wrote: > >>> +# Affects: Builds of dhcpd versions prior to version 4.4.1 when using > >

[OE-core] [PATCH] base-files: set ptmxmode to 666

2019-11-15 Thread Stefan Agner
From: Stefan Agner Make sure that the (newer) /dev/pts/ptmx is accessible by users. This is useful e.g. when running containers which symlink /dev/ptmx to /dev/pts/ptmx on start. The default mode (000) does not allow to create ptys inside the container. Using 666 when symlinking /dev/ptmx is als

Re: [OE-core] [PATCH] make-mod-scripts:remove make-mod-scripts from RDEPENDS

2019-11-15 Thread Ross Burton
On 15/11/2019 05:16, Zang Ruochen wrote: +RDEPENDS_make-mod-scripts-dev_remove = "make-mod-scripts (= 1.0-r0)" You're hardcoding PV-PR there, don't do that. Easier is probably to just set RDEPENDS_${PN}-dev = "" if the package doesn't have any other dependencies. Ross -- ___

[OE-core] [PATCH v2] cdrtools-native: Don't set uid/gid during install

2019-11-15 Thread Paul Barker
This is a native recipe so won't be installed as root. If the string 'root' is part of the username then the install script can get tricked into thinking we are root (regardless of the actual uid or permissions) resulting in attempts to run chown/chgrp inappropriately. Signed-off-by: Paul Barker

Re: [OE-core] [PATCH 2/2] wic: rm with -r flag support

2019-11-15 Thread Richard Purdie
On Fri, 2019-11-15 at 11:47 +, Richard Purdie wrote: > On Fri, 2019-11-15 at 09:58 +0800, chee.yang@intel.com wrote: > > From: Chee Yang Lee > > > > wic currently unable to remove non-empty directory in ext* > > partition. > > enable wic rm to remove non-empty directory and all the sub-co

Re: [OE-core] [PATCH 2/2] wic: rm with -r flag support

2019-11-15 Thread Richard Purdie
On Fri, 2019-11-15 at 09:58 +0800, chee.yang@intel.com wrote: > From: Chee Yang Lee > > wic currently unable to remove non-empty directory in ext* partition. > enable wic rm to remove non-empty directory and all the sub-content > with -r flag. > update help documents for 'wic rm'. > [YOCTO #1

[OE-core] [PATCH RESEND] staging.bbclass: Fix wrong library path in sysroot_strip

2019-11-15 Thread Junling Zheng
Do not reset libdir and base_libdir in sysroot_strip, and just pass crude paths as they will be reset later in strip_execs. Signed-off-by: Junling Zheng --- meta/classes/staging.bbclass | 2 -- 1 file changed, 2 deletions(-) diff --git a/meta/classes/staging.bbclass b/meta/classes/staging.bbcla