From: Khem Raj <raj.khem@gmail.com>
To: openembedded-core@lists.openembedded.org
Subject: [PATCH] eglibc upgrade and uclibc fixes
Date: Mon, 9 Jan 2012 12:15:24 -0800 [thread overview]
Message-ID: <cover.1326140011.git.raj.khem@gmail.com> (raw)
These patches address the build failures found when using uclibc
It also has the already posted patch for eglibc-2.15 upgrade
The following changes since commit fff18970706913e7fd7f4a119d798dddb44b388a:
base-files: filesystems: fix mount order (2012-01-06 14:41:19 +0000)
are available in the git repository at:
git://git.openembedded.org/openembedded-core-contrib kraj/misc-fixes
http://cgit.openembedded.org/cgit.cgi/openembedded-core-contrib/log/?h=kraj/misc-fixes
Khem Raj (7):
eglibc: Upgrade recipes 2.14 -> 2.15
libiconv_1.14.bb: Fix build failure
autotools.bbclass: Introduce CACHED_CONFIGUREVARS
default-distrovars: Define DISTRO_FEATURES_LIBC for uclibc
uclibc: Configure UCLIBC_HAS_WCHAR based on libc-posix-clang-wchar
distro feature
findutils: Use CACHED_CONFIGUREVARS to specify cached configure vars
util-linux: Enable fallocate and use CACHED_CONFIGUREVARS
meta/classes/autotools.bbclass | 2 +-
meta/conf/distro/include/default-distrovars.inc | 2 +
...tive_2.14.bb => cross-localedef-native_2.15.bb} | 0
.../IO-acquire-lock-fix.patch | 0
.../armv4-eabi-compile-fix.patch | 0
.../eglibc-rpc-export-again.patch | 0
.../eglibc-svn-arm-lowlevellock-include-tls.patch | 0
.../{eglibc-2.14 => eglibc-2.15}/etc/ld.so.conf | 0
.../generate-supported.mk | 0
.../glibc-2.14-libdl-crash.patch | 0
.../ld-search-order.patch | 0
.../mips-rld-map-check.patch | 0
.../multilib_readlib.patch | 0
.../{eglibc-2.14 => eglibc-2.15}/ppc-sqrt.patch | 0
.../eglibc/eglibc-2.15/ppc-sqrt_finite.patch | 112 +
.../stack-protector-test.patch | 0
.../use-sysroot-cxx-headers.patch | 30 +-
.../recipes-core/eglibc/eglibc-2.15/x86_fenv.patch | 29 +
...libc-initial_2.14.bb => eglibc-initial_2.15.bb} | 0
...eglibc-locale_2.14.bb => eglibc-locale_2.15.bb} | 0
.../eglibc/{eglibc_2.14.bb => eglibc_2.15.bb} | 16 +-
meta/recipes-core/uclibc/uclibc-config.inc | 1 +
meta/recipes-core/util-linux/util-linux_2.20.1.bb | 6 +-
meta/recipes-extended/findutils/findutils_4.4.2.bb | 4 +-
.../libiconv-1.14/add-relocatable-module.patch | 5008 ++++++++++++++++++++
meta/recipes-support/libiconv/libiconv_1.14.bb | 8 +-
26 files changed, 5195 insertions(+), 23 deletions(-)
rename meta/recipes-core/eglibc/{cross-localedef-native_2.14.bb => cross-localedef-native_2.15.bb} (100%)
rename meta/recipes-core/eglibc/{eglibc-2.14 => eglibc-2.15}/IO-acquire-lock-fix.patch (100%)
rename meta/recipes-core/eglibc/{eglibc-2.14 => eglibc-2.15}/armv4-eabi-compile-fix.patch (100%)
rename meta/recipes-core/eglibc/{eglibc-2.14 => eglibc-2.15}/eglibc-rpc-export-again.patch (100%)
rename meta/recipes-core/eglibc/{eglibc-2.14 => eglibc-2.15}/eglibc-svn-arm-lowlevellock-include-tls.patch (100%)
rename meta/recipes-core/eglibc/{eglibc-2.14 => eglibc-2.15}/etc/ld.so.conf (100%)
rename meta/recipes-core/eglibc/{eglibc-2.14 => eglibc-2.15}/generate-supported.mk (100%)
rename meta/recipes-core/eglibc/{eglibc-2.14 => eglibc-2.15}/glibc-2.14-libdl-crash.patch (100%)
rename meta/recipes-core/eglibc/{eglibc-2.14 => eglibc-2.15}/ld-search-order.patch (100%)
rename meta/recipes-core/eglibc/{eglibc-2.14 => eglibc-2.15}/mips-rld-map-check.patch (100%)
rename meta/recipes-core/eglibc/{eglibc-2.14 => eglibc-2.15}/multilib_readlib.patch (100%)
rename meta/recipes-core/eglibc/{eglibc-2.14 => eglibc-2.15}/ppc-sqrt.patch (100%)
create mode 100644 meta/recipes-core/eglibc/eglibc-2.15/ppc-sqrt_finite.patch
rename meta/recipes-core/eglibc/{eglibc-2.14 => eglibc-2.15}/stack-protector-test.patch (100%)
rename meta/recipes-core/eglibc/{eglibc-2.14 => eglibc-2.15}/use-sysroot-cxx-headers.patch (51%)
create mode 100644 meta/recipes-core/eglibc/eglibc-2.15/x86_fenv.patch
rename meta/recipes-core/eglibc/{eglibc-initial_2.14.bb => eglibc-initial_2.15.bb} (100%)
rename meta/recipes-core/eglibc/{eglibc-locale_2.14.bb => eglibc-locale_2.15.bb} (100%)
rename meta/recipes-core/eglibc/{eglibc_2.14.bb => eglibc_2.15.bb} (95%)
create mode 100644 meta/recipes-support/libiconv/libiconv-1.14/add-relocatable-module.patch
--
1.7.5.4
next reply other threads:[~2012-01-09 20:23 UTC|newest]
Thread overview: 9+ messages / expand[flat|nested] mbox.gz Atom feed top
2012-01-09 20:15 Khem Raj [this message]
2012-01-09 20:15 ` [PATCH 1/7] eglibc: Upgrade recipes 2.14 -> 2.15 Khem Raj
2012-01-09 20:15 ` [PATCH 2/7] libiconv_1.14.bb: Fix build failure Khem Raj
2012-01-09 20:15 ` [PATCH 3/7] autotools.bbclass: Introduce CACHED_CONFIGUREVARS Khem Raj
2012-01-09 20:15 ` [PATCH 4/7] default-distrovars: Define DISTRO_FEATURES_LIBC for uclibc Khem Raj
2012-01-09 20:15 ` [PATCH 5/7] uclibc: Configure UCLIBC_HAS_WCHAR based on libc-posix-clang-wchar distro feature Khem Raj
2012-01-09 20:15 ` [PATCH 6/7] findutils: Use CACHED_CONFIGUREVARS to specify cached configure vars Khem Raj
2012-01-09 20:15 ` [PATCH 7/7] util-linux: Enable fallocate and use CACHED_CONFIGUREVARS Khem Raj
2012-01-12 6:57 ` [PATCH] eglibc upgrade and uclibc fixes Saul Wold
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=cover.1326140011.git.raj.khem@gmail.com \
--to=raj.khem@gmail.com \
--cc=openembedded-core@lists.openembedded.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox