Re: [OE-core] accessing variables

2012-02-01 Thread Otavio Salvador
On Wed, Feb 1, 2012 at 16:15, Andreas Müller schnitzelt...@googlemail.comwrote: another stupid question from my side: do bb.data.getVar('foo', d, 1) and d.getVar('foo', 1) access the same data? It does but the later is supported on recent bitbake versions only. -- Otavio Salvador

[OE-core] [PATCH 3/3] rootfs_ipk.bbclass: fix detection of script runtime requirement

2012-02-01 Thread Otavio Salvador
The code has been broken by 2feba313c991170747381c7cf821a45c2cd04632 that changed the way this detection has being done. Signed-off-by: Otavio Salvador ota...@ossystems.com.br --- meta/classes/rootfs_ipk.bbclass | 10 -- 1 files changed, 8 insertions(+), 2 deletions(-) diff --git

[OE-core] [PATCH 0/3] Pending patches in O.S. Systems tree

2012-02-01 Thread Otavio Salvador
: useradd.bbclass: Fix missing quote (2012-01-27 23:57:33 +) are available in the git repository at: git://github.com/OSSystems/oe-core master https://github.com/OSSystems/oe-core/tree/HEAD Otavio Salvador (3): udev: improve udev-cache robustness dhcp: move dhcp leases files handling

[OE-core] [PATCH 1/3] udev: improve udev-cache robustness

2012-02-01 Thread Otavio Salvador
* allow udev-cache to be disabled at runtime (using /etc/default/udev-cache); * make cache invalidated if kernel, bootparams or device list changes; Signed-off-by: Otavio Salvador ota...@ossystems.com.br --- meta/recipes-core/udev/udev.inc|8 +- meta/recipes-core

[OE-core] [PATCH 2/3] dhcp: move dhcp leases files handling to postinst/postrm

2012-02-01 Thread Otavio Salvador
Both server and client needs access to leases files so its creation and removal are now handled by postinst/postrm scripts. Signed-off-by: Otavio Salvador ota...@ossystems.com.br --- meta/recipes-connectivity/dhcp/dhcp.inc | 19 ++- meta/recipes-connectivity/dhcp

Re: [OE-core] [PATCH 1/3] udev: improve udev-cache robustness

2012-02-01 Thread Otavio Salvador
On Wed, Feb 1, 2012 at 18:27, Otavio Salvador ota...@ossystems.com.brwrote: * allow udev-cache to be disabled at runtime (using /etc/default/udev-cache); * make cache invalidated if kernel, bootparams or device list changes; Signed-off-by: Otavio Salvador ota...@ossystems.com.br I

Re: [OE-core] [PATCH 3/3] rootfs_ipk.bbclass: fix detection of script runtime requirement

2012-02-01 Thread Otavio Salvador
On Wed, Feb 1, 2012 at 18:59, Phil Blundell ph...@gnu.org wrote: On Wed, 2012-02-01 at 20:27 +, Otavio Salvador wrote: The code has been broken by 2feba313c991170747381c7cf821a45c2cd04632 that changed the way this detection has being done. What was the failure? It isn't immediately

Re: [OE-core] [PATCH 2/3] dhcp: move dhcp leases files handling to postinst/postrm

2012-02-02 Thread Otavio Salvador
this problem for yestarday build and so I'd like to keep those in sync. Want me to send it again or you pick it from there? -- Otavio Salvador O.S. Systems E-mail: ota...@ossystems.com.br http://www.ossystems.com.br Mobile: +55 53 9981-7854 http

Re: [OE-core] [PATCH] dhcp: Update to 4.2.3-P2

2012-02-02 Thread Otavio Salvador
or Saul to deal with. -- Otavio Salvador O.S. Systems E-mail: ota...@ossystems.com.br http://www.ossystems.com.br Mobile: +55 53 9981-7854 http://projetos.ossystems.com.br ___ Openembedded-core mailing list

Re: [OE-core] [PATCH] dhcp: Update to 4.2.3-P2

2012-02-03 Thread Otavio Salvador
/commit/3c3316854cd788f694f12f2721e7dba64105f375 -- Otavio Salvador O.S. Systems E-mail: ota...@ossystems.com.br http://www.ossystems.com.br Mobile: +55 53 9981-7854 http://projetos.ossystems.com.br

[OE-core] [PATCH 0/2] Pending patches from O.S. Systems tree

2012-02-06 Thread Otavio Salvador
/HEAD Otavio Salvador (2): dhcp: move dhcp leases files handling to postinst/postrm udev: stop providing cache support by default meta/recipes-connectivity/dhcp/dhcp.inc | 19 ++- meta/recipes-connectivity/dhcp/dhcp_4.2.0.bb |2 +- meta/recipes-core/udev/udev.inc

[OE-core] [PATCH 1/2] dhcp: move dhcp leases files handling to postinst/postrm

2012-02-06 Thread Otavio Salvador
Both server and client needs access to leases files so its creation and removal are now handled by postinst/postrm scripts. Signed-off-by: Otavio Salvador ota...@ossystems.com.br --- meta/recipes-connectivity/dhcp/dhcp.inc | 19 ++- meta/recipes-connectivity/dhcp

[OE-core] [PATCH 2/2] udev: stop providing cache support by default

2012-02-06 Thread Otavio Salvador
The usefulness of cache nowadays has been reduced a lot and thus it's better to stop using it by default. Dropping the recommends allows for image to decide if they want or not to have cache enabled, instead of require a machine override. Signed-off-by: Otavio Salvador ota...@ossystems.com.br

Re: [OE-core] [PATCH 1/2] dhcp: move dhcp leases files handling to postinst/postrm

2012-02-06 Thread Otavio Salvador
On Mon, Feb 6, 2012 at 09:13, Phil Blundell ph...@gnu.org wrote: On Mon, 2012-02-06 at 11:03 +, Otavio Salvador wrote: +pkg_postrm_dhcp-server() { +rm -f $D/${localstatedir}/lib/dhcp/dhcpd.leases +rm -f $D/${localstatedir}/lib/dhcp/dhcpd6.leases +rmdir $D/${localstatedir

[OE-core] [PATCH 2/2] udev: stop providing cache support by default

2012-02-06 Thread Otavio Salvador
The usefulness of cache nowadays has been reduced a lot and thus it's better to stop using it by default. Dropping the recommends allows for image to decide if they want or not to have cache enabled, instead of require a machine override. Signed-off-by: Otavio Salvador ota...@ossystems.com.br

[OE-core] [PATCH 1/2] dhcp: move dhcp leases files handling to postinst/postrm

2012-02-06 Thread Otavio Salvador
Both server and client needs access to leases files so its creation and removal are now handled by postinst/postrm scripts. Signed-off-by: Otavio Salvador ota...@ossystems.com.br --- meta/recipes-connectivity/dhcp/dhcp.inc | 25 - meta/recipes-connectivity/dhcp

[OE-core] [PATCH 0/2 v2] Pending patches from O.S. Systems tree

2012-02-06 Thread Otavio Salvador
://github.com/OSSystems/oe-core master https://github.com/OSSystems/oe-core/tree/HEAD Otavio Salvador (2): dhcp: move dhcp leases files handling to postinst/postrm udev: stop providing cache support by default meta/recipes-connectivity/dhcp/dhcp.inc | 25

Re: [OE-core] [oe] Duplicate recipes in meta-oe

2012-02-06 Thread Otavio Salvador
to be resolved - should this be selectable? I don't think this is worth to be selectable. -- Otavio Salvador O.S. Systems E-mail: ota...@ossystems.com.br http://www.ossystems.com.br Mobile: +55 53 9981-7854 http://projetos.ossystems.com.br

Re: [OE-core] OE TSC Minutes: 30 January 2012

2012-02-06 Thread Otavio Salvador
. Cheers, -- Otavio Salvador O.S. Systems E-mail: ota...@ossystems.com.br http://www.ossystems.com.br Mobile: +55 53 9981-7854 http://projetos.ossystems.com.br ___ Openembedded-core mailing list Openembedded-core

Re: [OE-core] [PATCH 19/20] gcc-cross-testing: Fix evaluation of user and target name

2012-02-07 Thread Otavio Salvador
On Mon, Feb 6, 2012 at 04:40, Khem Raj raj.k...@gmail.com wrote: Dont use -q to grep we pipe to /dev/null anyway all we care is the return status of grep There're any reason to not use grep -q and drop the pipe? -- Otavio Salvador O.S. Systems E-mail: ota

Re: [OE-core] [PATCH 2/2] classes/buildhistory: sort list fields in package info

2012-02-07 Thread Otavio Salvador
On Tue, Feb 7, 2012 at 15:50, Koen Kooi k...@dominion.thruhere.net wrote: Sorting PACKAGES is a bad idea, since order does matter in there. Agreed. Even installed depends might change depending on the installation order. -- Otavio Salvador O.S. Systems E-mail: ota

Re: [OE-core] [PATCH 1/1] nspr: Integrate version 4.8.9

2012-02-07 Thread Otavio Salvador
Acked-by: Otavio Salvador ota...@ossystems.com.br On Tue, Feb 7, 2012 at 16:19, Andrei Gherzan and...@gherzan.ro wrote: Signed-off-by: Andrei Gherzan and...@gherzan.ro Signed-off-by: Sergey 'Jin' Bostandzhyan j...@mediatomb.cc --- meta/recipes-support/nspr/files/nspr.pc.in | 11

Re: [OE-core] [PATCH 1/3] cross.bbclass: add virtclass handler

2012-02-07 Thread Otavio Salvador
using the virtclass-cross override in the recipe. The above code can't have been doing much that is sensible anyway. Right. I did it and will send an updated patch tomorrow after a from scratch build. -- Otavio Salvador O.S. Systems E-mail: ota...@ossystems.com.br

Re: [OE-core] [PATCH 1/2] dhcp: Update to 4.2.3-P2

2012-02-07 Thread Otavio Salvador
discussions about / and /usr boundry issues.) What would be the fix for it? move dhclient onto /usr/sbin? -- Otavio Salvador O.S. Systems E-mail: ota...@ossystems.com.br http://www.ossystems.com.br Mobile: +55 53 9981-7854 http://projetos.ossystems.com.br

[OE-core] [PATCH 3/4] cross.bbclass: add virtclass handler

2012-02-07 Thread Otavio Salvador
Allow use of BBCLASSEXTEND with 'cross' and use of virtclass-cross in recipes. Signed-off-by: Otavio Salvador ota...@ossystems.com.br --- meta/classes/cross.bbclass | 39 +++ 1 files changed, 39 insertions(+), 0 deletions(-) diff --git a/meta/classes

[OE-core] [PATCH 1/4] dhcp: move dhcp leases files handling to postinst/postrm

2012-02-07 Thread Otavio Salvador
Both server and client needs access to leases files so its creation and removal are now handled by postinst/postrm scripts. Signed-off-by: Otavio Salvador ota...@ossystems.com.br --- meta/recipes-connectivity/dhcp/dhcp.inc | 25 - meta/recipes-connectivity/dhcp

[OE-core] [PATCH 2/4] udev: stop providing cache support by default

2012-02-07 Thread Otavio Salvador
The usefulness of cache nowadays has been reduced a lot and thus it's better to stop using it by default. Dropping the recommends allows for image to decide if they want or not to have cache enabled, instead of require a machine override. Signed-off-by: Otavio Salvador ota...@ossystems.com.br

[OE-core] [PATCH 0/4] Pending patches at O.S. Systems' tree

2012-02-07 Thread Otavio Salvador
-02-03 17:23:28 +) are available in the git repository at: git://github.com/OSSystems/oe-core master https://github.com/OSSystems/oe-core/tree/HEAD Otavio Salvador (4): dhcp: move dhcp leases files handling to postinst/postrm udev: stop providing cache support by default cross.bbclass

[OE-core] [PATCH 4/4] useradd.bbclass: skip processing on virtclass-cross extended packages

2012-02-07 Thread Otavio Salvador
Signed-off-by: Otavio Salvador ota...@ossystems.com.br --- meta/classes/useradd.bbclass |3 +++ 1 files changed, 3 insertions(+), 0 deletions(-) diff --git a/meta/classes/useradd.bbclass b/meta/classes/useradd.bbclass index 8eb6444..1fed755 100644 --- a/meta/classes/useradd.bbclass +++ b

Re: [OE-core] [PATCH 3/4] cross.bbclass: add virtclass handler

2012-02-08 Thread Otavio Salvador
-chicken layer ( https://github.com/OSSystems/meta-chicken). I agree about dropping map_dependencies from it. I will look at it and send it again. -- Otavio Salvador O.S. Systems E-mail: ota...@ossystems.com.br http://www.ossystems.com.br Mobile: +55 53 9981-7854

[OE-core] [PATCH 0/2] Patches pending from O.S. Systems' tree

2012-02-08 Thread Otavio Salvador
in the git repository at: git://github.com/OSSystems/oe-core master https://github.com/OSSystems/oe-core/tree/HEAD Otavio Salvador (2): cross.bbclass: add virtclass handler useradd.bbclass: skip processing on virtclass-cross extended packages meta/classes/cross.bbclass | 17

[OE-core] [PATCH 1/2] cross.bbclass: add virtclass handler

2012-02-08 Thread Otavio Salvador
Allow use of BBCLASSEXTEND with 'cross' and use of virtclass-cross in recipes. Signed-off-by: Otavio Salvador ota...@ossystems.com.br --- meta/classes/cross.bbclass | 17 + 1 files changed, 17 insertions(+), 0 deletions(-) diff --git a/meta/classes/cross.bbclass b/meta/classes

[OE-core] [PATCH 2/2] useradd.bbclass: skip processing on virtclass-cross extended packages

2012-02-08 Thread Otavio Salvador
Signed-off-by: Otavio Salvador ota...@ossystems.com.br --- meta/classes/useradd.bbclass |3 +++ 1 files changed, 3 insertions(+), 0 deletions(-) diff --git a/meta/classes/useradd.bbclass b/meta/classes/useradd.bbclass index 8eb6444..1fed755 100644 --- a/meta/classes/useradd.bbclass +++ b

Re: [OE-core] systemd.bbclass problems

2012-02-08 Thread Otavio Salvador
to be squashed ;-) -- Otavio Salvador O.S. Systems E-mail: ota...@ossystems.com.br http://www.ossystems.com.br Mobile: +55 53 9981-7854 http://projetos.ossystems.com.br ___ Openembedded-core mailing list Openembedded-core

Re: [OE-core] [PATCH] dhcp: Update to 4.2.3-P2

2012-02-08 Thread Otavio Salvador
message. He is doing that because it links against libcrypt that is at ${libdir}. But it clearly needs to be in another commit or, at least, explicit in the changlog. -- Otavio Salvador O.S. Systems E-mail: ota...@ossystems.com.br http://www.ossystems.com.br Mobile

Re: [OE-core] [PATCH] dhcp: Update to 4.2.3-P2

2012-02-08 Thread Otavio Salvador
for this. -- Otavio Salvador O.S. Systems E-mail: ota...@ossystems.com.br http://www.ossystems.com.br Mobile: +55 53 9981-7854 http://projetos.ossystems.com.br ___ Openembedded-core mailing list Openembedded-core

Re: [OE-core] [RFC PATCH 0/4] qmake/qt4-tools-nativesdk fixes

2012-02-09 Thread Otavio Salvador
Acked-by. Acked-by: Otavio Salvador ota...@ossystems.com.br -- Otavio Salvador O.S. Systems E-mail: ota...@ossystems.com.br http://www.ossystems.com.br Mobile: +55 53 9981-7854 http://projetos.ossystems.com.br

Re: [OE-core] [PATCH] nspr: Compile nspr with tests 1. Compile package tests suite 2. Add patch for removing rpath from binaries 3. Add tests to -dev rpm as it needs dev libraries

2012-02-11 Thread Otavio Salvador
On Sat, Feb 11, 2012 at 10:46, Andrei Gherzan and...@gherzan.ro wrote: +do_compile_append() { +cd pr/tests +make +} I'd prefer if you might use: oe_runmake -C pr/tests Ought to do the same. -- Otavio Salvador O.S. Systems E-mail: ota

Re: [OE-core] [oe-core][RFC] zlib: export LDCONFIG = true to disable runnig host's ldconfig

2012-02-11 Thread Otavio Salvador
building zlib(-native) and I have to call touch */libstdc++.so /sbin/ldconfig to fix it hmm does it happen only with native or with both ? i think we need to fix zlib install in this case. I agree; setting LDCONFIG to true workarounds this instead of fixing it. -- Otavio Salvador

Re: [OE-core] [PATCH 1/1] base.bbclass: look in layers for SRC_URI with MACHINE overrides too

2012-02-11 Thread Otavio Salvador
with overrides. If the layer doesn't use a machine override, then: * it is not machine depdendant, or * is a bug in the layer People agree with this point of view? -- Otavio Salvador O.S. Systems E-mail: ota...@ossystems.com.br http://www.ossystems.com.br Mobile: +55 53 9981

Re: [OE-core] [PATCH] libsdl: add fix for new _XGetRequest symbol backported to libx11

2012-02-15 Thread Otavio Salvador
On Wed, Feb 15, 2012 at 15:40, Martin Jansa martin.ja...@gmail.com wrote: +Upstrea-Status: Accepted Typo! -- Otavio Salvador O.S. Systems E-mail: ota...@ossystems.com.br http://www.ossystems.com.br Mobile: +55 53 9981-7854 http

Re: [OE-core] RFC: Qt session management is disabled via QT_DISTRO_FLAGS

2012-02-16 Thread Otavio Salvador
On Thu, Feb 16, 2012 at 11:04, Samuel Stirtzel s.stirt...@googlemail.comwrote: Anyone knows if enabling session management in Qt is a bad idea, or if there is another way of solving this? I don't think it is going to be a problem to have it enabled on x11 flavour. -- Otavio Salvador

[OE-core] [PATCH 0/3] Pending O.S. Systems' tree patches

2012-02-17 Thread Otavio Salvador
The following changes since commit e5ad03093dfc4364d1407183f458df79f347c7a1: guile: fix cross configure failure (2012-02-10 13:38:16 +) are available in the git repository at: git://github.com/OSSystems/oe-core master https://github.com/OSSystems/oe-core/tree/HEAD Otavio Salvador (3

[OE-core] [PATCH 1/3] update-rc.d.bbclass: do nothing for extended cross packages

2012-02-17 Thread Otavio Salvador
Signed-off-by: Otavio Salvador ota...@ossystems.com.br --- meta/classes/update-rc.d.bbclass |1 + 1 files changed, 1 insertions(+), 0 deletions(-) diff --git a/meta/classes/update-rc.d.bbclass b/meta/classes/update-rc.d.bbclass index e72cf78..db88a8e 100644 --- a/meta/classes/update

[OE-core] [PATCH 2/3] rootfs_ipk.bbclass: fix status file location in rootfs

2012-02-17 Thread Otavio Salvador
This fixes runtime requirement checking and read-only-fs checking. Signed-off-by: Otavio Salvador ota...@ossystems.com.br --- meta/classes/rootfs_ipk.bbclass |5 ++--- 1 files changed, 2 insertions(+), 3 deletions(-) diff --git a/meta/classes/rootfs_ipk.bbclass b/meta/classes

Re: [OE-core] [PATCH 3/3] rootfs_ipk.bbclass: fix unpacked postinst support if no package management

2012-02-17 Thread Otavio Salvador
On Fri, Feb 17, 2012 at 15:51, Phil Blundell ph...@gnu.org wrote: On Fri, 2012-02-17 at 17:47 +, Otavio Salvador wrote: When building without package management we can end with a system without opkg and thus without support for running unfinished postinsts on first boot, we fix

Re: [OE-core] [PATCH 3/3] rootfs_ipk.bbclass: fix unpacked postinst support if no package management

2012-02-17 Thread Otavio Salvador
${POSTINSTALL_INITPOSITION}configure $D${sysconfdir}/rcS.d/S${POSTINSTALL_INITPOSITION}configure chmod 0755 $D${sysconfdir}/rcS.d/S${POSTINSTALL_INITPOSITION}configure fi ... -- Otavio Salvador O.S. Systems E-mail: ota...@ossystems.com.br http://www.ossystems.com.br Mobile: +55 53

Re: [OE-core] [PATCH 3/3] rootfs_ipk.bbclass: fix unpacked postinst support if no package management

2012-02-17 Thread Otavio Salvador
small image and I expect that independently of what I choose, rootfs behave right. I think we can check for 98configure and 98run-postinsts, instead of opkg-cl, but something as I added is still useful as a safe route. -- Otavio Salvador O.S. Systems E-mail: ota

Re: [OE-core] [PATCH 3/3] rootfs_ipk.bbclass: fix unpacked postinst support if no package management

2012-02-17 Thread Otavio Salvador
On Fri, Feb 17, 2012 at 18:29, Phil Blundell ph...@gnu.org wrote: On Fri, 2012-02-17 at 18:14 -0200, Otavio Salvador wrote: On Fri, Feb 17, 2012 at 18:11, Phil Blundell ph...@gnu.org wrote: We seem to be going in circles here but, to go back to what I said

Re: [OE-core] [PATCH 0/1] A script to clean obsolete sstate cache files

2012-02-22 Thread Otavio Salvador
) Removing the sstate-xxx_populate-lic.tgz ... (2482 files) Removing the sstate-xxx_populate-sysroot.tgz ... (3282 files) 12088 files have been removed That's awesome. I was looking for a script for this. Can you please resend it based on oe-core? I'll give it a good test. -- Otavio Salvador

Re: [OE-core] [PATCH 0/1] A script to clean obsolete sstate cache files

2012-02-22 Thread Otavio Salvador
. Because this mean to have and maintain a full clone of the repository and I don't want and I won't do that. OE-Core is the base, the mailing list is based on it so it is expected of it being based on OE-Core. -- Otavio Salvador                             O.S. Systems E-mail: ota

Re: [OE-core] [PATCH 0/1] A script to clean obsolete sstate cache files

2012-02-22 Thread Otavio Salvador
. -- Otavio Salvador                             O.S. Systems E-mail: ota...@ossystems.com.br  http://www.ossystems.com.br Mobile: +55 53 9981-7854              http://projetos.ossystems.com.br ___ Openembedded-core mailing list Openembedded-core

Re: [OE-core] Linker error while cross compiling, (Qt issue?)

2012-02-22 Thread Otavio Salvador
advice is to check the build system of libdbusmenu-qt and check if it has any linking blackmagic or something like that. -- Otavio Salvador                             O.S. Systems E-mail: ota...@ossystems.com.br  http://www.ossystems.com.br Mobile: +55 53 9981-7854              http

Re: [OE-core] [PATCH 0/1] A script to clean obsolete sstate cache files

2012-02-22 Thread Otavio Salvador
a nightmare for all people involved in OE-Core. -- Otavio Salvador                             O.S. Systems E-mail: ota...@ossystems.com.br  http://www.ossystems.com.br Mobile: +55 53 9981-7854              http://projetos.ossystems.com.br ___ Openembedded-core

Re: [OE-core] Linker error while cross compiling, (Qt issue?)

2012-02-22 Thread Otavio Salvador
On Wed, Feb 22, 2012 at 14:06, Samuel Stirtzel s.stirt...@googlemail.com wrote: 2012/2/22 Otavio Salvador ota...@ossystems.com.br: On Wed, Feb 22, 2012 at 13:53, Samuel Stirtzel s.stirt...@googlemail.com wrote: This error really puzzles me, usually I would assume that a library has

Re: [OE-core] [PATCH 0/1] A script to clean obsolete sstate cache files

2012-02-22 Thread Otavio Salvador
On Wed, Feb 22, 2012 at 14:09, Richard Purdie richard.pur...@linuxfoundation.org wrote: On Wed, 2012-02-22 at 13:56 -0200, Otavio Salvador wrote: On Wed, Feb 22, 2012 at 13:53, Paul Eggleton paul.eggle...@linux.intel.com wrote: Except here we are talking about a single patch that adds

Re: [OE-core] Linker error while cross compiling, (Qt issue?)

2012-02-23 Thread Otavio Salvador
need to play with Q_DECL_EXPORT / Q_DECL_IMPORT so most probably code is doing it wrong. -- Otavio Salvador                             O.S. Systems E-mail: ota...@ossystems.com.br  http://www.ossystems.com.br Mobile: +55 53 9981-7854              http://projetos.ossystems.com.br

Re: [OE-core] [PATCH] sstatesig.py: Move package exclusion list to the layer config

2012-02-23 Thread Otavio Salvador
to read a diff changing this, in future. -- Otavio Salvador                             O.S. Systems E-mail: ota...@ossystems.com.br  http://www.ossystems.com.br Mobile: +55 53 9981-7854              http://projetos.ossystems.com.br ___ Openembedded-core

Re: [OE-core] [PATCH 00/16] Various fixes, mostly for WARNING messages

2012-02-23 Thread Otavio Salvador
instead of adding it on -dev. I didn't build-test it as it is based on Poky. -- Otavio Salvador                             O.S. Systems E-mail: ota...@ossystems.com.br  http://www.ossystems.com.br Mobile: +55 53 9981-7854              http://projetos.ossystems.com.br

Re: [OE-core] package version went backwards

2012-02-23 Thread Otavio Salvador
On Thu, Feb 23, 2012 at 21:35, Andreas Oberritter o...@opendreambox.org wrote: ERROR: Package version for package sysvinit-inittab went backwards which would break package feeds from (0:2.88dsf-r6 to 0:2.88dsf-r6-dream1) This is indeed a bug in the versioning code. :-( -- Otavio Salvador

[OE-core] [PATCH 0/2] Pending patches in O.S. Systems' tree

2012-02-24 Thread Otavio Salvador
The following changes since commit 22194a04f224864dd687660e351a3a10da1f06fa: scripts/hob: Launch the new hob (2012-02-24 18:05:46 +) are available in the git repository at: git://github.com/OSSystems/oe-core master https://github.com/OSSystems/oe-core/tree/HEAD Otavio Salvador (2

[OE-core] [PATCH 2/2] useradd.bbclass: override USERADDSETSCENEDEPS to empty when building cross packages

2012-02-24 Thread Otavio Salvador
Signed-off-by: Otavio Salvador ota...@ossystems.com.br --- meta/classes/useradd.bbclass |1 + 1 files changed, 1 insertions(+), 0 deletions(-) diff --git a/meta/classes/useradd.bbclass b/meta/classes/useradd.bbclass index 1fed755..db874bc 100644 --- a/meta/classes/useradd.bbclass +++ b/meta

Re: [OE-core] [oe-commits] Joshua Lock : netbase: remove redundant assignments

2012-02-27 Thread Otavio Salvador
:-D -- Otavio Salvador                             O.S. Systems E-mail: ota...@ossystems.com.br  http://www.ossystems.com.br Mobile: +55 53 9981-7854              http://projetos.ossystems.com.br ___ Openembedded-core mailing list Openembedded-core

Re: [OE-core] [PATCH] qt4.inc: depend on tiff

2012-02-27 Thread Otavio Salvador
On Mon, Feb 27, 2012 at 14:10, Andreas Oberritter o...@opendreambox.org wrote: * Fixes the following error with qt4-embedded-4.8.0 and possibly others: | ../../../gui/image/qtiffhandler.cpp:48:20: fatal error: tiffio.h: No such file or directory Please bump INC_PR. -- Otavio Salvador

Re: [OE-core] [PATCH v2] qt4.inc: depend on tiff

2012-02-27 Thread Otavio Salvador
and commited onto master. -- Otavio Salvador                             O.S. Systems E-mail: ota...@ossystems.com.br  http://www.ossystems.com.br Mobile: +55 53 9981-7854              http://projetos.ossystems.com.br ___ Openembedded-core mailing list

Re: [OE-core] [PATCH v2] qt4.inc: depend on tiff

2012-02-28 Thread Otavio Salvador
at least by poky autobuilders (if they are building qt4). We're not using auto PR yet so let's keep the regular flow for now. -- Otavio Salvador                             O.S. Systems E-mail: ota...@ossystems.com.br  http://www.ossystems.com.br Mobile: +55 53 9981-7854              http

[OE-core] [PATCH 1/1] syslinux: bump PR

2012-02-28 Thread Otavio Salvador
The change done in 868a81e869a6193aada2073ae533d937a1c0baf4 has changed the packaging however it haven't bump the PR making auto-building fail. Signed-off-by: Otavio Salvador ota...@ossystems.com.br --- meta/recipes-devtools/syslinux/syslinux_4.03.bb |2 +- 1 files changed, 1 insertions

[OE-core] [PATCH 1/1] licenses.conf: fix quotting of SRC_DISTRIBUTE_LICENSES

2012-02-28 Thread Otavio Salvador
Signed-off-by: Otavio Salvador ota...@ossystems.com.br --- meta/conf/licenses.conf |2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/meta/conf/licenses.conf b/meta/conf/licenses.conf index e2f6149..6ed4dfe 100644 --- a/meta/conf/licenses.conf +++ b/meta/conf/licenses.conf

Re: [OE-core] [PATCH 2/2] syslinux: Package unpackaged files in -misc

2012-02-28 Thread Otavio Salvador
On Fri, Feb 24, 2012 at 16:59, Saul Wold s...@linux.intel.com wrote: Signed-off-by: Saul Wold s...@linux.intel.com This missed a PR bump and broke autobuilder; can you send a patch bumping PR please? -- Otavio Salvador                             O.S. Systems E-mail: ota...@ossystems.com.br

Re: [OE-core] [PATCH] image_types: Refactor compression code into a generic compression solution

2012-02-28 Thread Otavio Salvador
. In the log.do_rootfs there is also a strange I found many issues with shell variable expanding in current bitbake; I described the issue in #yocto but it seems I am the only one to have those problems. Basically it seems: export FOO=bar Parses fine but /don't work/. export FOO=bar Works. -- Otavio

Re: [OE-core] [PATCH 1/1] bootimg.bbclass: Quoting fixes

2012-02-28 Thread Otavio Salvador
On Tue, Feb 28, 2012 at 21:23, Beth Flanagan elizabeth.flana...@intel.com wrote: More quoting issues during an fri build. Fixing as per standard. Already done by Saul :) -- Otavio Salvador                             O.S. Systems E-mail: ota...@ossystems.com.br  http://www.ossystems.com.br

[OE-core] [PATCH 0/3] Pending patches from O.S. Systems' tree

2012-02-28 Thread Otavio Salvador
Otavio Salvador (3): image.bbclass: do not create image manifest link if IMAGE_LINK_NAME is empty image_types.bbclass: properly support IMAGE_LINK_NAME as empty image_types.bbclass: fix bzip2 and xz compression commands meta/classes/image.bbclass |6 -- meta/classes

[OE-core] [PATCH 1/3] image.bbclass: do not create image manifest link if IMAGE_LINK_NAME is empty

2012-02-28 Thread Otavio Salvador
Signed-off-by: Otavio Salvador ota...@ossystems.com.br --- meta/classes/image.bbclass |6 -- 1 files changed, 4 insertions(+), 2 deletions(-) diff --git a/meta/classes/image.bbclass b/meta/classes/image.bbclass index 4db55ff..ec75cc1 100644 --- a/meta/classes/image.bbclass +++ b/meta

[OE-core] [PATCH 2/3] image_types.bbclass: properly support IMAGE_LINK_NAME as empty

2012-02-28 Thread Otavio Salvador
Signed-off-by: Otavio Salvador ota...@ossystems.com.br --- meta/classes/image_types.bbclass | 14 +- 1 files changed, 9 insertions(+), 5 deletions(-) diff --git a/meta/classes/image_types.bbclass b/meta/classes/image_types.bbclass index 74071c1..f9ed49f 100644 --- a/meta/classes

[OE-core] [PATCH 3/3] image_types.bbclass: fix bzip2 and xz compression commands

2012-02-28 Thread Otavio Salvador
We need to use -f (force) or the command fails in the image file already exists. Signed-off-by: Otavio Salvador ota...@ossystems.com.br --- meta/classes/image_types.bbclass |4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff --git a/meta/classes/image_types.bbclass b/meta/classes

[OE-core] [PATCH] syslinux: fix packaging of ${PN} and ${PN}-staticdev

2012-02-28 Thread Otavio Salvador
- ${PN} where not being build due ordering; - ${PN}-staticdev lacked the ${libdir} files. Signed-off-by: Otavio Salvador ota...@ossystems.com.br --- meta/recipes-devtools/syslinux/syslinux_4.03.bb |6 +++--- 1 files changed, 3 insertions(+), 3 deletions(-) diff --git a/meta/recipes

Re: [OE-core] [PATCH 1/1] More quoting fixes

2012-02-29 Thread Otavio Salvador
On Wed, Feb 29, 2012 at 09:59, Paul Eggleton paul.eggle...@linux.intel.com wrote: -export VERBOSE=1 +export VERBOSE=1 I fully agree with the change but here it doesn't raise a parser error. Isn't it expected to happen? -- Otavio Salvador                             O.S. Systems E-mail: ota

Re: [OE-core] [PATCH 1/1] More quoting fixes

2012-02-29 Thread Otavio Salvador
On Wed, Feb 29, 2012 at 10:26, Richard Purdie rpur...@rpsys.net wrote: No. I added something to bitbake a short while ago and these are parser errors now! Good. -- Otavio Salvador                             O.S. Systems E-mail: ota...@ossystems.com.br  http://www.ossystems.com.br Mobile: +55

Re: [OE-core] [PATCH] initscripts: Properly handle new timestamp format

2012-03-01 Thread Otavio Salvador
in meanwhile so Richard can apply it once he has some time and restore the right behavior. -- Otavio Salvador                             O.S. Systems E-mail: ota...@ossystems.com.br  http://www.ossystems.com.br Mobile: +55 53 9981-7854              http://projetos.ossystems.com.br

[OE-core] [PATCH 1/1] image.bbclass: fix rootfs generation without package management tools

2012-03-02 Thread Otavio Salvador
available for proper rootfs generation. Signed-off-by: Otavio Salvador ota...@ossystems.com.br --- meta/classes/core-image.bbclass |2 -- meta/classes/image.bbclass |7 +-- 2 files changed, 5 insertions(+), 4 deletions(-) diff --git a/meta/classes/core-image.bbclass b/meta/classes/core

[OE-core] [PATCH 3/4] rootfs_rpm.bbclass: rename postinst trigger script

2012-03-03 Thread Otavio Salvador
Use 'run-postinsts' as trigger script name for consistency against package managers. Signed-off-by: Otavio Salvador ota...@ossystems.com.br --- meta/classes/rootfs_rpm.bbclass |6 +++--- 1 files changed, 3 insertions(+), 3 deletions(-) diff --git a/meta/classes/rootfs_rpm.bbclass b/meta

[OE-core] [PATCH 1/4] run-postinsts: fix opkg data path

2012-03-03 Thread Otavio Salvador
Signed-off-by: Otavio Salvador ota...@ossystems.com.br --- .../dpkg/run-postinsts/run-postinsts |4 ++-- .../dpkg/run-postinsts/run-postinsts.awk |2 +- meta/recipes-devtools/dpkg/run-postinsts_1.0.bb|2 +- 3 files changed, 4 insertions(+), 4 deletions

[OE-core] [PATCH 4/4] opkg: rename postinst trigger script

2012-03-03 Thread Otavio Salvador
Use 'run-postinsts' as trigger script name for consistency against package managers. Signed-off-by: Otavio Salvador ota...@ossystems.com.br --- meta/recipes-devtools/opkg/opkg.inc |8 1 files changed, 4 insertions(+), 4 deletions(-) diff --git a/meta/recipes-devtools/opkg/opkg.inc

[OE-core] [PATCH 2/4] image.bbclass: fix rootfs generation without package management tools

2012-03-03 Thread Otavio Salvador
available for proper rootfs generation. Signed-off-by: Otavio Salvador ota...@ossystems.com.br --- meta/classes/core-image.bbclass |2 -- meta/classes/image.bbclass |7 +-- 2 files changed, 5 insertions(+), 4 deletions(-) diff --git a/meta/classes/core-image.bbclass b/meta/classes/core

Re: [OE-core] [PATCH 0/4] Postinst trigger improvements for images

2012-03-03 Thread Otavio Salvador
On Sat, Mar 3, 2012 at 14:39, Otavio Salvador ota...@ossystems.com.br wrote: Otavio Salvador (4):  run-postinsts: fix opkg data path  image.bbclass: fix rootfs generation without package management tools  rootfs_rpm.bbclass: rename postinst trigger script  opkg: rename postinst trigger script

Re: [OE-core] [PATCH 3/4] rootfs_rpm.bbclass: rename postinst trigger script

2012-03-05 Thread Otavio Salvador
to change wording I do. -- Otavio Salvador                             O.S. Systems E-mail: ota...@ossystems.com.br  http://www.ossystems.com.br Mobile: +55 53 9981-7854              http://projetos.ossystems.com.br ___ Openembedded-core mailing list

Re: [OE-core] read only rootfs?

2012-03-05 Thread Otavio Salvador
it might just work or need few fixes for some postinsts to work in offline mode. -- Otavio Salvador                             O.S. Systems E-mail: ota...@ossystems.com.br  http://www.ossystems.com.br Mobile: +55 53 9981-7854              http://projetos.ossystems.com.br

Re: [OE-core] read only rootfs?

2012-03-05 Thread Otavio Salvador
not, then it can be run in read-only mode. -- Otavio Salvador                             O.S. Systems E-mail: ota...@ossystems.com.br  http://www.ossystems.com.br Mobile: +55 53 9981-7854              http://projetos.ossystems.com.br ___ Openembedded

Re: [OE-core] [CONSOLIDATED PULL 04/20] image.bbclass: fix rootfs generation without package management tools

2012-03-06 Thread Otavio Salvador
on the other patches of the same set as it will break systemd based images without a proper patch in meta-oe just after it. -- Otavio Salvador                             O.S. Systems E-mail: ota...@ossystems.com.br  http://www.ossystems.com.br Mobile: +55 53 9981-7854              http

[OE-core] [PATCH v2 0/5] Postinst trigger improvements for images

2012-03-06 Thread Otavio Salvador
repository at: git://github.com/OSSystems/oe-core master https://github.com/OSSystems/oe-core/tree/HEAD Otavio Salvador (5): run-postinsts: fix opkg data path image.bbclass: fix rootfs generation without package management tools rootfs_rpm.bbclass: rename postinst trigger script opkg: rename

[OE-core] [PATCH v2 1/5] run-postinsts: fix opkg data path

2012-03-06 Thread Otavio Salvador
Signed-off-by: Otavio Salvador ota...@ossystems.com.br --- .../dpkg/run-postinsts/run-postinsts |4 ++-- .../dpkg/run-postinsts/run-postinsts.awk |2 +- meta/recipes-devtools/dpkg/run-postinsts_1.0.bb|2 +- 3 files changed, 4 insertions(+), 4 deletions

[OE-core] [PATCH v2 2/5] image.bbclass: fix rootfs generation without package management tools

2012-03-06 Thread Otavio Salvador
available for proper rootfs generation. Signed-off-by: Otavio Salvador ota...@ossystems.com.br --- meta/classes/core-image.bbclass |2 -- meta/classes/image.bbclass |7 +-- 2 files changed, 5 insertions(+), 4 deletions(-) diff --git a/meta/classes/core-image.bbclass b/meta/classes/core

[OE-core] [PATCH v2 5/5] dpkg: rename postinst trigger script

2012-03-06 Thread Otavio Salvador
Use 'run-postinsts' as trigger script name as it describes better the intent of it. Signed-off-by: Otavio Salvador ota...@ossystems.com.br --- meta/recipes-devtools/dpkg/dpkg.inc |8 1 files changed, 4 insertions(+), 4 deletions(-) diff --git a/meta/recipes-devtools/dpkg/dpkg.inc

[OE-core] [PATCH v2 4/5] opkg: rename postinst trigger script

2012-03-06 Thread Otavio Salvador
Use 'run-postinsts' as trigger script name as it describes better the intent of it. Signed-off-by: Otavio Salvador ota...@ossystems.com.br --- meta/recipes-devtools/opkg/opkg.inc |8 1 files changed, 4 insertions(+), 4 deletions(-) diff --git a/meta/recipes-devtools/opkg/opkg.inc

Re: [OE-core] [PATCH] udev-164: don't hardcode path to pidof

2012-03-08 Thread Otavio Salvador
Acked-by: Otavio Salvador ota...@ossystems.com.br On Thu, Mar 8, 2012 at 09:08, Andreas Oberritter o...@opendreambox.org wrote: * pidof lives in /bin, search it in $PATH. * Assume pidof's presence. Signed-off-by: Andreas Oberritter o...@opendreambox.org -- Otavio Salvador

[OE-core] [PATCH 0/6] Pending patches on O.S. Systems' tree

2012-03-09 Thread Otavio Salvador
-core/tree/HEAD Otavio Salvador (6): run-postinsts: fix opkg data path image.bbclass: fix rootfs generation without package management tools rootfs_rpm.bbclass: rename postinst trigger script opkg: rename postinst trigger script dpkg: rename postinst trigger script connman: update to 0.79

[OE-core] [PATCH 1/6] run-postinsts: fix opkg data path

2012-03-09 Thread Otavio Salvador
Signed-off-by: Otavio Salvador ota...@ossystems.com.br --- .../dpkg/run-postinsts/run-postinsts |4 ++-- .../dpkg/run-postinsts/run-postinsts.awk |2 +- meta/recipes-devtools/dpkg/run-postinsts_1.0.bb|2 +- 3 files changed, 4 insertions(+), 4 deletions

[OE-core] [PATCH 2/6] image.bbclass: fix rootfs generation without package management tools

2012-03-09 Thread Otavio Salvador
available for proper rootfs generation. Signed-off-by: Otavio Salvador ota...@ossystems.com.br --- meta/classes/core-image.bbclass |2 -- meta/classes/image.bbclass |7 +-- 2 files changed, 5 insertions(+), 4 deletions(-) diff --git a/meta/classes/core-image.bbclass b/meta/classes/core

[OE-core] [PATCH 4/6] opkg: rename postinst trigger script

2012-03-09 Thread Otavio Salvador
Use 'run-postinsts' as trigger script name as it describes better the intent of it. Signed-off-by: Otavio Salvador ota...@ossystems.com.br --- meta/recipes-devtools/opkg/opkg.inc |8 1 files changed, 4 insertions(+), 4 deletions(-) diff --git a/meta/recipes-devtools/opkg/opkg.inc

[OE-core] [PATCH 3/6] rootfs_rpm.bbclass: rename postinst trigger script

2012-03-09 Thread Otavio Salvador
Use 'run-postinsts' as trigger script name as it describes better the intent of it. Signed-off-by: Otavio Salvador ota...@ossystems.com.br --- meta/classes/rootfs_rpm.bbclass |6 +++--- 1 files changed, 3 insertions(+), 3 deletions(-) diff --git a/meta/classes/rootfs_rpm.bbclass b/meta

<    1   2   3   4   5   6   7   8   9   10   >