Re: [OE-core] [PATCH 1/1] Use weak assignment for SERIAL_CONSOLES in qemu configuration files

2016-12-11 Thread ChenQi
On 12/09/2016 03:55 PM, Robert P. J. Day wrote: On Fri, 9 Dec 2016, Chen Qi wrote: Use weak assignment for SERIAL_CONSOLES in qemu configuration files so that the value could serve as a default value and could be easily overridden in configuration files like local.conf. When using the default

Re: [OE-core] [PATCH] glibc: add -fno-builtin-strlen when not using -O2

2016-12-11 Thread Huang, Jie (Jackie)
> -Original Message- > From: Khem Raj [mailto:raj.k...@gmail.com] > Sent: Monday, December 12, 2016 2:37 PM > To: Huang, Jie (Jackie) > Cc: Patches and discussions about the oe-core layer > Subject: Re: [OE-core] [PATCH] glibc: add -fno-builtin-strlen when not using > -O2 > > On Sun,

Re: [OE-core] [PATCH] xkeyboard-config: 2.18 -> 2.19

2016-12-11 Thread Khem Raj
> On Dec 7, 2016, at 3:20 AM, Jussi Kukkonen wrote: > > Since you're already resending: please set "diff.renames" in your git > configuration to get smaller diffs. > Example from my ~/.gitconfig: > > [diff] > renames = true if you want to do this, then its

Re: [OE-core] [PATCH] libpcap: Disable exposed bits of WinPCAP remote capture support

2016-12-11 Thread Lei, Maohui
Hi all I met the same issue when I build wireshark comes from meta-oe. Why this patch hasn't been merged yet? Best regards Lei > -Original Message- > From: openembedded-core-boun...@lists.openembedded.org [mailto:openembedded- > core-boun...@lists.openembedded.org] On Behalf Of Fabio

Re: [OE-core] [PATCH] glibc: add -fno-builtin-strlen when not using -O2

2016-12-11 Thread Khem Raj
On Sun, Dec 11, 2016 at 9:42 PM, wrote: > From: Jackie Huang > > The strlen will be inlined when compile with -O, -O1 or -Os, > so there is no symbol for strlen in ld-linux-x86-64.so.2, > causing a fatal error in valgrind: > > valgrind:

[OE-core] [PATCH 1/2] ltp: avoid segmentation fault in netns tests

2016-12-11 Thread jackie.huang
From: Jackie Huang * backport a patch to avoid segmentation fault in netns tests. * rename previous patch to have ordered prefix number. Signed-off-by: Jackie Huang --- ...twork-nfsv4-acl-acl1.c-Security-fix-on-s.patch} | 0

[OE-core] [PATCH 2/2] ltp/posix: replace CWD with PWD

2016-12-11 Thread jackie.huang
From: Jackie Huang Backport a patch to replace CWD with PWD to avoid error messages in test results: basename: missing operand Try 'basename --help' for more information. Signed-off-by: Jackie Huang ---

[OE-core] [PATCH 0/2] ltp/posix: backport two patches to fix some tests

2016-12-11 Thread jackie.huang
From: Jackie Huang -- The following changes since commit dae00fbb913c24b6bab00d5b99bd61f3455b4728: sdk-manual: Added note about nullpointer error for launch eclipse (2016-12-08 16:36:40 +) are available in the git repository at:

[OE-core] [PATCH] glibc: add -fno-builtin-strlen when not using -O2

2016-12-11 Thread jackie.huang
From: Jackie Huang The strlen will be inlined when compile with -O, -O1 or -Os, so there is no symbol for strlen in ld-linux-x86-64.so.2, causing a fatal error in valgrind: valgrind: Fatal error at startup: a function redirection valgrind: which is mandatory for this

[OE-core] [PATCH v2] gcr: add missing dependencies for vapi

2016-12-11 Thread jackie.huang
From: Jackie Huang According to the vapi_DEPS definition: gcr-3.vapi depends on gck-1.vapi, gcr-ui-3.vapi depends on gck-1.vapi and gcr-3.vapi But these dependencies are missing for the make targets, so it will fail when build in parallel: error: Package `gck-1' not

Re: [OE-core] [PATCH V2 5/6] runqemu: fixes for slirp, network device and hostfwd

2016-12-11 Thread Robert Yang
On 12/08/2016 01:58 AM, Randy Witt wrote: def setup_slirp(self): """Setup user networking""" if self.fstype == 'nfs': self.setup_nfs() self.kernel_cmdline_script += ' ip=dhcp' -self.set('NETWORK_CMD', self.get('QB_SLIRP_OPT')) +#

Re: [OE-core] [PATCH] gcr: add missing dependencies for vapi

2016-12-11 Thread Huang, Jie (Jackie)
Yes, I will re-send the patch. Thanks, Jackie From: Burton, Ross [mailto:ross.bur...@intel.com] Sent: Saturday, December 10, 2016 6:43 PM To: Huang, Jie (Jackie) Cc: OE-core Subject: Re: [OE-core] [PATCH] gcr: add missing dependencies for vapi On 10 December 2016 at 02:56,

[OE-core] [PATCH] fontconfig: Fix namespace conflicts with glibc

2016-12-11 Thread Khem Raj
glibc 2.25 will come with TS 18661-1 macro definitions in limits.h which ends with following errors | ../../fontconfig-2.12.1/src/fcmatch.c:324:63: error: 'PRI_CHAR_WIDTH_STRONG' undeclared here (not in a function) | #define FC_OBJECT(NAME, Type, Cmp) { FC_##NAME##_OBJECT, Cmp,

[OE-core] [PATCH 1/1] multilib.bbclass: fix faulty redefinition of STAGING_KERNEL_DIR

2016-12-11 Thread Petter Mabäcker
Due to the problem fixed in '56c677a multilib: Move redefinition of STAGING_DIR_KERNEL' STAGING_KERNEL_DIR must be redefined for lib32 in multilib.bbclass. However this redefinition expanded STAGING_KERNEL_DIR to an absolute path. This unconsciously added the TMPDIR path in the sstate object,

[OE-core] [PATCH 0/1] multilib.bbclass: fix faulty redefinition of STAGING_KERNEL_DIR

2016-12-11 Thread Petter Mabäcker
The following changes since commit 36e178a62f04e7f2611b26964efe46b9af97189a: linux-yocto: Update genericx86* SRCREVs for linux-yocto 4.8 (2016-12-09 08:54:07 +) are available in the git repository at: git://git.yoctoproject.org/poky-contrib petmab/staging_dir_kernel_fix