diff options
author | Khem Raj <raj.khem@gmail.com> | 2014-02-08 03:44:32 -0800 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2014-02-18 08:37:02 +0000 |
commit | 875df27e56b82fcf970410b6d78e3672471c336a (patch) | |
tree | 02de0ac39deb74e0eebd617a3ce0a485627590d0 /meta/classes | |
parent | cc90cbc6d36b9f15a461b877b44c7498c2061744 (diff) | |
download | openembedded-core-875df27e56b82fcf970410b6d78e3672471c336a.tar.gz openembedded-core-875df27e56b82fcf970410b6d78e3672471c336a.tar.bz2 openembedded-core-875df27e56b82fcf970410b6d78e3672471c336a.zip |
eglibc: Upgrade from 2.18 -> 2.19
License formatting and address for FSF in the COPYING and COPYING.LIB
has changed.
Dropped patched already upstream and patches that were workarounds for
older glibc and busybox
for e500 we have should pass --without-fp to eglibc/glibc 2.19 onwards
the code is merged from eglibc into glibc upstream under nofpu/ pretext
Signed-off-by: Khem Raj <raj.khem@gmail.com>
Diffstat (limited to 'meta/classes')
-rw-r--r-- | meta/classes/libc-common.bbclass | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/classes/libc-common.bbclass b/meta/classes/libc-common.bbclass index 67b018b753..daf499d3eb 100644 --- a/meta/classes/libc-common.bbclass +++ b/meta/classes/libc-common.bbclass @@ -19,7 +19,7 @@ do_install() { } def get_libc_fpu_setting(bb, d): - if d.getVar('TARGET_FPU', True) in [ 'soft' ]: + if d.getVar('TARGET_FPU', True) in [ 'soft', 'ppc-efd' ]: return "--without-fp" return "" |