* [PATCH 0/2] Misc bugfixes
@ 2012-04-09 22:27 nitin.a.kamble
2012-04-09 22:27 ` [PATCH 1/2] tclibc-eglibc.inc: make locale packages dependency conditional nitin.a.kamble
` (2 more replies)
0 siblings, 3 replies; 8+ messages in thread
From: nitin.a.kamble @ 2012-04-09 22:27 UTC (permalink / raw)
To: openembedded-core, yocto
From: Nitin A Kamble <nitin.a.kamble@intel.com>
The following changes since commit 190f6d791d51aaa4cfb9f1cf932bc205ff674fb5:
runqemu-internal: Add console=tty for qemuppc and NFS (2012-04-06 01:12:47 +0100)
are available in the git repository at:
git://git.pokylinux.org/poky-contrib nitin/bugfixes
http://git.pokylinux.org/cgit.cgi/poky-contrib/log/?h=nitin/bugfixes
Nitin A Kamble (2):
tclibc-eglibc.inc: make locale packages dependency conditional
poky-tiny.conf: adjust eglibc options for poky-tiny
meta-yocto/conf/distro/poky-tiny.conf | 6 ++++++
meta/conf/distro/include/tclibc-eglibc.inc | 23 ++++++++++++++++-------
2 files changed, 22 insertions(+), 7 deletions(-)
--
1.7.7
^ permalink raw reply [flat|nested] 8+ messages in thread* [PATCH 1/2] tclibc-eglibc.inc: make locale packages dependency conditional
2012-04-09 22:27 [PATCH 0/2] Misc bugfixes nitin.a.kamble
@ 2012-04-09 22:27 ` nitin.a.kamble
2012-04-09 22:27 ` [PATCH 2/2] poky-tiny.conf: adjust eglibc options for poky-tiny nitin.a.kamble
2012-04-11 15:20 ` [OE-core] " Saul Wold
2 siblings, 0 replies; 8+ messages in thread
From: nitin.a.kamble @ 2012-04-09 22:27 UTC (permalink / raw)
To: openembedded-core, yocto
From: Nitin A Kamble <nitin.a.kamble@intel.com>
Only add locale package dependencies if the eglibc is configured
with locale support.
This avoids dependencies issues for distros such as poky-tiny
Signed-off-by: Nitin A Kamble <nitin.a.kamble@intel.com>
---
meta/conf/distro/include/tclibc-eglibc.inc | 23 ++++++++++++++++-------
1 files changed, 16 insertions(+), 7 deletions(-)
diff --git a/meta/conf/distro/include/tclibc-eglibc.inc b/meta/conf/distro/include/tclibc-eglibc.inc
index 8b8a214..aed82d1 100644
--- a/meta/conf/distro/include/tclibc-eglibc.inc
+++ b/meta/conf/distro/include/tclibc-eglibc.inc
@@ -23,10 +23,19 @@ LIBC_DEPENDENCIES = "libsegfault \
eglibc-dev \
eglibc-utils \
eglibc-thread-db \
- eglibc-localedata-i18n \
- eglibc-gconv-ibm850 \
- eglibc-gconv-cp1252 \
- eglibc-gconv-iso8859-1 \
- eglibc-gconv-iso8859-15 \
- locale-base-en-us \
- locale-base-en-gb "
+ ${@get_libc_locales_dependencies(d)}"
+
+LIBC_LOCALE_DEPENDENCIES = "\
+ eglibc-localedata-i18n \
+ eglibc-gconv-ibm850 \
+ eglibc-gconv-cp1252 \
+ eglibc-gconv-iso8859-1 \
+ eglibc-gconv-iso8859-15 \
+ locale-base-en-us \
+ locale-base-en-gb"
+
+def get_libc_locales_dependencies(d):
+ if 'libc-locales' in (d.getVar('DISTRO_FEATURES', True) or '').split() :
+ return d.getVar('LIBC_LOCALE_DEPENDENCIES', True) or ''
+ else:
+ return ''
--
1.7.7
^ permalink raw reply related [flat|nested] 8+ messages in thread* [PATCH 2/2] poky-tiny.conf: adjust eglibc options for poky-tiny
2012-04-09 22:27 [PATCH 0/2] Misc bugfixes nitin.a.kamble
2012-04-09 22:27 ` [PATCH 1/2] tclibc-eglibc.inc: make locale packages dependency conditional nitin.a.kamble
@ 2012-04-09 22:27 ` nitin.a.kamble
2012-04-11 15:20 ` [OE-core] " Saul Wold
2 siblings, 0 replies; 8+ messages in thread
From: nitin.a.kamble @ 2012-04-09 22:27 UTC (permalink / raw)
To: openembedded-core, yocto
From: Nitin A Kamble <nitin.a.kamble@intel.com>
Avoid errors for building meta-toolchain for poky-tiny
This Fixes Bug: [YOCTO #2259]
Signed-off-by: Nitin A Kamble <nitin.a.kamble@intel.com>
---
meta-yocto/conf/distro/poky-tiny.conf | 6 ++++++
1 files changed, 6 insertions(+), 0 deletions(-)
diff --git a/meta-yocto/conf/distro/poky-tiny.conf b/meta-yocto/conf/distro/poky-tiny.conf
index 395c6fb..58d64ec 100644
--- a/meta-yocto/conf/distro/poky-tiny.conf
+++ b/meta-yocto/conf/distro/poky-tiny.conf
@@ -63,6 +63,12 @@ ASSUME_PROVIDED += "pkgconfig$"
# Reconfigure eglibc for a smaller installation
# Comment out any of the lines below to disable them in the build
DISTRO_FEATURES_LIBC_TINY = "libc-libm libc-crypt"
+# for gettext
+DISTRO_FEATURES_LIBC_TINY += "libc-posix-clang-wchar"
+# for m4
+DISTRO_FEATURES_LIBC_TINY += "libc-spawn libc-locale-code"
+# for elfutils
+DISTRO_FEATURES_LIBC_TINY += "libc-ftraverse"
# Required for "who"
DISTRO_FEATURES_LIBC_MINIMAL = "libc-utmp libc-getlogin"
DISTRO_FEATURES_LIBC_REGEX = "libc-posix-regexp"
--
1.7.7
^ permalink raw reply related [flat|nested] 8+ messages in thread
* Re: [PATCH 0/2] Misc bugfixes
2012-04-09 22:27 [PATCH 0/2] Misc bugfixes nitin.a.kamble
@ 2012-04-11 15:20 ` Saul Wold
2012-04-09 22:27 ` [PATCH 2/2] poky-tiny.conf: adjust eglibc options for poky-tiny nitin.a.kamble
2012-04-11 15:20 ` [OE-core] " Saul Wold
2 siblings, 0 replies; 8+ messages in thread
From: Saul Wold @ 2012-04-11 15:20 UTC (permalink / raw)
To: Patches and discussions about the oe-core layer; +Cc: yocto
On 04/09/2012 03:27 PM, nitin.a.kamble@intel.com wrote:
> From: Nitin A Kamble<nitin.a.kamble@intel.com>
>
> The following changes since commit 190f6d791d51aaa4cfb9f1cf932bc205ff674fb5:
>
> runqemu-internal: Add console=tty for qemuppc and NFS (2012-04-06 01:12:47 +0100)
>
> are available in the git repository at:
> git://git.pokylinux.org/poky-contrib nitin/bugfixes
> http://git.pokylinux.org/cgit.cgi/poky-contrib/log/?h=nitin/bugfixes
>
> Nitin A Kamble (2):
> tclibc-eglibc.inc: make locale packages dependency conditional
> poky-tiny.conf: adjust eglibc options for poky-tiny
>
> meta-yocto/conf/distro/poky-tiny.conf | 6 ++++++
> meta/conf/distro/include/tclibc-eglibc.inc | 23 ++++++++++++++++-------
> 2 files changed, 22 insertions(+), 7 deletions(-)
>
Nitin, in the future two emails and 2 seperate branches for fixes that
are OE-Core vs Poky.
Merged these into Poky Master and OE-Core as appropriate
Thanks
Sau!
^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: [OE-core] [PATCH 0/2] Misc bugfixes
@ 2012-04-11 15:20 ` Saul Wold
0 siblings, 0 replies; 8+ messages in thread
From: Saul Wold @ 2012-04-11 15:20 UTC (permalink / raw)
To: Patches and discussions about the oe-core layer; +Cc: yocto
On 04/09/2012 03:27 PM, nitin.a.kamble@intel.com wrote:
> From: Nitin A Kamble<nitin.a.kamble@intel.com>
>
> The following changes since commit 190f6d791d51aaa4cfb9f1cf932bc205ff674fb5:
>
> runqemu-internal: Add console=tty for qemuppc and NFS (2012-04-06 01:12:47 +0100)
>
> are available in the git repository at:
> git://git.pokylinux.org/poky-contrib nitin/bugfixes
> http://git.pokylinux.org/cgit.cgi/poky-contrib/log/?h=nitin/bugfixes
>
> Nitin A Kamble (2):
> tclibc-eglibc.inc: make locale packages dependency conditional
> poky-tiny.conf: adjust eglibc options for poky-tiny
>
> meta-yocto/conf/distro/poky-tiny.conf | 6 ++++++
> meta/conf/distro/include/tclibc-eglibc.inc | 23 ++++++++++++++++-------
> 2 files changed, 22 insertions(+), 7 deletions(-)
>
Nitin, in the future two emails and 2 seperate branches for fixes that
are OE-Core vs Poky.
Merged these into Poky Master and OE-Core as appropriate
Thanks
Sau!
^ permalink raw reply [flat|nested] 8+ messages in thread
* [PATCH 0/2] Misc Bugfixes
@ 2012-04-26 0:00 nitin.a.kamble
2012-04-27 20:52 ` Saul Wold
0 siblings, 1 reply; 8+ messages in thread
From: nitin.a.kamble @ 2012-04-26 0:00 UTC (permalink / raw)
To: openembedded-core
From: Nitin A Kamble <nitin.a.kamble@intel.com>
The following changes since commit 492a58cabdc053b2312712681dbcffa8270d4ea4:
self-hosted-image: Update poky revision to point at the 1.2 release branch (2012-04-24 10:21:11 +0100)
are available in the git repository at:
git://git.pokylinux.org/poky-contrib nitin/bugfixes
http://git.pokylinux.org/cgit.cgi/poky-contrib/log/?h=nitin/bugfixes
Nitin A Kamble (2):
libproxy: fix compilations with gcc 4.7
quilt: fix perl path in target perl scripts
meta/recipes-devtools/quilt/quilt_0.51.bb | 16 ++++++++++-
.../libproxy/libproxy_fix_for_gcc4.7.patch | 30 ++++++++++++++++++++
meta/recipes-support/libproxy/libproxy_0.4.7.bb | 3 +-
3 files changed, 47 insertions(+), 2 deletions(-)
create mode 100644 meta/recipes-support/libproxy/libproxy/libproxy_fix_for_gcc4.7.patch
--
1.7.7
^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: [PATCH 0/2] Misc Bugfixes
2012-04-26 0:00 [PATCH 0/2] Misc Bugfixes nitin.a.kamble
@ 2012-04-27 20:52 ` Saul Wold
0 siblings, 0 replies; 8+ messages in thread
From: Saul Wold @ 2012-04-27 20:52 UTC (permalink / raw)
To: Patches and discussions about the oe-core layer
On 04/25/2012 05:00 PM, nitin.a.kamble@intel.com wrote:
> From: Nitin A Kamble<nitin.a.kamble@intel.com>
>
> The following changes since commit 492a58cabdc053b2312712681dbcffa8270d4ea4:
>
> self-hosted-image: Update poky revision to point at the 1.2 release branch (2012-04-24 10:21:11 +0100)
>
> are available in the git repository at:
> git://git.pokylinux.org/poky-contrib nitin/bugfixes
> http://git.pokylinux.org/cgit.cgi/poky-contrib/log/?h=nitin/bugfixes
>
> Nitin A Kamble (2):
> libproxy: fix compilations with gcc 4.7
> quilt: fix perl path in target perl scripts
>
> meta/recipes-devtools/quilt/quilt_0.51.bb | 16 ++++++++++-
> .../libproxy/libproxy_fix_for_gcc4.7.patch | 30 ++++++++++++++++++++
> meta/recipes-support/libproxy/libproxy_0.4.7.bb | 3 +-
> 3 files changed, 47 insertions(+), 2 deletions(-)
> create mode 100644 meta/recipes-support/libproxy/libproxy/libproxy_fix_for_gcc4.7.patch
>
Merged into OE-Core
Thanks
Sau!
^ permalink raw reply [flat|nested] 8+ messages in thread
* [PATCH 0/2] Misc bugfixes
@ 2013-12-20 14:55 Paul Eggleton
0 siblings, 0 replies; 8+ messages in thread
From: Paul Eggleton @ 2013-12-20 14:55 UTC (permalink / raw)
To: openembedded-core
The following changes since commit cd94dd3d9bba32c3fd55959586128b236d1d4e34:
security_flags: more relocation issues (2013-12-18 17:23:55 +0000)
are available in the git repository at:
git://git.openembedded.org/openembedded-core-contrib paule/fixes4
http://cgit.openembedded.org/cgit.cgi/openembedded-core-contrib/log/?h=paule/fixes4
Paul Eggleton (2):
libav: add libpostproc to PROVIDES (for 0.8.x version only)
classes/insane: restore printing LIC_FILES_CHKSUM checksum if not
specified
meta/classes/insane.bbclass | 27 ++++++++++++++-------------
meta/recipes-multimedia/libav/libav_0.8.9.bb | 2 ++
2 files changed, 16 insertions(+), 13 deletions(-)
--
1.8.1.2
^ permalink raw reply [flat|nested] 8+ messages in thread
end of thread, other threads:[~2013-12-20 14:55 UTC | newest]
Thread overview: 8+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-04-09 22:27 [PATCH 0/2] Misc bugfixes nitin.a.kamble
2012-04-09 22:27 ` [PATCH 1/2] tclibc-eglibc.inc: make locale packages dependency conditional nitin.a.kamble
2012-04-09 22:27 ` [PATCH 2/2] poky-tiny.conf: adjust eglibc options for poky-tiny nitin.a.kamble
2012-04-11 15:20 ` [PATCH 0/2] Misc bugfixes Saul Wold
2012-04-11 15:20 ` [OE-core] " Saul Wold
-- strict thread matches above, loose matches on Subject: below --
2012-04-26 0:00 [PATCH 0/2] Misc Bugfixes nitin.a.kamble
2012-04-27 20:52 ` Saul Wold
2013-12-20 14:55 [PATCH 0/2] Misc bugfixes Paul Eggleton
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.