[OE-core] [PATCH 0/2] Some dependency issues

2013-06-16 Thread Kai Kang
The following changes since commit e023620773df82ba1551bec7fb921e4fef01322e: bitbake: utils: Fix multiprocessing pool reference (2013-06-14 22:01:09 +0100) are available in the git repository at: git://git.pokylinux.org/poky-contrib kangkai/trivial-fixes

[OE-core] [PATCH 1/2] strace: update depends

2013-06-16 Thread Kai Kang
Build strace with libaio and acl to support more features. Because no native libaio package, just add dependencies for target. Signed-off-by: Kai Kang kai.k...@windriver.com --- meta/recipes-devtools/strace/strace_4.7.bb |2 ++ 1 files changed, 2 insertions(+), 0 deletions(-) diff --git

[OE-core] [PATCH 2/2] Add needed libx11 library for sato applications

2013-06-16 Thread Kai Kang
From binutils-2.22, --copy-dt-needed-entries option is no longer enabled by default. Instead, --no-copy-dt-needed-entries is now the default option. When use other toolchain than default toolchain, some sato applications may compiled failed that they need libx11 but don't link to it directly. So

Re: [OE-core] [PATCH] oe-buildenv-internal: Preserve/Unset and Restore TERM

2013-06-16 Thread Otavio Salvador
On Fri, Jun 14, 2013 at 5:48 PM, Saul Wold s...@linux.intel.com wrote: Having a value in TERM that is not recognized by the nativesdk can cause potential escape sequences appearing in the output stream, the can be seen on Ubuntu with TERM=xterm-256color. Unsetting TERM allows for consistent

Re: [OE-core] State of bitbake world

2013-06-16 Thread Paul Barker
On 11 June 2013 17:04, Martin Jansa martin.ja...@gmail.com wrote: There weren't many (any) changes merged to meta-oe last week, I hope to get better builds now (started few minutes ago). common: meta-openembedded/meta-oe/recipes-connectivity/samba/samba_3.6.8.bb, do_package

Re: [OE-core] State of bitbake world

2013-06-16 Thread Paul Barker
On 17 June 2013 01:02, Paul Barker p...@paulbarker.me.uk wrote: samba: builds for me, I'm not using gcc-4.8 though packagekit, gypsy, omgps: Reference deprecated/removed functions in glib tk: tcl is version 8.6 in openembedded-core so can't build tk 8.5 anymore I'm currently playing around

[OE-core] [PATCH 2/2] opkg: put libopkg header files into libopkg-dev

2013-06-16 Thread Paul Barker
The header files for libopkg belong in the package libopkg-dev rather than opkg-dev where they are placed by default. Signed-off-by: Paul Barker p...@paulbarker.me.uk --- meta/recipes-devtools/opkg/opkg.inc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git

[OE-core] [PATCH 1/2] opkg: fix header installation for libopkg

2013-06-16 Thread Paul Barker
When opkg is built outside the source directory, libopkg headers aren't all installed as the search path for headers only includes the directory that make is being ran in, not the source directory. So we fix this by adding $(srcdir)/*.h to the list of header files to install. Without this patch,

Re: [OE-core] [PATCH] consolekit: move libck-connector to base_libdir

2013-06-16 Thread jhuang0
On 6/15/2013 1:19 AM, Saul Wold wrote: On 06/14/2013 12:54 AM, jackie.hu...@windriver.com wrote: From: Jackie Huang jackie.hu...@windriver.com move libck-connector.so.* to base_libdir to kill two warnings: WARNING: QA Issue: consolekit: /lib64/security/pam_ck_connector.so,

Re: [OE-core] State of bitbake world

2013-06-16 Thread Martin Jansa
On Mon, Jun 17, 2013 at 01:13:45AM +0100, Paul Barker wrote: On 17 June 2013 01:02, Paul Barker p...@paulbarker.me.uk wrote: samba: builds for me, I'm not using gcc-4.8 though packagekit, gypsy, omgps: Reference deprecated/removed functions in glib tk: tcl is version 8.6 in

Re: [OE-core] [PATCH 1/2] opkg: fix header installation for libopkg

2013-06-16 Thread Khem Raj
On Sun, Jun 16, 2013 at 5:22 PM, Paul Barker p...@paulbarker.me.uk wrote: When opkg is built outside the source directory, libopkg headers aren't all installed as the search path for headers only includes the directory that make is being ran in, not the source directory. So we fix this by

[OE-core] [PATCH V2 1/9] busybox: remove the postinst part of the recipe

2013-06-16 Thread Qi.Chen
From: Chen Qi qi.c...@windriver.com Remove the pkg_postinst_${PN} from this recipe, as it's redundant. It basically wants to do the same thing as the update-alternatives does. But it doesn't do it well. Signed-off-by: Chen Qi qi.c...@windriver.com --- meta/recipes-core/busybox/busybox.inc |

[OE-core] [PATCH V2 6/9] packagegroup-core-boot: use busybox as the default login manager

2013-06-16 Thread Qi.Chen
From: Chen Qi qi.c...@windriver.com tinylogin has been deprecated and the functionality ported into busybox, so we switch to using busybox as the default login manager. [YOCTO #4207] Signed-off-by: Chen Qi qi.c...@windriver.com --- .../packagegroups/packagegroup-core-boot.bb|2 +-

[OE-core] [PATCH V2 2/9] busybox: add support for CONFIG_FEATURE_INDIVIDUAL

2013-06-16 Thread Qi.Chen
From: Chen Qi qi.c...@windriver.com Previously, if CONFIG_FEATURE_INDIVIDUAL was enabled for busybox, yocto-based systems could start correctly. This is because if busybox is built as individual apps, '/bin/busybox' may not be present, so setting the default ALTERNATIVE_TARGET to '/bin/busybox'

[OE-core] [PATCH V2 3/9] busybox: add a config fragment to enable login utilities

2013-06-16 Thread Qi.Chen
From: Chen Qi qi.c...@windriver.com Create a config fragment to enable the login/passwd utilities of busybox. [YOCTO #4207] Signed-off-by: Chen Qi qi.c...@windriver.com --- .../busybox/busybox-1.20.2/login-utilities.cfg | 13 + meta/recipes-core/busybox/busybox_1.20.2.bb

[OE-core] [PATCH V2 0/9] busybox miscellaneous fixes

2013-06-16 Thread Qi.Chen
From: Chen Qi qi.c...@windriver.com This patchset mainly serves two purposes. 1) Switch to using busybox as the default login manager. 2) Fix to support FEATURE_INDIVIDUAL in busybox. I'd really appreciate it if you could review it. And any comment or suggest is really welcome. In this cover

[OE-core] [PATCH V2 8/9] mingetty: lower the ALTERNATIVE_PRIORITY

2013-06-16 Thread Qi.Chen
From: Chen Qi qi.c...@windriver.com mingetty doesn't work with serial consoles. Currently, it has the same ALTERNATIVE_PRIORITY with busybox. So if it is installed with busybox together, it's possible that the getty is linked to the mingetty, causing failures when we login to the serial consoles.

[OE-core] [PATCH V2 9/9] tinylogin: remove recipe

2013-06-16 Thread Qi.Chen
From: Chen Qi qi.c...@windriver.com tinylogin has been deprecated and the functionality ported into busybox. We now use busybox as the login manager, so the tinylogin recipe could be deleted. [YOCTO #4207] Signed-off-by: Chen Qi qi.c...@windriver.com ---

[OE-core] [PATCH V2 7/9] packagegroup-core-basic: set the default login manager

2013-06-16 Thread Qi.Chen
From: Chen Qi qi.c...@windriver.com Set the default login manager to 'busybox', drop the mingetty in the RDEPENDS, use ${VIRTUAL-RUNTIME_login_manager} instead. mingetty doesn't work with serial consoles, so if the login console is ttyS0 for example, we get error messages on screen and cannot

[OE-core] [PATCH V2 5/9] busybox: add the ability to split the busybox binary

2013-06-16 Thread Qi.Chen
From: Chen Qi qi.c...@windriver.com This patch enables us to split the busybox into two binaries, one containing suid applications, and the other containing nosuid apps. Add a variable, BUSYBOX_SPLIT_SUID, to control whether to split the busybox binary into two parts. We default it to 1 to

[OE-core] [PATCH V2 4/9] busybox: enable to list suid and non-suid app configs

2013-06-16 Thread Qi.Chen
From: Chen Qi qi.c...@windriver.com This patch, written by Bernhard Reutner-Fischer rep.dot@gmail.com, adds the ability to busybox to list configuration items of suid apps and non-suid apps separately. `make busybox.cfg.suid' generates a file containing config items of the suid apps. 'make

Re: [OE-core] [PATCH 4/8] busybox: add the ability to split the busybox binary

2013-06-16 Thread ChenQi
Thanks for your patience and all your explanations. Now a version 2 has been sent out, containing changes from your suggestions and the patch you wrote. Please help review it if convenient. Best Regards, Chen Qi On 06/14/2013 08:04 PM, Bernhard Reutner-Fischer wrote: On 13 June 2013 08:46,