[OE-core] [PATCH 1/1] opkg: create run-scripts file conditionally

2013-03-25 Thread Kang Kai
This bug occurs on rpm-based sdk image. update-alternatives-cworth is default installed into sato image. And for sato-sdk image, it installs every related dev packages. update-alternatives-cworth is from opkg, so opkg-dev is installed and it requires opkg, then opkg is installed into sato-sdk imag

[OE-core] [PATCH 0/1] V2: Create postinstall script for opkg conditionally

2013-03-25 Thread Kang Kai
V2: Update commit comments The following changes since commit f36926a264190e6202830e8520b41b30ae77ea43: docbook-utils-native: Unbreak the build after source and build dir split (2013-03-25 20:51:19 +) are available in the git repository at: git://git.pokylinux.org/poky-contrib kangkai/d

[OE-core] [OE-Core][PATCH] binutils: Don't generate .PPC.EMB.apuinfo sections for 64-bit output

2013-03-25 Thread Khem Raj
This can cause issues building ppc64/eabi kernel. For details see the patch header Signed-off-by: Khem Raj --- meta/recipes-devtools/binutils/binutils-2.23.1.inc |1 + ...pc.c-md_assemble-Do-not-generate-APUinfo-.patch | 46 2 files changed, 47 insertions(+) create mo

[OE-core] [PATCH 0/1] init-install.sh: remove unnecessary udev rules file to avoid error messages

2013-03-25 Thread Qi.Chen
From: Chen Qi The following changes since commit 3c5f4d54d01887a117bf659fc9af6b2b892c2b08: separatebuilddir.inc: mxsldr should never have been added to this list, remove (2013-03-24 14:03:19 +) are available in the git repository at: git://git.pokylinux.org/poky-contrib ChenQi/init-in

[OE-core] [PATCH 1/1] init-install.sh: remove unnecessary udev rules file to avoid error messages

2013-03-25 Thread Qi.Chen
From: Chen Qi /etc/udev/scripts/mount.sh is removed by init-install.sh, but the udev rules file which specifies the invocation of this script is not removed, thus causing the error message '/etc/udev/scripts/mount.sh: No such file or directory' shown at a live install. The /etc/udev/rules/automo

[OE-core] [PATCH 0/1] V2: Add libraries to lsb image

2013-03-25 Thread Kang Kai
V2: put libpng_1.2.50.bb to meta-lsb4 The following changes since commit f36926a264190e6202830e8520b41b30ae77ea43: docbook-utils-native: Unbreak the build after source and build dir split (2013-03-25 20:51:19 +) are available in the git repository at: git://git.pokylinux.org/poky-contri

[OE-core] [PATCH 1/1] libpng: add version 1.2 back

2013-03-25 Thread Kang Kai
Current LSB 4.1 test suite still check libpng12.so, so add libpng 1.2.x back, and set it as default verison for linuxstdbase image. [YOCTO #4015] Signed-off-by: Kang Kai --- meta/conf/distro/include/default-versions.inc |3 +++ meta/recipes-lsb4/libpng/libpng_1.2.50.bb | 21 ++

Re: [OE-core] [PATCH] boost: Add real native support

2013-03-25 Thread Khem Raj
On Mar 12, 2013, at 7:49 AM, Stefan Herbrechtsmeier wrote: > The current boost recipe only creates the bjam build tool during > a native run and thereby is not usable for other native recipes > that depend on a boost library. Use instead the bjam build tool > from the do_boostconfig task and ad

[OE-core] [PATCH] rpm: Fix debugedit buildid processing

2013-03-25 Thread Mark Hatle
[ YOCTO #4089 ] When constructing a new buildid, the items being hashed need to be returned to their native endian. In the process we were munging the sh_type field that we relied on to determine if a section was loadable or not. The patch avoids this behavior by only modifying a copy of the loc

Re: [OE-core] [PATCH 1/2] libpng: add version 1.2 back

2013-03-25 Thread Kang Kai
On 2013年03月25日 18:52, Richard Purdie wrote: On Mon, 2013-03-25 at 18:21 +0800, Kang Kai wrote: Current LSB 4.1 test suite still check libpng12.so, so add libpng 1.2.x back, and set it as default verison for linuxstdbase image. [YOCTO 4015] Signed-off-by: Kang Kai --- meta/conf/distro/include

Re: [OE-core] [PATCH 1/1] opkg: create run-scripts file conditionally

2013-03-25 Thread Kang Kai
On 2013年03月25日 22:32, Richard Purdie wrote: On Mon, 2013-03-25 at 15:22 +0800, Kang Kai wrote: When build sato sdk image, opkg will be installed to image even the image package type is set to RPM. This causes the script file run-postinsts installed by rpm will be overwrited by opkg. Judge the i

[OE-core] [PATCH] gtk+: don't provide gtk-update-icon-cache-native

2013-03-25 Thread Andreas Müller
fixes: | ERROR: Multiple .bb files are due to be built which each provide virtual/gtk-update-icon-cache-native | (/home/Superandy/data/oe-core/sources/openembedded-core/meta/recipes-gnome/gtk+/gtk-update-icon-cache-native_3.4.4.bb | virtual:native:/home/Superandy/data/oe-core/sources/openembedde

Re: [OE-core] [PATCH 1/2 RFC] rpm: Add workaround for debugedit-segv

2013-03-25 Thread Mark Hatle
On 3/25/13 2:32 PM, Mark Hatle wrote: On 3/25/13 12:45 PM, Phil Blundell wrote: On Mon, 2013-03-25 at 12:10 -0500, Mark Hatle wrote: I'm going to look into identifying if the section is a NOBITS and skipping the whole operation if it is. That would mean that a change in the size of the .bss w

Re: [OE-core] [PATCH 1/1] dosfstools: really compile supporting large files [ Fix: 409915 ]

2013-03-25 Thread Chris Larson
On Mon, Mar 25, 2013 at 1:49 PM, Joe Slater wrote: > CQID: 409915 > > Makefile in the package tries to set _FILE_OFFSET_BITS=64, > but we clobber that with our CFLAGS, so we add it in > the recipe. > > Signed-off-by: Joe Slater > Afaik there is a largefile distro feature, should this use that,

[OE-core] [PATCH 1/1] dosfstools: really compile supporting large files [ Fix: 409915 ]

2013-03-25 Thread Joe Slater
CQID: 409915 Makefile in the package tries to set _FILE_OFFSET_BITS=64, but we clobber that with our CFLAGS, so we add it in the recipe. Signed-off-by: Joe Slater --- .../recipes-devtools/dosfstools/dosfstools_2.11.bb |7 ++- 1 files changed, 6 insertions(+), 1 deletions(-) diff --git

Re: [OE-core] [PATCH 1/2 RFC] rpm: Add workaround for debugedit-segv

2013-03-25 Thread Mark Hatle
On 3/25/13 12:45 PM, Phil Blundell wrote: On Mon, 2013-03-25 at 12:10 -0500, Mark Hatle wrote: I'm going to look into identifying if the section is a NOBITS and skipping the whole operation if it is. That would mean that a change in the size of the .bss wouldn't have any impact on the hash. M

[OE-core] [PATCH 0/1] Another buildhistory fix

2013-03-25 Thread Paul Eggleton
The following change since commit 48dfd61901ce07491ef913cf04dbd9de9a52759f: package.bbclass: Ensure debug source file is generated correctly (2013-03-25 17:39:56 +) is available in the git repository at: git://git.openembedded.org/openembedded-core-contrib paule/buildhistory-fix6 htt

[OE-core] [PATCH 1/1] classes/buildhistory: improve SRCREV recording

2013-03-25 Thread Paul Eggleton
Collect SRCREV information in a separate task and write it out in a format which is more consistent with the rest of the buildhistory output. Using a task means that SRCREV values will also be recorded for native recipes and not just target ones, and the new formatting also correctly handles multip

[OE-core] OE Changelog since 2013-03-17 until 2013-03-24

2013-03-25 Thread cliff . brake
Changelog since 2013-03-17 until 2013-03-24. Projects included in this report: bitbake: git://git.openembedded.org/bitbake openembedded-core: git://git.openembedded.org/openembedded-core meta-openembedded: git://git.openembedded.org/meta-openembedded meta-angstrom: git://github.com/Angstrom-distr

[OE-core] [OE-Core][PATCH] docbook-utils-native: Unbreak the build after source and build dir split

2013-03-25 Thread Khem Raj
docbook-utils-native started to install frontends and backends in wrong locations after this change. The absolute build and source directories were being created in install locations and the recipes using docbook-utils-native were complaining like dbus-java is saying | jw: There is no frontend cal

Re: [OE-core] [PATCH 0/2 RFC] workaround for debugedit segv

2013-03-25 Thread Richard Purdie
On Mon, 2013-03-25 at 12:19 -0500, Mark Hatle wrote: > [ YOCTO #4089 ] > > This is an attempt at a workaround for the debugedit segv. > > The problem is that during the creation of the build-id hash, the > system iterates over the various ELF sections passing a point to the > loaded data and size

Re: [OE-core] [PATCH 1/2 RFC] rpm: Add workaround for debugedit-segv

2013-03-25 Thread Phil Blundell
On Mon, 2013-03-25 at 12:10 -0500, Mark Hatle wrote: > I'm going to look into identifying if the section is a NOBITS and skipping > the > whole operation if it is. That would mean that a change in the size of the .bss wouldn't have any impact on the hash. Maybe that's fine for your application

Re: [OE-core] package.bbclass: Handle subprocess errors correctly

2013-03-25 Thread Chris Larson
On Mon, Mar 25, 2013 at 9:54 AM, Richard Purdie < richard.pur...@linuxfoundation.org> wrote: > If an error occurs in subprocess.call() we currently don't catch it. In > particular > we have issues where debugedit is segfaulting unnoticed. This fixes up > various code paths to catch the errors. >

Re: [OE-core] [PATCH V3 0/2] BlueZ 5.3 new package

2013-03-25 Thread Burton, Ross
On 25 March 2013 17:03, Martin Jansa wrote: > But opkg will still error out because of missing RPROVIDES, no? I'll admit that I didn't test an upgrade path, but the scenario I can see actually happening is that the distro flips its applications from bluez4 to bluez5 so they rdepend on bluez5 now.

Re: [OE-core] [PATCH 1/2 RFC] rpm: Add workaround for debugedit-segv

2013-03-25 Thread Mark Hatle
On 3/25/13 12:02 PM, Phil Blundell wrote: On Mon, 2013-03-25 at 12:19 -0500, Mark Hatle wrote: +Sections 23 and 24 (.plt and .bss) which are NOBITS have a loaded data address +of 0, but a size != 0. That doesn't seem like totally unreasonable behaviour for a NOBITS section. What were you expe

Re: [OE-core] [PATCH 1/2 RFC] rpm: Add workaround for debugedit-segv

2013-03-25 Thread Phil Blundell
On Mon, 2013-03-25 at 12:19 -0500, Mark Hatle wrote: > +Sections 23 and 24 (.plt and .bss) which are NOBITS have a loaded data > address > +of 0, but a size != 0. That doesn't seem like totally unreasonable behaviour for a NOBITS section. What were you expecting libelf to do in that case? ++

Re: [OE-core] [PATCH V3 0/2] BlueZ 5.3 new package

2013-03-25 Thread Martin Jansa
On Mon, Mar 25, 2013 at 04:23:26PM +, Burton, Ross wrote: > On 25 March 2013 16:09, Koen Kooi wrote: > > So you say it's not an upgrade path, but... > > > >> - bluez5 conflicts with/replaces bluez4. > > > > ... here you add RREPLACES. Why is that? > > The logic was that if a *distro* does th

[OE-core] package.bbclass: Handle subprocess errors correctly

2013-03-25 Thread Richard Purdie
If an error occurs in subprocess.call() we currently don't catch it. In particular we have issues where debugedit is segfaulting unnoticed. This fixes up various code paths to catch the errors. [YOCTO #4089] Signed-off-by: Richard Purdie --- diff --git a/meta/classes/package.bbclass b/meta/clas

[OE-core] [PATCH v2] gnupg: Add symlink for gpgv

2013-03-25 Thread Paul Barker
Gnupg 2.0.19 installs 'gpgv2' but apt-get and possibly other utilities expect to find this as 'gpgv'. A symlink is created in the same way as the link for 'gpg'. Signed-off-by: Paul Barker --- meta/recipes-support/gnupg/gnupg_2.0.19.bb |1 + 1 file changed, 1 insertion(+) diff --git a/meta/

[OE-core] [PATCH 2/2 RFC] package.bbclass: Trigger a bb.error if split/strip fails

2013-03-25 Thread Mark Hatle
[ YOCTO #4089 ] If debugedit, objcopy calls fail, capture the error and return a failure to the user. Signed-off-by: Mark Hatle --- meta/classes/package.bbclass | 24 1 file changed, 20 insertions(+), 4 deletions(-) diff --git a/meta/classes/package.bbclass b/meta/clas

[OE-core] [PATCH 1/2 RFC] rpm: Add workaround for debugedit-segv

2013-03-25 Thread Mark Hatle
[ YOCTO #4089 ] On PPC and MIPS, there appears to be a condition that causes debugedit to segfault. The segfault is related to a call into the md5hash algorithm, an address of '0', and a size > 0 is passed causing the access of the address to segv. This workaround may prove to be the final fix,

[OE-core] [PATCH 0/2 RFC] workaround for debugedit segv

2013-03-25 Thread Mark Hatle
[ YOCTO #4089 ] This is an attempt at a workaround for the debugedit segv. The problem is that during the creation of the build-id hash, the system iterates over the various ELF sections passing a point to the loaded data and size of each section to a hash function. When it gets to the hash for

[OE-core] [PATCH] conf/machine: Clean up MACHINEOVERRIDES handling

2013-03-25 Thread Richard Purdie
OVERRIDES reads from left to right, least to most specific. We were appending to MACHINEOVERRIDES when we should have been prepending so the ordering of qemuall verses qemuxxx was incorrect, as was the x86 override and several of the arm overrides. This patch is a batch cleanup of the various issue

Re: [OE-core] [PATCH V3 0/2] BlueZ 5.3 new package

2013-03-25 Thread Burton, Ross
On 25 March 2013 16:09, Koen Kooi wrote: > So you say it's not an upgrade path, but... > >> - bluez5 conflicts with/replaces bluez4. > > ... here you add RREPLACES. Why is that? The logic was that if a *distro* does the upgrade from bluez4 to bluez5, the package manager needs to be able to remov

Re: [OE-core] [PATCH v2] ptest bugfix: Make all ptest files go into -ptest package

2013-03-25 Thread Richard Purdie
On Mon, 2013-03-25 at 15:34 +0100, Björn Stenberg wrote: > Move ${PN}-ptest to start of PACKAGES to ensure all ptest files are > packaged in the -ptest package. > > Add QA exclusions to insane.bbclass to ensure -ptest packages can contain > any files they need. > > Bugfix: Add subshells for 'type

Re: [OE-core] [PATCH V3 0/2] BlueZ 5.3 new package

2013-03-25 Thread Koen Kooi
Op 25 mrt. 2013, om 14:07 heeft Cristian Iorga het volgende geschreven: > - BlueZ 5 v5.3 experimental new package; > - bluez5 package does not replace bluez4 package, > as a lot of components that interact with bluez > are not prepared to work correctly with bluez5; > - bluez5 is not an upgra

[OE-core] [PATCH] nspr: remove unnecessary files from the main package

2013-03-25 Thread Laurentiu Palcu
This patch does the following: * removes compile-et.pl and prerr.properties from the main package because these files are needed only at compile time; * moves nspr-config script to nspr-dev package where it belongs; * adds 'perl' RDEPENDS for nspr-dev since the package contains a perl scri

Re: [OE-core] [oe-commits] Laurentiu Palcu : mesa: rename mesa-dri recipe to just mesa

2013-03-25 Thread Richard Purdie
On Mon, 2013-03-25 at 17:01 +0100, Martin Jansa wrote: > On Mon, Mar 25, 2013 at 03:22:47PM +, Richard Purdie wrote: > > On Mon, 2013-03-25 at 15:52 +0100, Martin Jansa wrote: > > > On Mon, Mar 25, 2013 at 04:16:54PM +0200, Laurentiu Palcu wrote: > > > > > > > > > > > > On 03/25/2013 04:08 PM

Re: [OE-core] [oe-commits] Laurentiu Palcu : mesa: rename mesa-dri recipe to just mesa

2013-03-25 Thread Martin Jansa
On Mon, Mar 25, 2013 at 03:22:47PM +, Richard Purdie wrote: > On Mon, 2013-03-25 at 15:52 +0100, Martin Jansa wrote: > > On Mon, Mar 25, 2013 at 04:16:54PM +0200, Laurentiu Palcu wrote: > > > > > > > > > On 03/25/2013 04:08 PM, Martin Jansa wrote: > > > > On Fri, Mar 22, 2013 at 05:05:39PM +0

Re: [OE-core] [oe-commits] Laurentiu Palcu : mesa: rename mesa-dri recipe to just mesa

2013-03-25 Thread Richard Purdie
On Mon, 2013-03-25 at 15:52 +0100, Martin Jansa wrote: > On Mon, Mar 25, 2013 at 04:16:54PM +0200, Laurentiu Palcu wrote: > > > > > > On 03/25/2013 04:08 PM, Martin Jansa wrote: > > > On Fri, Mar 22, 2013 at 05:05:39PM +, g...@git.openembedded.org wrote: > > >> Module: openembedded-core.git >

Re: [OE-core] [oe-commits] Laurentiu Palcu : mesa: rename mesa-dri recipe to just mesa

2013-03-25 Thread Martin Jansa
On Mon, Mar 25, 2013 at 04:16:54PM +0200, Laurentiu Palcu wrote: > > > On 03/25/2013 04:08 PM, Martin Jansa wrote: > > On Fri, Mar 22, 2013 at 05:05:39PM +, g...@git.openembedded.org wrote: > >> Module: openembedded-core.git > >> Branch: master > >> Commit: c8bbb9983bcc7cfc5332e89c3e8148505b4

[OE-core] [PATCH v2] ptest bugfix: Make all ptest files go into -ptest package

2013-03-25 Thread Björn Stenberg
Move ${PN}-ptest to start of PACKAGES to ensure all ptest files are packaged in the -ptest package. Add QA exclusions to insane.bbclass to ensure -ptest packages can contain any files they need. Bugfix: Add subshells for 'type' command. This patch fixes bug #4069. Signed-off-by: Björn Stenberg

Re: [OE-core] [PATCH 1/1] opkg: create run-scripts file conditionally

2013-03-25 Thread Richard Purdie
On Mon, 2013-03-25 at 15:22 +0800, Kang Kai wrote: > When build sato sdk image, opkg will be installed to image even the > image package type is set to RPM. This causes the script file > run-postinsts installed by rpm will be overwrited by opkg. > > Judge the image package type and don't create ru

Re: [OE-core] [PATCH 1/2] dbus: Depend on dbus-ptest-ptest

2013-03-25 Thread Björn Stenberg
(The subject was a mistake. Parent is the only patch.) -- Björn ___ Openembedded-core mailing list Openembedded-core@lists.openembedded.org http://lists.linuxtogo.org/cgi-bin/mailman/listinfo/openembedded-core

[OE-core] [PATCH 1/2] dbus: Depend on dbus-ptest-ptest

2013-03-25 Thread Björn Stenberg
The dbus-ptest recipe doesn't produce an output package called dbus-ptest. What we are interested in is actually the dbus-ptest-ptest package. Signed-off-by: Björn Stenberg --- meta/recipes-core/dbus/dbus.inc |2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/meta/recipes-

Re: [OE-core] [oe-commits] Laurentiu Palcu : mesa: rename mesa-dri recipe to just mesa

2013-03-25 Thread Laurentiu Palcu
On 03/25/2013 04:08 PM, Martin Jansa wrote: > On Fri, Mar 22, 2013 at 05:05:39PM +, g...@git.openembedded.org wrote: >> Module: openembedded-core.git >> Branch: master >> Commit: c8bbb9983bcc7cfc5332e89c3e8148505b4ca83f >> URL: >> http://git.openembedded.org/?p=openembedded-core.git&a=com

Re: [OE-core] [oe-commits] Laurentiu Palcu : mesa: rename mesa-dri recipe to just mesa

2013-03-25 Thread Martin Jansa
On Fri, Mar 22, 2013 at 05:05:39PM +, g...@git.openembedded.org wrote: > Module: openembedded-core.git > Branch: master > Commit: c8bbb9983bcc7cfc5332e89c3e8148505b4ca83f > URL: > http://git.openembedded.org/?p=openembedded-core.git&a=commit;h=c8bbb9983bcc7cfc5332e89c3e8148505b4ca83f > > A

[OE-core] [PATCH] libxcb: fix repeated configures

2013-03-25 Thread Ross Burton
If configure is re-ran on an existing build tree the string substitutions we need are done twice, resulting in invalid paths. Anchor the expressions so they only match a pristine configure.ac. Signed-off-by: Ross Burton --- meta/recipes-graphics/xcb/libxcb.inc |8 1 file changed, 4

Re: [OE-core] Gnupg recipe fixes

2013-03-25 Thread Paul Barker
On Mon, 25 Mar 2013 13:25:57 + Richard Purdie wrote: > On Mon, 2013-03-25 at 12:57 +, Paul Barker wrote: > > On Mon, 25 Mar 2013 00:55:05 + > > Paul Barker wrote: > > > > > I'm setting up a signed apt repository of .deb packages built > > > using OpenEmbedded and I've ran into an is

Re: [OE-core] Gnupg recipe fixes

2013-03-25 Thread Richard Purdie
On Mon, 2013-03-25 at 13:32 +, Paul Barker wrote: > On Mon, 25 Mar 2013 13:25:57 + > Richard Purdie wrote: > > > On Mon, 2013-03-25 at 12:57 +, Paul Barker wrote: > > > On Mon, 25 Mar 2013 00:55:05 + > > > Paul Barker wrote: > > > > > > > I'm setting up a signed apt repository o

Re: [OE-core] [PATCH 1/2] libpng: add version 1.2 back

2013-03-25 Thread Mark Hatle
On 3/25/13 5:21 AM, Kang Kai wrote: Current LSB 4.1 test suite still check libpng12.so, so add libpng 1.2.x back, and set it as default verison for linuxstdbase image. I think this is close, but incorrect. What should be added for compatibility is a -new- package called "libpng12_1.2.50.bb".

Re: [OE-core] Gnupg recipe fixes

2013-03-25 Thread Richard Purdie
On Mon, 2013-03-25 at 12:57 +, Paul Barker wrote: > On Mon, 25 Mar 2013 00:55:05 + > Paul Barker wrote: > > > I'm setting up a signed apt repository of .deb packages built using > > OpenEmbedded and I've ran into an issue with apt-get on the target > > board not being able to find 'gpgv'

Re: [OE-core] Gnupg recipe fixes

2013-03-25 Thread Paul Barker
On Mon, 25 Mar 2013 00:55:05 + Paul Barker wrote: > I'm setting up a signed apt repository of .deb packages built using > OpenEmbedded and I've ran into an issue with apt-get on the target > board not being able to find 'gpgv' to verify the signatures. This is > installed as 'gpgv2' in the gn

[OE-core] [PATCH V3 2/2] bluez4: conflicts with/replaces bluez5

2013-03-25 Thread Cristian Iorga
- RCONFLICTS/RREPLACES bluez5 Signed-off-by: Cristian Iorga --- meta/recipes-connectivity/bluez/bluez4_4.101.bb |5 - 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/meta/recipes-connectivity/bluez/bluez4_4.101.bb b/meta/recipes-connectivity/bluez/bluez4_4.101.bb index 3ea2

[OE-core] [PATCH V3 1/2] bluez5: new package for v5.3

2013-03-25 Thread Cristian Iorga
- bluez5 does not replace bluez4 - bluez5 is integrated with systemd - RCONFLICTS/RREPLACES bluez4 Signed-off-by: Cristian Iorga --- .../bluez5/bluez5-5.3/bluetooth.conf | 16 +++ .../bluez5/bluez5-5.3/fix-udev-paths.patch | 35 +++ meta/recipes-connecti

[OE-core] [PATCH V3 0/2] BlueZ 5.3 new package

2013-03-25 Thread Cristian Iorga
- BlueZ 5 v5.3 experimental new package; - bluez5 package does not replace bluez4 package, as a lot of components that interact with bluez are not prepared to work correctly with bluez5; - bluez5 is not an upgrade path from bluez4. - bluez5 conflicts with/replaces bluez4. Cristian Iorga (2):

Re: [OE-core] [oe] [PATCH 00/22] hybrid systemd/sysvinit, and systemd fixes

2013-03-25 Thread Burton, Ross
On 22 March 2013 22:00, Martin Jansa wrote: > Do you have one for oe-core? Whoops, forgot to split it out that one commit. ross/systemd just touches oe-core files now. Ross ___ Openembedded-core mailing list Openembedded-core@lists.openembedded.org h

[OE-core] [PATCH] lttng: babeltrace: Update to upstream version 1.1.0

2013-03-25 Thread maxin.john
From: "Maxin B. John" Also updated the BUGTRACKER Signed-off-by: Maxin B. John --- meta/recipes-kernel/lttng/babeltrace_1.0.3.bb | 23 --- meta/recipes-kernel/lttng/babeltrace_1.1.0.bb | 23 +++ 2 files changed, 23 insertions(+), 23 deletions(-) del

Re: [OE-core] [PATCH] powertop: add 2.3

2013-03-25 Thread Marcin Juszkiewicz
W dniu 25.03.2013 10:53, Koen Kooi pisze: >> > What are alternatives to powertop when only powertop provides it? > busybox, as usual :) Busybox developers are crazy ;D ___ Openembedded-core mailing list Openembedded-core@lists.openembedded.org http://l

[OE-core] [PATCH] powertop: add 2.3

2013-03-25 Thread Marcin Juszkiewicz
With all tweaks from 1.13: - uclibc buildable - libncurses instead of libncursesw Signed-off-by: Marcin Juszkiewicz --- .../stub_out_the_ncurses_calls_in_dump_mode.patch | 33 - meta/recipes-kernel/powertop/powertop_1.13.bb | 41 -- meta/recipes-kernel/p

Re: [OE-core] [PATCH] powertop: add 2.3

2013-03-25 Thread Paul Eggleton
On Monday 25 March 2013 11:48:45 Marcin Juszkiewicz wrote: > With all tweaks from 1.13: > - uclibc buildable > - libncurses instead of libncursesw Sorry to be a pain but you're still dropping SUMMARY and the alternatives stuff. Cheers, Paul -- Paul Eggleton Intel Open Source Technology Centre

Re: [OE-core] [PATCH 1/2] libpng: add version 1.2 back

2013-03-25 Thread Richard Purdie
On Mon, 2013-03-25 at 18:21 +0800, Kang Kai wrote: > Current LSB 4.1 test suite still check libpng12.so, so add libpng 1.2.x > back, and set it as default verison for linuxstdbase image. > > [YOCTO 4015] > > Signed-off-by: Kang Kai > --- > meta/conf/distro/include/default-versions.inc |3

[OE-core] [PATCH] powertop: add 2.3

2013-03-25 Thread Marcin Juszkiewicz
With all tweaks from 1.13: - uclibc buildable - libncurses instead of libncursesw Signed-off-by: Marcin Juszkiewicz --- .../stub_out_the_ncurses_calls_in_dump_mode.patch | 33 - meta/recipes-kernel/powertop/powertop_1.13.bb | 41 -- meta/recipes-kernel/p

Re: [OE-core] [oe-core v2] rpm: split out run-postinsts

2013-03-25 Thread Richard Purdie
On Mon, 2013-03-25 at 10:38 +, Luo Zhenhua-B19537 wrote: > > > Don't we need to depend on this package somewhere so that it gets > > > installed? > > > > I think it should be required from the rootfs_rpm.bbclass in some way. > [Luo Zhenhua-B19537] Is following the right way to include the rpm-

Re: [OE-core] [oe-core v2] rpm: split out run-postinsts

2013-03-25 Thread Luo Zhenhua-B19537
> -Original Message- > From: openembedded-core-boun...@lists.openembedded.org > [mailto:openembedded-core-boun...@lists.openembedded.org] On Behalf Of > Mark Hatle > Sent: Saturday, March 23, 2013 1:05 AM > > On 3/22/13 11:29 AM, Richard Purdie wrote: > > On Thu, 2013-03-21 at 10:05 +0800,

[OE-core] [PATCH 2/2] packagegroup-core-lsb: add nspr

2013-03-25 Thread Kang Kai
Add nspr for LSB library check. [YOCTO 4015] Signed-off-by: Kang Kai --- .../packagegroups/packagegroup-core-lsb.bb |1 + 1 files changed, 1 insertions(+), 0 deletions(-) diff --git a/meta/recipes-extended/packagegroups/packagegroup-core-lsb.bb b/meta/recipes-extended/packagegroup

[OE-core] [PATCH 0/2] Add libraries to lsb image

2013-03-25 Thread Kang Kai
[YOCTO #4015] The following changes since commit 3c5f4d54d01887a117bf659fc9af6b2b892c2b08: separatebuilddir.inc: mxsldr should never have been added to this list, remove (2013-03-24 14:03:19 +) are available in the git repository at: git://git.pokylinux.org/poky-contrib kangkai/lsb-libs

[OE-core] [PATCH 1/2] libpng: add version 1.2 back

2013-03-25 Thread Kang Kai
Current LSB 4.1 test suite still check libpng12.so, so add libpng 1.2.x back, and set it as default verison for linuxstdbase image. [YOCTO 4015] Signed-off-by: Kang Kai --- meta/conf/distro/include/default-versions.inc |3 +++ meta/recipes-multimedia/libpng/libpng_1.2.50.bb | 21 +++

Re: [OE-core] [PATCH] powertop: add 2.3

2013-03-25 Thread Koen Kooi
Op 25 mrt. 2013, om 10:50 heeft Marcin Juszkiewicz het volgende geschreven: > W dniu 25.03.2013 10:43, Paul Eggleton pisze: > >> Ah, your version misses out quite a few things from the older recipe >> (alternatives, uclibc compatibility, etc.) > > What are alternatives to powertop when only

Re: [OE-core] [PATCH] powertop: add 2.3

2013-03-25 Thread Marcin Juszkiewicz
W dniu 25.03.2013 10:43, Paul Eggleton pisze: > Ah, your version misses out quite a few things from the older recipe > (alternatives, uclibc compatibility, etc.) What are alternatives to powertop when only powertop provides it? I am doing uclibc build in background. Will also take care of libnc

Re: [OE-core] [PATCH] powertop: add 2.3

2013-03-25 Thread Paul Eggleton
On Monday 25 March 2013 10:32:08 Marcin Juszkiewicz wrote: > Signed-off-by: Marcin Juszkiewicz > --- > .../stub_out_the_ncurses_calls_in_dump_mode.patch | 33 - > meta/recipes-kernel/powertop/powertop_1.13.bb | 41 > -- meta/recipes-kernel/powertop/powerto

[OE-core] [PATCH] powertop: add 2.3

2013-03-25 Thread Marcin Juszkiewicz
Signed-off-by: Marcin Juszkiewicz --- .../stub_out_the_ncurses_calls_in_dump_mode.patch | 33 - meta/recipes-kernel/powertop/powertop_1.13.bb | 41 -- meta/recipes-kernel/powertop/powertop_2.3.bb | 12 +++ 3 files changed, 12 insertions(+), 74 d

[OE-core] [PATCH][for-danny] adt-installer: remove patches and .pc directories from the shipped tarball

2013-03-25 Thread Laurentiu Palcu
The patches and .pc directories should not be shipped since the patches were already applied. So, remove these 2 directories. [YOCTO #3983] (From OE-Core rev: c18a4bded48ed1f8fd39e1741beb2a3452ae43e3) Signed-off-by: Laurentiu Palcu Signed-off-by: Richard Purdie --- .../installer/adt-installer

[OE-core] [PATCH] xf86-input-evdev: add mtdev dependency

2013-03-25 Thread Laurentiu Palcu
This is needed in order to have multitouch protocol enabled. [YOCTO #4087] Signed-off-by: Laurentiu Palcu --- .../xorg-driver/xf86-input-evdev_2.7.3.bb |4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/meta/recipes-graphics/xorg-driver/xf86-input-evdev_2.7.3.bb

[OE-core] [PATCH 0/1] Create postinstall script for opkg conditionally

2013-03-25 Thread Kang Kai
The following changes since commit 3c5f4d54d01887a117bf659fc9af6b2b892c2b08: separatebuilddir.inc: mxsldr should never have been added to this list, remove (2013-03-24 14:03:19 +) are available in the git repository at: git://git.pokylinux.org/poky-contrib kangkai/debug-tweaks http://g

[OE-core] [PATCH 1/1] opkg: create run-scripts file conditionally

2013-03-25 Thread Kang Kai
When build sato sdk image, opkg will be installed to image even the image package type is set to RPM. This causes the script file run-postinsts installed by rpm will be overwrited by opkg. Judge the image package type and don't create run-scripts file when package type is not ipk. [YOCTO #3223]