Re: [OE-core] Improving Build Speed

2013-11-21 Thread Ulf Samuelsson
Why restrict PARALLEL_MAKE to anything less than the number of H/W threads in the machine? Came up with a construct PARALLEL_HIGH which is defined alongside PARALLEL_MAKE in conf/local.conf PARALLEL_MAKE = -j8 PARALLEL_HIGH = -j24 In the appropriate recipes,

[OE-core] [PATCH] nfs-utils: separate package as Debain style

2013-11-21 Thread Zhang Xiao
Move binaries used for both nfs client and server into client package. Add an init script for client package and move necessary progress from server's init script to this one. Make client package more powerful and let server package depends on client one, as Debain does. Signed-off-by: Zhang Xiao

[OE-core] [PATCH] shadow: remove reference to locale env files from su

2013-11-21 Thread qiang.chen
From: Qiang Chen qiang.c...@windriver.com The /etc/default/locale missing message appears when running su user root@qemu0:/var/log# su root root@qemu0:/var/log# tail auth.log Oct 8 07:47:54 qemu0 login[983]: pam_unix(login:session): session opened for user root by LOGIN(uid=0) Oct 8 07:47:55

Re: [OE-core] Improving Build Speed

2013-11-21 Thread Burton, Ross
On 20 November 2013 21:05, Ulf Samuelsson angstrom-...@emagii.com wrote: do_compile() { if [ x$MAKE = x ]; then MAKE=make; fi ... for error_count in 1 2 3; do ... ${MAKE} ${EXTRA_OEMAKE} $@ || exit_code=1 ... done ... } Not sure, but I

[OE-core] [PATCH] initscripts: remove erroneous call to /etc/default/rcS

2013-11-21 Thread Ross Burton
This doesn't exist when using systemd as it's part of the sysvinit package, and this script doesn't need it. Signed-off-by: Ross Burton ross.bur...@intel.com --- meta/recipes-core/initscripts/initscripts-1.0/mountnfs.sh |2 -- 1 file changed, 2 deletions(-) diff --git

Re: [OE-core] Improving Build Speed

2013-11-21 Thread Enrico Scholz
Ulf Samuelsson angstrom-dev-aofpy8dbyrpqt0dzr+a...@public.gmane.org writes: PARALLEL_MAKE = -j6 BB_NUMBER_THREADS = 24 I define | PARALLEL_MAKE = \ | -j ${@int(os.sysconf(os.sysconf_names['SC_NPROCESSORS_ONLN'])) * 2} \ | -l ${@int(os.sysconf(os.sysconf_names['SC_NPROCESSORS_ONLN'])) *

Re: [OE-core] [RFC PATCH] bind: add support for read-only rootfs

2013-11-21 Thread Phil Blundell
On Thu, 2013-11-21 at 00:59 -0600, Mark Hatle wrote: +# When using a read-only rootfs additional setup may be required +# uncomment the following line to make bind start in read-only rootfs +#ALLOW_ROOTFS_READ_ONLY=yes If the filesystem is read-only then it's going to be fairly difficult for

Re: [OE-core] [RFC PATCH] bind: add support for read-only rootfs

2013-11-21 Thread Paul Eggleton
Hi Mark, On Thursday 21 November 2013 01:02:11 Mark Hatle wrote: Sorry I forgot to add, this requires the patch that was sent to the list 2013-09-29 -- bind: run in the chrooted jail ... which seems to have been rejected: http://patches.openembedded.org/patch/53845/ Cheers, Paul -- Paul

Re: [OE-core] [PATCH 3/4] lttng-tools: add PACKAGECONFIG to support --enable-python-bindings and lttng-ust

2013-11-21 Thread Hongxu Jia
On 11/21/2013 09:14 PM, Hongxu Jia wrote: Add PACKAGECONFIG to support --enable-python-bindings Add PACKAGECONFIG to support lttng-ust Signed-off-by: Hongxu Jia hongxu@windriver.com --- meta/recipes-kernel/lttng/lttng-tools_2.3.1.bb | 20 1 file changed, 16

[OE-core] [PATCH 1/2] grub-efi: change to generate EFI image in target package

2013-11-21 Thread jackie.huang
From: Jackie Huang jackie.hu...@windriver.com To generate the target EFI image in a native package, it requires the host gcc have the ability to do -m32/-m64 compiling, but gcc doesn't have that support on the 32bit version of some distributions (e.g. rehl, suse), it would fail when build a 64bit

[OE-core] [PATCH 2/2] grub-efi: allow compilation without large model support

2013-11-21 Thread jackie.huang
From: Jackie Huang jackie.hu...@windriver.com -mcmodel=large is not supported by gcc with version lower than 4.4, but we don't need to use memory over 4GiB, so add a patch to allow compilation without large model support. Signed-off-by: Jackie Huang jackie.hu...@windriver.com ---

[OE-core] [PATCH 0/2 v4] grub-efi: change to generate EFI image in target package

2013-11-21 Thread jackie.huang
From: Jackie Huang jackie.hu...@windriver.com v4 comments: no code changes, only added some detail informations explaining whay the change is necessary and fix the incorrect Upstream-Status statement for the patch. -- The following changes since commit ee3e2e5ce15a3bf78c7e9d76d7bf68131f2d3ef7:

Re: [OE-core] [RFC PATCH] bind: add support for read-only rootfs

2013-11-21 Thread ChenQi
On 11/21/2013 08:12 PM, Phil Blundell wrote: On Thu, 2013-11-21 at 00:59 -0600, Mark Hatle wrote: +# When using a read-only rootfs additional setup may be required +# uncomment the following line to make bind start in read-only rootfs +#ALLOW_ROOTFS_READ_ONLY=yes If the filesystem is read-only

[OE-core] [PATCH] syslinux: check for __i386__ and __x86_64__ instead of __SIZEOF_POINTER__

2013-11-21 Thread Mark Hatle
From: Lei Liu lei.l...@windriver.com (Note: this patch is being sent for Yocto Project compliance, I don't believe it is generally applicable to oe-core as it's only needed on older host systems.) GCC version 4.2 and earlier does not define __SIZEOF_POINTER__. Check for __i386__ and __x86_64__

Re: [OE-core] [PATCH] matchbox-keyboard: check and link against libXrender

2013-11-21 Thread Burton, Ross
On 21 November 2013 07:22, Mark Hatle mark.ha...@windriver.com wrote: +Upstream-Status: Pending This is sad considering that we host the git repo for this. I've merged an equivalent fix from master to the 0.1 branch in git, merged in some more patches that we were hanging on to were already in

Re: [OE-core] [master][dora][PATCH 2/2] perf: Disable -Werror flag

2013-11-21 Thread Konrad Scherer
On 13-11-21 02:33 AM, Mark Hatle wrote: From: Konrad Scherer konrad.sche...@windriver.com If the sed command does not run before make is invoked, the compile fails. Defining the environment variable is the proper way to disable warnings as errors build option and eliminates the race condition.

Re: [OE-core] [PATCH] ia32-base: Remove cpio and ext3 defaults

2013-11-21 Thread Hart, Darren
On Thu, 2013-11-21 at 15:25 +, Richard Purdie wrote: On real IA hardware, neither the ext3 or cpio images are particularly useful or used. cpio is legacy from initramfs and that specific image now overrides FSTYPES accordingly. The size difference in filesystems makes ext3 as a file format

Re: [OE-core] [master][dora][PATCH 1/2] perf: disallow debug optimization.

2013-11-21 Thread Richard Purdie
On Thu, 2013-11-21 at 14:25 +, Phil Blundell wrote: On Thu, 2013-11-21 at 01:33 -0600, Mark Hatle wrote: +def get_optimization(d): +selected_optimization = d.getVar(SELECTED_OPTIMIZATION, True) +if base_contains(SELECTED_OPTIMIZATION, -O0, x, , d) == x: +bb.note(eglibc

Re: [OE-core] [master][dora][PATCH 1/2] perf: disallow debug optimization.

2013-11-21 Thread Mark Hatle
On 11/21/13, 8:35 AM, Richard Purdie wrote: On Thu, 2013-11-21 at 14:25 +, Phil Blundell wrote: On Thu, 2013-11-21 at 01:33 -0600, Mark Hatle wrote: +def get_optimization(d): +selected_optimization = d.getVar(SELECTED_OPTIMIZATION, True) +if base_contains(SELECTED_OPTIMIZATION,

Re: [OE-core] [PATCH] shadow: remove reference to locale env files from su

2013-11-21 Thread Saul Wold
On 11/21/2013 01:14 AM, qiang.c...@windriver.com wrote: From: Qiang Chen qiang.c...@windriver.com The /etc/default/locale missing message appears when running su user root@qemu0:/var/log# su root root@qemu0:/var/log# tail auth.log Oct 8 07:47:54 qemu0 login[983]: pam_unix(login:session):

[OE-core] [dora][PATCH] libsoup: workaround oe-core mips-gcc ICE

2013-11-21 Thread Mark Hatle
From: Wenzong Fan wenzong@windriver.com (Note: this is being sent for Yocto Project compliance. The bug is in the dora oe-core version of the compiler, but only if using -O0.. I consider it a temporary workaround.) This error occurs for builds with the oe-core toolchain in debug builds:

Re: [OE-core] [master][dora][PATCH 1/2] perf: disallow debug optimization.

2013-11-21 Thread Phil Blundell
On Thu, 2013-11-21 at 15:57 +, Phil Blundell wrote: On Thu, 2013-11-21 at 08:47 -0600, Mark Hatle wrote: We have users who desire to build their system at different levels of optimizations for debug, size, profiling, etc. So they do change the default optimization levels from -O2

[OE-core] [PATCH] oeqa/connman: disable unique test

2013-11-21 Thread Ross Burton
The connman unique test starts another instance of connmand and then does a ps to verify that there's only one of these running, on the assumption that the new one has quit because there's already one running (started by init). However, connmand is forking into the background straight away so

Re: [OE-core] [RFC PATCH 1/1] lib32-packagegroup-core-nfs: fix qa issue - install files into a shared area when those files already exist

2013-11-21 Thread Richard Purdie
On Thu, 2013-11-21 at 21:39 +0800, Hongxu Jia wrote: Hi All, In this case, there are two 'packagegroup-core-nfs-server-1.0-r2.0.all.rpm' in tmp/deploy/rpm/all. One is made by 'bitbake packagegroup-core-nfs ', and the other is made by 'bitbake lib32-packagegroup-core-nfs '. The last one

[OE-core] [RFC PATCH 1/1] lib32-packagegroup-core-nfs: fix qa issue - install files into a shared area when those files already exist

2013-11-21 Thread Hongxu Jia
Hi All, In this case, there are two 'packagegroup-core-nfs-server-1.0-r2.0.all.rpm' in tmp/deploy/rpm/all. One is made by 'bitbake packagegroup-core-nfs ', and the other is made by 'bitbake lib32-packagegroup-core-nfs '. The last one overrode the previous triggered the QA check. By default,

Re: [OE-core] [PATCH 4/4] qemu: add bash and python to qemu's RDEPENDS

2013-11-21 Thread Saul Wold
Why are you adding bash to qemu? Sau! On 11/21/2013 05:14 AM, Hongxu Jia wrote: | Note: adding Smart RPM DB channel | | Note: to be installed: qemu@x86_64 run-postinsts@x86_64 kernel-modules@qemux86_64 packagegroup-core-boot@qemux86_64 | Loading cache... | Updating cache...

Re: [OE-core] [PATCH 1/1] license.bbclass: fix copying license directories failed

2013-11-21 Thread Paul Eggleton
Hi Hongxu, On Wednesday 20 November 2013 18:39:02 Hongxu Jia wrote: For each recipe, it populated license files to ${LICENSE_DIRECTORY}/${PN}, such as kernel's license dir was ${LICENSE_DIRECTORY}/kernel-3.10.17-yocto-standard; In do_rootfs task, it copied license directories from

Re: [OE-core] [master][dora][PATCH 1/2] perf: disallow debug optimization.

2013-11-21 Thread Phil Blundell
On Thu, 2013-11-21 at 08:47 -0600, Mark Hatle wrote: We have users who desire to build their system at different levels of optimizations for debug, size, profiling, etc. So they do change the default optimization levels from -O2 to -O0, etc. The python fragement is used to only adjust

[OE-core] [PATCH] packagegroup-core-tools-profile: add systemd-analyze

2013-11-21 Thread Ross Burton
If the systemd DISTRO_FEATURE is enabled, then recommend systemd-analyze for profiling boot performance. Signed-off-by: Ross Burton ross.bur...@intel.com --- meta/recipes-core/packagegroups/packagegroup-core-tools-profile.bb |2 ++ 1 file changed, 2 insertions(+) diff --git

Re: [OE-core] Improving Build Speed

2013-11-21 Thread Martin Jansa
On Thu, Nov 21, 2013 at 08:15:08AM +0100, Ulf Samuelsson wrote: 2013-11-21 01:19, Martin Jansa skrev: On Wed, Nov 20, 2013 at 11:43:13PM +0100, Ulf Samuelsson wrote: 2013-11-20 22:29, Richard Purdie skrev: Another idea: I suspect that there is a lot of unpacking and patching of recipes

[OE-core] distro/machine:kernel feature mapping and version checking

2013-11-21 Thread Hart, Darren
All, Regarding the following 2 bugs: https://bugzilla.yoctoproject.org/show_bug.cgi?id=5574 Add kernel version / configuration check mechanism and https://bugzilla.yoctoproject.org/show_bug.cgi?id=2267 Integrate DISTRO_FEATURES with KERNEL_FEATURES There is a need to reduce errors where a

Re: [OE-core] [master][dora][PATCH 1/2] perf: disallow debug optimization.

2013-11-21 Thread Phil Blundell
On Thu, 2013-11-21 at 14:35 +, Richard Purdie wrote: I have to admit at this point, this may look better as an include file along the lines of: SELECTED_OPTIMIZATION = -O0 SELECTED_OPTIMIZATION_pn-eglibc = -O2 SELECTED_OPTIMIZATION_pn-perf = -O2 since clutter the recipes with

Re: [OE-core] [RFC PATCH] bind: add support for read-only rootfs

2013-11-21 Thread Phil Blundell
On Thu, 2013-11-21 at 20:24 +0800, ChenQi wrote: The purpose is to disable bind in a read-only file system by default. But if user really wants it, they can set this value to 'yes'. I'm still struggling a bit to understand the reasoning here. Why would you install bind in the first place if

[OE-core] [dora][PATCH] Qemu:Arm:versatilepb: Add memory size checking

2013-11-21 Thread Mark Hatle
From: Jiang Lu lu.ji...@windriver.com The machine can not work with memory over 256M, so add a checking at startup. If the memory size exceed 256M, just stop emulation then throw out warning about memory limitation. Signed-off-by: Jiang Lu lu.ji...@windriver.com Signed-off-by: Robert Yang

Re: [OE-core] [PATCH 4/4] qemu: add bash and python to qemu's RDEPENDS

2013-11-21 Thread Mark Hatle
On 11/21/13, 12:42 PM, Saul Wold wrote: Why are you adding bash to qemu? My understanding is that there was a bash script that was added as well, once the python rdepends was resolved. --Mark Sau! On 11/21/2013 05:14 AM, Hongxu Jia wrote: | Note: adding Smart RPM DB channel | | Note:

[OE-core] [PATCH] ethtool: add actual test names to make

2013-11-21 Thread Saul Wold
Automake does not seem to be generating the correct target for buildtest-TESTS, which the recipe was using. Signed-off-by: Saul Wold s...@linux.intel.com --- meta/recipes-extended/ethtool/ethtool_3.12.1.bb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git

[OE-core] [PATCH 2/4] lttng-ust: add python to lttng-ust's RDEPENDS

2013-11-21 Thread Hongxu Jia
| Note: adding Smart RPM DB channel | | Note: to be installed: run-postinsts@x86_64 kernel-modules@qemux86_64 packagegroup-core-boot@qemux86_64 lttng-ust@x86_64 | Loading cache... | Updating cache... [100%] | | Computing

[OE-core] [PATCH] xinput-calibrator: add formfactor to RDEPENDS

2013-11-21 Thread Martin Jansa
* 30xinput_calibrate.sh is calling . /etc/formfactor/config breaking Xsession for images without formfactor Signed-off-by: Martin Jansa martin.ja...@gmail.com --- meta/recipes-graphics/xinput-calibrator/xinput-calibrator_git.bb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git

Re: [OE-core] [dora][PATCH] Qemu:Arm:versatilepb: Add memory size checking

2013-11-21 Thread Saul Wold
On 11/21/2013 11:35 AM, Mark Hatle wrote: From: Jiang Lu lu.ji...@windriver.com The machine can not work with memory over 256M, so add a checking at startup. If the memory size exceed 256M, just stop emulation then throw out warning about memory limitation. Signed-off-by: Jiang Lu

[OE-core] [PATCH 0/4] fix some packages (kconfig-frontends/lttng-tools/lttng-ust/qemu) loss RDEPENDS on python

2013-11-21 Thread Hongxu Jia
The following changes since commit 725fae65810c477882f7f9d02561362b3f603db0: bitbake: toasterui: fix typo (2013-11-20 14:06:49 +) are available in the git repository at: git://git.pokylinux.org/poky-contrib hongxu/fix-add-python

[OE-core] [PATCH][V2] matcbox-keyboard: bump SRCREV

2013-11-21 Thread Ross Burton
Bump to the latest commit on the 0.1 branch. Drop two redundant patches, and update the license data since upstream has been re-licensed to LGPL v2.1. Signed-off-by: Ross Burton ross.bur...@intel.com --- .../matchbox-keyboard/files/configure_fix.patch| 15 --

[OE-core] [PATCH] matcbox-keyboard: bump SRCREV

2013-11-21 Thread Ross Burton
Bump to the latest commit on the 0.1 branch. Drop two redundant patches, and update the license data since upstream has been re-licensed to LGPL v2.1. Signed-off-by: Ross Burton ross.bur...@intel.com --- .../matchbox-keyboard/files/configure_fix.patch| 15 --

Re: [OE-core] [master][dora][PATCH 1/2] perf: disallow debug optimization.

2013-11-21 Thread Phil Blundell
On Thu, 2013-11-21 at 01:33 -0600, Mark Hatle wrote: +def get_optimization(d): +selected_optimization = d.getVar(SELECTED_OPTIMIZATION, True) +if base_contains(SELECTED_OPTIMIZATION, -O0, x, , d) == x: +bb.note(eglibc can't be built with -O0, -O2 will be used instead.)

Re: [OE-core] [PATCH 4/4] qemu: add bash and python to qemu's RDEPENDS

2013-11-21 Thread Hongxu Jia
On 11/22/2013 03:42 AM, Saul Wold wrote: On 11/21/2013 11:40 AM, Mark Hatle wrote: On 11/21/13, 12:42 PM, Saul Wold wrote: Why are you adding bash to qemu? My understanding is that there was a bash script that was added as well, once the python rdepends was resolved. Actually the bash

[OE-core] [PATCH 4/4] qemu: add bash and python to qemu's RDEPENDS

2013-11-21 Thread Hongxu Jia
| Note: adding Smart RPM DB channel | | Note: to be installed: qemu@x86_64 run-postinsts@x86_64 kernel-modules@qemux86_64 packagegroup-core-boot@qemux86_64 | Loading cache... | Updating cache... [100%] | | Computing transaction...error:

Re: [OE-core] [PATCH 4/4] qemu: add bash and python to qemu's RDEPENDS

2013-11-21 Thread Saul Wold
On 11/21/2013 11:40 AM, Mark Hatle wrote: On 11/21/13, 12:42 PM, Saul Wold wrote: Why are you adding bash to qemu? My understanding is that there was a bash script that was added as well, once the python rdepends was resolved. Any chance of de-bashing the script? Sau! --Mark Sau! On

[OE-core] [PATCH] ia32-base: Remove cpio and ext3 defaults

2013-11-21 Thread Richard Purdie
On real IA hardware, neither the ext3 or cpio images are particularly useful or used. cpio is legacy from initramfs and that specific image now overrides FSTYPES accordingly. The size difference in filesystems makes ext3 as a file format less useful, mainly being useful in the qemu case. When

[OE-core] [PATCH] json-glib: enable ptest

2013-11-21 Thread Ross Burton
Use a patch from upstream to install the test suite and add the minimal logic to integrate it with ptest. Signed-off-by: Ross Burton ross.bur...@intel.com --- .../json-glib/json-glib/install-tests.patch| 186 meta/recipes-gnome/json-glib/json-glib/run-ptest |3

[OE-core] [PATCH] gcc: Upgrade to 4.8.2

2013-11-21 Thread Khem Raj
The details for bug fixes between 4.8.1 and 4.8.2 is here http://gcc.gnu.org/bugzilla/buglist.cgi?bug_status=RESOLVEDresolution=FIXEDtarget_milestone=4.8.2 Remove the patches that were applied upstream Signed-off-by: Khem Raj raj.k...@gmail.com --- meta/recipes-devtools/gcc/gcc-4.8.inc

Re: [OE-core] [RFC PATCH] bind: add support for read-only rootfs

2013-11-21 Thread Phil Blundell
On Thu, 2013-11-21 at 08:42 -0600, Mark Hatle wrote: On 11/21/13, 6:12 AM, Phil Blundell wrote: On Thu, 2013-11-21 at 00:59 -0600, Mark Hatle wrote: +# When using a read-only rootfs additional setup may be required +# uncomment the following line to make bind start in read-only rootfs

Re: [OE-core] [PATCH 1/2] grub-efi: change to generate EFI image in target package

2013-11-21 Thread Darren Hart
On Wed, 2013-11-20 at 09:40 +0800, jackie.hu...@windriver.com wrote: From: Jackie Huang jackie.hu...@windriver.com It's not a good idea to generate the target EFI image in a native packge, This was admittedly a hack when I wrote it... it would be a problem when build a 64bit target on

Re: [OE-core] [PATCH 2/2] grub-efi: allow compilation without large model support

2013-11-21 Thread Darren Hart
On Wed, 2013-11-20 at 09:40 +0800, jackie.hu...@windriver.com wrote: From: Jackie Huang jackie.hu...@windriver.com -mcmodel=large is not supported by gcc with version lower than 4.4, but we don't need to use memory over 4GiB, so add a patch to allow compilation without large model support.

Re: [OE-core] [RFC PATCH] bind: add support for read-only rootfs

2013-11-21 Thread Mark Hatle
On 11/21/13, 6:12 AM, Phil Blundell wrote: On Thu, 2013-11-21 at 00:59 -0600, Mark Hatle wrote: +# When using a read-only rootfs additional setup may be required +# uncomment the following line to make bind start in read-only rootfs +#ALLOW_ROOTFS_READ_ONLY=yes If the filesystem is read-only

Re: [OE-core] [RFC PATCH] bind: add support for read-only rootfs

2013-11-21 Thread Mark Hatle
On 11/21/13, 6:40 AM, Phil Blundell wrote: On Thu, 2013-11-21 at 20:24 +0800, ChenQi wrote: The purpose is to disable bind in a read-only file system by default. But if user really wants it, they can set this value to 'yes'. I'm still struggling a bit to understand the reasoning here. Why

[OE-core] [PATCH 1/4] kconfig-frontends: add python to kconfig-frontends's RDEPENDS

2013-11-21 Thread Hongxu Jia
| Note: adding Smart RPM DB channel | | Note: to be installed: kconfig-frontends@x86_64 run-postinsts@x86_64 kernel-modules@qemux86_64 packagegroup-core-boot@qemux86_64 | Loading cache... | Updating cache... [100%] | | Computing

Re: [OE-core] [RFC PATCH] bind: add support for read-only rootfs

2013-11-21 Thread Phil Blundell
On Thu, 2013-11-21 at 08:44 -0600, Mark Hatle wrote: I have to send these patches, due to the YP compliance guidelines, which is why this is an RFC and not something I'm suggesting for the actual oe-core.. (since the patch it depends on was not accepted.) Ah, right, sorry, I hadn't quite

[OE-core] [PATCH 3/4] lttng-tools: add PACKAGECONFIG to support --enable-python-bindings and lttng-ust

2013-11-21 Thread Hongxu Jia
Add PACKAGECONFIG to support --enable-python-bindings Add PACKAGECONFIG to support lttng-ust Signed-off-by: Hongxu Jia hongxu@windriver.com --- meta/recipes-kernel/lttng/lttng-tools_2.3.1.bb | 20 1 file changed, 16 insertions(+), 4 deletions(-) diff --git

[OE-core] [dora][master][PATCH] util-linux: Package readprofile into it's own package

2013-11-21 Thread Mark Hatle
readprofile was missing from the alternative configuration, which was causing readprofile to be packaged into the base util-linux. Signed-off-by: Mark Hatle mark.ha...@windriver.com --- meta/recipes-core/util-linux/util-linux.inc | 3 +++ 1 file changed, 3 insertions(+) diff --git

Re: [OE-core] [master][dora][PATCH 1/2] perf: disallow debug optimization.

2013-11-21 Thread Mark Hatle
On 11/21/13, 8:25 AM, Phil Blundell wrote: On Thu, 2013-11-21 at 01:33 -0600, Mark Hatle wrote: +def get_optimization(d): +selected_optimization = d.getVar(SELECTED_OPTIMIZATION, True) +if base_contains(SELECTED_OPTIMIZATION, -O0, x, , d) == x: +bb.note(eglibc can't be built

Re: [OE-core] [PATCH] shadow: remove reference to locale env files from su

2013-11-21 Thread Qiang Chen
On 11/22/2013 02:49 AM, Saul Wold wrote: On 11/21/2013 01:14 AM, qiang.c...@windriver.com wrote: From: Qiang Chen qiang.c...@windriver.com The /etc/default/locale missing message appears when running su user root@qemu0:/var/log# su root root@qemu0:/var/log# tail auth.log Oct 8 07:47:54 qemu0

Re: [OE-core] [PATCH 2/2] grub-efi: allow compilation without large model support

2013-11-21 Thread jhuang0
On 11/22/2013 10:49 AM, Darren Hart wrote: On Wed, 2013-11-20 at 09:40 +0800, jackie.hu...@windriver.com wrote: From: Jackie Huang jackie.hu...@windriver.com -mcmodel=large is not supported by gcc with version lower than 4.4, but we don't need to use memory over 4GiB, so add a patch to allow

Re: [OE-core] [PATCH 1/2] grub-efi: change to generate EFI image in target package

2013-11-21 Thread jhuang0
On 11/22/2013 10:45 AM, Darren Hart wrote: On Wed, 2013-11-20 at 09:40 +0800, jackie.hu...@windriver.com wrote: From: Jackie Huang jackie.hu...@windriver.com It's not a good idea to generate the target EFI image in a native packge, This was admittedly a hack when I wrote it... it would

[OE-core] [PATCH v2] shadow: remove reference to locale env files from login and su

2013-11-21 Thread qiang.chen
From: Qiang Chen qiang.c...@windriver.com /etc/default/locale missing message appears when login and running su user qemu0 login[4189]: pam_env(login:session): Unable to open env file: /etc/default/locale: No such file or directory qemu0 login[4189]: pam_unix(login:session): session opened for

Re: [OE-core] [PATCH 1/2] grub-efi: change to generate EFI image in target package

2013-11-21 Thread Darren Hart
On Fri, 2013-11-22 at 12:49 +0800, jhuang0 wrote: On 11/22/2013 10:45 AM, Darren Hart wrote: On Wed, 2013-11-20 at 09:40 +0800, jackie.hu...@windriver.com wrote: From: Jackie Huang jackie.hu...@windriver.com It's not a good idea to generate the target EFI image in a native packge,

Re: [OE-core] [PATCH 2/2] grub-efi: allow compilation without large model support

2013-11-21 Thread Darren Hart
On Fri, 2013-11-22 at 11:37 +0800, jhuang0 wrote: On 11/22/2013 10:49 AM, Darren Hart wrote: On Wed, 2013-11-20 at 09:40 +0800, jackie.hu...@windriver.com wrote: From: Jackie Huang jackie.hu...@windriver.com -mcmodel=large is not supported by gcc with version lower than 4.4, but we

[OE-core] [PATCH 0/1] image.bbclass: depends on virtual/kernel

2013-11-21 Thread Qi.Chen
From: Chen Qi qi.c...@windriver.com The following changes since commit d60b4ff3517487bd111c6d7e1410882280229377: yocto-bsp: Add missing format specifier in bblayers error message (2013-11-21 14:20:28 +) are available in the git repository at: git://git.pokylinux.org/poky-contrib

[OE-core] [PATCH 1/1] image.bbclass: depends on virtual/kernel

2013-11-21 Thread Qi.Chen
From: Chen Qi qi.c...@windriver.com Add 'virtual/kernel' to DEPENDS in image.bbclass so that the kernel can get built by default. Otherwise, the kernel will not get built unless it's required by other packages like v86d. As a result, if we build 'core-image-minimal' for qemumips, the kernel is

Re: [OE-core] [PATCH 4/4] qemu: add bash and python to qemu's RDEPENDS

2013-11-21 Thread Hongxu Jia
On 11/22/2013 03:42 AM, Saul Wold wrote: On 11/21/2013 11:40 AM, Mark Hatle wrote: On 11/21/13, 12:42 PM, Saul Wold wrote: Why are you adding bash to qemu? My understanding is that there was a bash script that was added as well, once the python rdepends was resolved. Any chance of

Re: [OE-core] [PATCH 1/1] license.bbclass: fix copying license directories failed

2013-11-21 Thread Hongxu Jia
Hi Paul, On 11/22/2013 12:41 AM, Paul Eggleton wrote: Hi Hongxu, On Wednesday 20 November 2013 18:39:02 Hongxu Jia wrote: For each recipe, it populated license files to ${LICENSE_DIRECTORY}/${PN}, such as kernel's license dir was ${LICENSE_DIRECTORY}/kernel-3.10.17-yocto-standard; In

Re: [OE-core] [PATCH 2/2] grub-efi: allow compilation without large model support

2013-11-21 Thread jhuang0
On 11/22/2013 1:04 PM, Darren Hart wrote: On Fri, 2013-11-22 at 11:37 +0800, jhuang0 wrote: On 11/22/2013 10:49 AM, Darren Hart wrote: On Wed, 2013-11-20 at 09:40 +0800, jackie.hu...@windriver.com wrote: From: Jackie Huang jackie.hu...@windriver.com -mcmodel=large is not supported by gcc

Re: [OE-core] [PATCH 4/4] qemu: add bash and python to qemu's RDEPENDS

2013-11-21 Thread Hongxu Jia
On 11/22/2013 01:58 PM, Hongxu Jia wrote: On 11/22/2013 03:42 AM, Saul Wold wrote: On 11/21/2013 11:40 AM, Mark Hatle wrote: On 11/21/13, 12:42 PM, Saul Wold wrote: Why are you adding bash to qemu? My understanding is that there was a bash script that was added as well, once the python

Re: [OE-core] [PATCH 1/2] grub-efi: change to generate EFI image in target package

2013-11-21 Thread jhuang0
On 11/22/2013 1:02 PM, Darren Hart wrote: On Fri, 2013-11-22 at 12:49 +0800, jhuang0 wrote: On 11/22/2013 10:45 AM, Darren Hart wrote: On Wed, 2013-11-20 at 09:40 +0800, jackie.hu...@windriver.com wrote: From: Jackie Huang jackie.hu...@windriver.com It's not a good idea to generate the