Openembedded Core Discussions
 help / color / mirror / Atom feed
* [PATCH 0/3] elfutils: upgrade to 0.158
@ 2014-05-28  8:27 Hongxu Jia
  2014-05-28  8:27 ` [PATCH 1/3] elfutils: remove 0.155 Hongxu Jia
                   ` (2 more replies)
  0 siblings, 3 replies; 6+ messages in thread
From: Hongxu Jia @ 2014-05-28  8:27 UTC (permalink / raw)
  To: openembedded-core; +Cc: saul.wold

Build Steps:

1. Add 'PREFERRED_VERSION_elfutils="0.158"' to local.conf
2. bitbake elfutils

//Hongxu

The following changes since commit 894df445fa71a170397c6e0b4960a89ef20a4230:

  guile: Update to 2.0.11 version (2014-05-21 19:50:21 +0100)

are available in the git repository at:

  git://git.pokylinux.org/poky-contrib hongxu/upgrade-elfutils
  http://git.pokylinux.org/cgit.cgi/poky-contrib/log/?h=hongxu/upgrade-elfutils

Hongxu Jia (3):
  elfutils: remove 0.155
  elfutils: upgrade to 0.158
  elfutils: backport from debian

 .../elfutils/elfutils-0.155/dso-link-change.patch  |   32 -
 .../elfutils/elfutils-0.155/elf_additions.diff     |   61 -
 .../elfutils-ar-c-fix-num-passed-to-memset.patch   |   23 -
 .../elfutils/elfutils-0.155/i386_dis.h             | 1657 --------------------
 .../elfutils/elfutils-0.155/mempcpy.patch          |   24 -
 ...ssed-to-snprintf-for-invalid-sh_name-case.patch |   27 -
 .../elfutils/elfutils-0.155/uclibc-support.patch   |   91 --
 .../elfutils/elfutils-0.155/x86_64_dis.h           | 1632 -------------------
 .../elfutils/elfutils-0.158/CVE-2014-0172.patch    |   35 +
 .../arm_backend.diff                               |  433 +++--
 .../elfutils/elfutils-0.158/core_filename.patch    |   27 +
 .../hppa_backend.diff                              |   77 +-
 .../m68k_backend.diff                              |  250 ++-
 .../mips_backend.diff                              |   72 +-
 .../elfutils/elfutils-0.158/mips_readelf_w.patch   |   22 +
 .../redhat-portability.diff                        |  953 +++++++----
 .../redhat-robustify.diff                          |  326 ++--
 .../elfutils/elfutils-0.158/scanf-format.patch     |   40 +
 .../elfutils-0.158/testsuite-ignore-elflint.diff   |   39 +
 .../elfutils/elfutils-0.158/unwind_non_linux.patch |  256 +++
 .../{elfutils_0.155.bb => elfutils_0.158.bb}       |   24 +-
 21 files changed, 1758 insertions(+), 4343 deletions(-)
 delete mode 100644 meta/recipes-devtools/elfutils/elfutils-0.155/dso-link-change.patch
 delete mode 100644 meta/recipes-devtools/elfutils/elfutils-0.155/elf_additions.diff
 delete mode 100644 meta/recipes-devtools/elfutils/elfutils-0.155/elfutils-ar-c-fix-num-passed-to-memset.patch
 delete mode 100644 meta/recipes-devtools/elfutils/elfutils-0.155/i386_dis.h
 delete mode 100644 meta/recipes-devtools/elfutils/elfutils-0.155/mempcpy.patch
 delete mode 100644 meta/recipes-devtools/elfutils/elfutils-0.155/nm-Fix-size-passed-to-snprintf-for-invalid-sh_name-case.patch
 delete mode 100644 meta/recipes-devtools/elfutils/elfutils-0.155/uclibc-support.patch
 delete mode 100644 meta/recipes-devtools/elfutils/elfutils-0.155/x86_64_dis.h
 create mode 100644 meta/recipes-devtools/elfutils/elfutils-0.158/CVE-2014-0172.patch
 rename meta/recipes-devtools/elfutils/{elfutils-0.155 => elfutils-0.158}/arm_backend.diff (44%)
 create mode 100644 meta/recipes-devtools/elfutils/elfutils-0.158/core_filename.patch
 rename meta/recipes-devtools/elfutils/{elfutils-0.155 => elfutils-0.158}/hppa_backend.diff (92%)
 rename meta/recipes-devtools/elfutils/{elfutils-0.155 => elfutils-0.158}/m68k_backend.diff (51%)
 rename meta/recipes-devtools/elfutils/{elfutils-0.155 => elfutils-0.158}/mips_backend.diff (91%)
 create mode 100644 meta/recipes-devtools/elfutils/elfutils-0.158/mips_readelf_w.patch
 rename meta/recipes-devtools/elfutils/{elfutils-0.155 => elfutils-0.158}/redhat-portability.diff (66%)
 rename meta/recipes-devtools/elfutils/{elfutils-0.155 => elfutils-0.158}/redhat-robustify.diff (81%)
 create mode 100644 meta/recipes-devtools/elfutils/elfutils-0.158/scanf-format.patch
 create mode 100644 meta/recipes-devtools/elfutils/elfutils-0.158/testsuite-ignore-elflint.diff
 create mode 100644 meta/recipes-devtools/elfutils/elfutils-0.158/unwind_non_linux.patch
 rename meta/recipes-devtools/elfutils/{elfutils_0.155.bb => elfutils_0.158.bb} (82%)

-- 
1.8.1.2



^ permalink raw reply	[flat|nested] 6+ messages in thread
* [PATCH V2 0/3] elfutils: upgrade to 0.158
@ 2014-05-28  8:49 Hongxu Jia
  2014-05-28  8:49 ` [PATCH 2/3] " Hongxu Jia
  0 siblings, 1 reply; 6+ messages in thread
From: Hongxu Jia @ 2014-05-28  8:49 UTC (permalink / raw)
  To: openembedded-core; +Cc: saul.wold

Change in V2:
- Add the missing 'm4-biarch.m4-tweak-AC_RUN_IFELSE-for-cross-compiling.patch'
  and 'elf_additions.diff' patches.

Build Steps:

1. Add 'PREFERRED_VERSION_elfutils="0.158"' to local.conf
2. bitbake elfutils

//Hongxu

The following changes since commit 894df445fa71a170397c6e0b4960a89ef20a4230:

  guile: Update to 2.0.11 version (2014-05-21 19:50:21 +0100)

are available in the git repository at:

  git://git.pokylinux.org/poky-contrib hongxu/upgrade-elfutils
  http://git.pokylinux.org/cgit.cgi/poky-contrib/log/?h=hongxu/upgrade-elfutils

Hongxu Jia (3):
  elfutils: remove 0.155
  elfutils: upgrade to 0.158
  elfutils: backport from debian

 .../elfutils/elfutils-0.155/dso-link-change.patch  |   32 -
 .../elfutils-ar-c-fix-num-passed-to-memset.patch   |   23 -
 .../elfutils/elfutils-0.155/i386_dis.h             | 1657 --------------------
 .../elfutils/elfutils-0.155/mempcpy.patch          |   24 -
 ...ssed-to-snprintf-for-invalid-sh_name-case.patch |   27 -
 .../elfutils/elfutils-0.155/uclibc-support.patch   |   91 --
 .../elfutils/elfutils-0.155/x86_64_dis.h           | 1632 -------------------
 .../elfutils/elfutils-0.158/CVE-2014-0172.patch    |   35 +
 .../arm_backend.diff                               |  433 +++--
 .../elfutils/elfutils-0.158/core_filename.patch    |   27 +
 .../elf_additions.diff                             |   66 +-
 .../hppa_backend.diff                              |   77 +-
 ...4-tweak-AC_RUN_IFELSE-for-cross-compiling.patch |   34 +
 .../m68k_backend.diff                              |  250 ++-
 .../mips_backend.diff                              |   72 +-
 .../elfutils/elfutils-0.158/mips_readelf_w.patch   |   22 +
 .../redhat-portability.diff                        |  953 +++++++----
 .../redhat-robustify.diff                          |  326 ++--
 .../elfutils/elfutils-0.158/scanf-format.patch     |   40 +
 .../elfutils-0.158/testsuite-ignore-elflint.diff   |   39 +
 .../elfutils/elfutils-0.158/unwind_non_linux.patch |  256 +++
 .../{elfutils_0.155.bb => elfutils_0.158.bb}       |   24 +-
 22 files changed, 1833 insertions(+), 4307 deletions(-)
 delete mode 100644 meta/recipes-devtools/elfutils/elfutils-0.155/dso-link-change.patch
 delete mode 100644 meta/recipes-devtools/elfutils/elfutils-0.155/elfutils-ar-c-fix-num-passed-to-memset.patch
 delete mode 100644 meta/recipes-devtools/elfutils/elfutils-0.155/i386_dis.h
 delete mode 100644 meta/recipes-devtools/elfutils/elfutils-0.155/mempcpy.patch
 delete mode 100644 meta/recipes-devtools/elfutils/elfutils-0.155/nm-Fix-size-passed-to-snprintf-for-invalid-sh_name-case.patch
 delete mode 100644 meta/recipes-devtools/elfutils/elfutils-0.155/uclibc-support.patch
 delete mode 100644 meta/recipes-devtools/elfutils/elfutils-0.155/x86_64_dis.h
 create mode 100644 meta/recipes-devtools/elfutils/elfutils-0.158/CVE-2014-0172.patch
 rename meta/recipes-devtools/elfutils/{elfutils-0.155 => elfutils-0.158}/arm_backend.diff (44%)
 create mode 100644 meta/recipes-devtools/elfutils/elfutils-0.158/core_filename.patch
 rename meta/recipes-devtools/elfutils/{elfutils-0.155 => elfutils-0.158}/elf_additions.diff (49%)
 rename meta/recipes-devtools/elfutils/{elfutils-0.155 => elfutils-0.158}/hppa_backend.diff (92%)
 create mode 100644 meta/recipes-devtools/elfutils/elfutils-0.158/m4-biarch.m4-tweak-AC_RUN_IFELSE-for-cross-compiling.patch
 rename meta/recipes-devtools/elfutils/{elfutils-0.155 => elfutils-0.158}/m68k_backend.diff (51%)
 rename meta/recipes-devtools/elfutils/{elfutils-0.155 => elfutils-0.158}/mips_backend.diff (91%)
 create mode 100644 meta/recipes-devtools/elfutils/elfutils-0.158/mips_readelf_w.patch
 rename meta/recipes-devtools/elfutils/{elfutils-0.155 => elfutils-0.158}/redhat-portability.diff (66%)
 rename meta/recipes-devtools/elfutils/{elfutils-0.155 => elfutils-0.158}/redhat-robustify.diff (81%)
 create mode 100644 meta/recipes-devtools/elfutils/elfutils-0.158/scanf-format.patch
 create mode 100644 meta/recipes-devtools/elfutils/elfutils-0.158/testsuite-ignore-elflint.diff
 create mode 100644 meta/recipes-devtools/elfutils/elfutils-0.158/unwind_non_linux.patch
 rename meta/recipes-devtools/elfutils/{elfutils_0.155.bb => elfutils_0.158.bb} (82%)

-- 
1.8.1.2



^ permalink raw reply	[flat|nested] 6+ messages in thread

end of thread, other threads:[~2014-05-28  8:50 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-05-28  8:27 [PATCH 0/3] elfutils: upgrade to 0.158 Hongxu Jia
2014-05-28  8:27 ` [PATCH 1/3] elfutils: remove 0.155 Hongxu Jia
2014-05-28  8:27 ` [PATCH 2/3] elfutils: upgrade to 0.158 Hongxu Jia
2014-05-28  8:32   ` Hongxu Jia
2014-05-28  8:27 ` [PATCH 3/3] elfutils: backport from debian Hongxu Jia
  -- strict thread matches above, loose matches on Subject: below --
2014-05-28  8:49 [PATCH V2 0/3] elfutils: upgrade to 0.158 Hongxu Jia
2014-05-28  8:49 ` [PATCH 2/3] " Hongxu Jia

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox