Re: [OE-core] [PATCH] update-rc: Stop and remove service if updating package

2013-10-02 Thread Saul Wold
On 10/01/2013 10:19 AM, e...@felipetonello.com wrote: From: "Felipe F. Tonello" Since when updating packages packages managers do not remove the previous package, it just replaces new files and run pre/post install scripts. This causes not to update update-rc scripts if they were changed. Thi

[OE-core] [dylan, master][PATCH] populate_sdk_base: Fix relocate_sdk.py execution on Arch

2013-10-02 Thread Richard Tollerton
relocate_sdk.py is #!/usr/bin/env python, but is not python3-compatible. The PEP 394 alias `python2` is sadly not universally supported, so instead of modifying relocate_sdk.py directly, change the `exec` in relocate_sdk.sh to use it if it exists. Signed-off-by: Richard Tollerton --- meta/classe

[OE-core] [PATCH 1/1] linux-yocto: enable CONFIG_INPUT_EVDEV as standard policy

2013-10-02 Thread Bruce Ashfield
We have a number (in fact most) BSPs that require INPUT_EVDEV for basic functionality. The size increase is minimal, so we'll add it to the standard configuration for all platforms. Signed-off-by: Nitin A Kamble Signed-off-by: Bruce Ashfield --- meta/recipes-kernel/linux/linux-yocto-rt_3.10.bb

[OE-core] [PATCH 0/1] linux-yocto: enable CONFIG_INPUT_EVDEV as standard policy

2013-10-02 Thread Bruce Ashfield
We have a number (in fact most) BSPs that require INPUT_EVDEV for basic functionality. The size increase is minimal, so we'll add it to the standard configuration for all platforms. [YOCTO #5279] Cheers, Bruce The following changes since commit 56f39bcf2237c11508d82238b6292e4bfbfed764: bitba

[OE-core] [PATCH] license.bbclass: use shutil instead of bb.utils.copyfile

2013-10-02 Thread Ross Burton
bb.utils.copyfile is for a specific purpose and more complicated than needed here, so just use shutil.copyfile. Signed-off-by: Ross Burton --- meta/classes/license.bbclass | 10 ++ 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/meta/classes/license.bbclass b/meta/classes

[OE-core] [PATCH] opkg: ignore result of opkg configure

2013-10-02 Thread Shakeel, Muhammad
From: Muhammad Shakeel Some packages may return error while running opkg-cl configure, during first boot. This will fail 'ExecStart' and 'ExecStartPost' will not run. Without 'ExecStartPost' opkg-configure service will continue to run on successive boot attempts. 'ExecStartPost' should disable th

Re: [OE-core] Sanitized kernel headers

2013-10-02 Thread Bruce Ashfield
On 13-10-02 09:45 AM, Peter Kjellerstedt wrote: In a recent commit (http://cgit.openembedded.org/openembedded-core/commit/?id=c27ac156bcaf3193d52f456480947b0cfaef3c72), Richard added a big warning about not forking the linux-libc-headers recipe to get at specific kernel headers for user space. As

[OE-core] Sanitized kernel headers

2013-10-02 Thread Peter Kjellerstedt
In a recent commit (http://cgit.openembedded.org/openembedded-core/commit/?id=c27ac156bcaf3193d52f456480947b0cfaef3c72), Richard added a big warning about not forking the linux-libc-headers recipe to get at specific kernel headers for user space. As a consequence I thought I should remove our

[OE-core] [PATCH] systemd-compat-units: Use correct run-postinsts script link

2013-10-02 Thread Shakeel, Muhammad
From: Muhammad Shakeel OE-Core commit 75a14923da1ba91eddde47f0907345c19c82d6f0 has moved run-postinsts script execution from S98 to S99 in rcS.d. run-postinsts.service should check for this script and run it on first boot rather than S98run-postinsts, which is for opkg/dpkg. Signed-off-by: Muham

[OE-core] [PATCH] boot-directdisk: avoid loop in MBR disk signature generation

2013-10-02 Thread Jonathan Liu
Instead of looping until the generated signature is non-zero, just return '' if it's zero. This avoids an infinite loop if the generated signature is always zero. Signed-off-by: Jonathan Liu --- meta/classes/boot-directdisk.bbclass | 9 + 1 file changed, 5 insertions(+), 4 deleti