[OE-core] site/mips64-common (not a review-ready patch)

2012-10-11 Thread Peter Seebach
So, turns out that siteinfo.bbclass is looking for mips64-common, but there isn't one. The way this bit me was screen failing to compile because stuff like screen_cv_sys_fifo_usable wasn't defined. So I've drafted up and lightly tested a version of this... but it's been tested against a several mon

Re: [OE-core] [PATCH 2/2] udev-extraconf: Don't mount root filesystem under /media

2012-10-11 Thread Randy MacLeod
On 12-09-18 06:33 PM, Andy Ross wrote: On 09/18/2012 03:25 PM, Saul Wold wrote: How much bigger does this make the busybox image? These binaries are manually stripped and not prelinked, but probably close enough: -rwxr-xr-x. 1 andy andy 557312 Sep 18 15:30 busybox-r0 -rwxr-xr-x. 1 andy andy 5

Re: [OE-core] meta-systemd base-files issue

2012-10-11 Thread Khem Raj
On Oct 11, 2012, at 8:36 AM, Andrei Gherzan wrote: > I'm trying to get meta-systemd work with meta-oe and oe-core. > The problem seems to be with the fstab from oe-core where /var/volatile is > mounted as tmpfs and the directories inside never recreated. So services like > dbus or whatever nee

[OE-core] [PATCH] buildhistory.bbclass: Fix hostname print for 'No changes' case

2012-10-11 Thread Otavio Salvador
Signed-off-by: Otavio Salvador --- meta/classes/buildhistory.bbclass |2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meta/classes/buildhistory.bbclass b/meta/classes/buildhistory.bbclass index 49f2ea5..0a5753f 100644 --- a/meta/classes/buildhistory.bbclass +++ b/meta/class

[OE-core] [PATCH] gtk-doc.bbclass: Run gtkdocize in ${S} not ${B}

2012-10-11 Thread Phil Blundell
Otherwise it will fail if these two directories are not the same. Signed-off-by: Phil Blundell --- meta/classes/gtk-doc.bbclass |2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meta/classes/gtk-doc.bbclass b/meta/classes/gtk-doc.bbclass index 59063b0..eaa1385 100644 --- a/m

[OE-core] [PATCH] build-appliance: ensure zip file is linked locally

2012-10-11 Thread Saul Wold
This makes the symbolic link portable with the dated zip file, otherwise the link still points to the original deploy directory. Signed-off-by: Saul Wold --- meta/recipes-core/images/build-appliance-image.bb |2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/meta/recipes-c

[OE-core] [PATCH] sysklogd: fix update-rc.d handling

2012-10-11 Thread Andy Ross
The sysklogd recipe had a cut-n-paste version of the update-rc.d.bbclass code which didn't work, but this was hidden because all images contain the busybox version which does. Building a busybox-free image unmasked the issue and syslogd wouldn't start on first boot. The comments seem to be wrong/

[OE-core] meta-systemd base-files issue

2012-10-11 Thread Andrei Gherzan
I'm trying to get meta-systemd work with meta-oe and oe-core. The problem seems to be with the fstab from oe-core where /var/volatile is mounted as tmpfs and the directories inside never recreated. So services like dbus or whatever needs /var/log or var/run etc which are all symlinks to volatile/*,

[OE-core] [PATCH] pulseaudio: add missing switch-on-port-available dependency to the server

2012-10-11 Thread Ross Burton
The PulseAudio server recently added a dependency by default on the switch-if-port-available module, but this was not enforced by the package dependencies so the server won't start. Signed-off-by: Ross Burton --- meta/recipes-multimedia/pulseaudio/pulseaudio.inc|3 ++- meta/recipes-multi

[OE-core] [PATCH] lttng: support more compatible hosts

2012-10-11 Thread Vladimir Zapolskiy
THis change extends COMAPTIBLE_HOST matchings, which allows to include more hosts with TARGET_OS like linux-gnuspe or linux-gnueabi etc. Signed-off-by: Vladimir Zapolskiy --- meta/recipes-kernel/lttng-2.0/babeltrace_0.12.bb |4 ++-- meta/recipes-kernel/lttng-2.0/lttng-modules_2.0.5.bb |

Re: [OE-core] [PATCH] sstate: Use -m option to tar when unpacking sstate

2012-10-11 Thread Enrico Scholz
Richard Purdie writes: > We've noticed failures on the project autobuilders where a shared > sstate directory is used across multiple builders and the clocks > become skewed. I think, 'ntp' is a better way to solve this... > This avoids modification times in the future and should make builds >

[OE-core] [PATCH] local.conf.sample: add PATH to SSTATE_MIRRORS comments

2012-10-11 Thread Paul Eggleton
The shared state cache as pointed to by SSTATE_DIR by default now has two-character subdirectories to prevent there being an issue with too many files in the same directory; also, native sstate packages will go into a subdirectory named using the distro ID string. If you copy the newly structured s

[OE-core] scripts/cp-noerror: Try and use hardlinks if possible

2012-10-11 Thread Richard Purdie
Since we generally have lots of copies of the directories created using this tool, use hardlinks where possible. This should save a little disk space and improve performance slightly. Signed-off-by: Richard Purdie --- diff --git a/scripts/cp-noerror b/scripts/cp-noerror index f0cd243..cde1b54 1

[OE-core] [PATCH] sstate: Use -m option to tar when unpacking sstate

2012-10-11 Thread Richard Purdie
We've noticed failures on the project autobuilders where a shared sstate directory is used across multiple builders and the clocks become skewed. Most of the time this causes harmless building but if this happens where an environment is changed (make install vs make in qt4-x11-free for example), t

[OE-core] [PATCH 1/2] sanity.bbclass: trigger network tests explicitly

2012-10-11 Thread Bogdan Marinescu
The network tests in sanity.bbclass can now be trigerred explicitly by firing the NetworkTest event. This is part of the fix for bug #3026. [YOCTO #3026] Signed-off-by: Bogdan Marinescu --- meta/classes/sanity.bbclass |3 +++ 1 file changed, 3 insertions(+) diff --git a/meta/classes/sanity

[OE-core] [PATCH] scipts/combo-layer: Fix check_rev_branch() for cases where the revision is on more than one branch

2012-10-11 Thread Richard Purdie
If a revision is in more than one branch, the check_rev_branch() function can't cope with it and the tool returns incorrect errror messages. This patch ensures it copes with this situation. Signed-off-by: Richard Purdie --- diff --git a/scripts/combo-layer b/scripts/combo-layer index 3baea24..ae9

[OE-core] [PATCH] autotools.bbclass: Fix gettext macro versions issues

2012-10-11 Thread Richard Purdie
gettext m4 macros don't use the usual versioning/serial mechanism used by aclocal. It therefore won't update them over and above any local version of the macro. Equally, we don't run gettextize due to it doing slightly crazy things to the build. When we put the aclocal directory as a -I option to

[OE-core] [PATCH] libtool: Ensure the paths to sed are not hardcoded

2012-10-11 Thread Richard Purdie
If you: bitbake sed-native bitbake libtool-cross then libtool-cross has SED="/path/to/sysroot/sed" which is incorrect. If that is reused from sstate or sed-native is cleaned, the build will fail. This patch simply sets sed to be "sed" since we're not on systems where the sed from PATH is broken.