Openembedded Core Discussions
 help / color / mirror / Atom feed
From: Khem Raj <raj.khem@gmail.com>
To: openembedded-core@lists.openembedded.org
Subject: [PATCH 0/5] systemd 219 upgrade and musl fixes
Date: Fri, 20 Feb 2015 04:24:07 +0000	[thread overview]
Message-ID: <cover.1424405852.git.raj.khem@gmail.com> (raw)

Upgrade to systemd 219 ( tested on mips/x86)
Divide util-linux into libs and apps part this solves
the catch-22 systemd -> libmount(utils-linux) -> systemd
Fix for musl to be a provider for libintl
Tighten glibc recipe parsing, helps in accomodating other libs

The following changes since commit 530565c6cb77319f4cc49edeea6fec6be997415d:

  glibc: Update to glibc 2.21 release tag (2015-02-19 17:04:19 +0000)

are available in the git repository at:

  git://git.openembedded.org/openembedded-core-contrib kraj/misc
  http://cgit.openembedded.org/cgit.cgi/openembedded-core-contrib/log/?h=kraj/misc

Khem Raj (5):
  systemd: Upgrade 216 -> 219
  util-linux,util-linux-libs: Build and package util-linux libs
    separately
  systemd: Add missing dependency on util-linux-libs
  tclibc-musl: Use musl for providing virtual/libintl instead of gettext
  glibc: Dont offer to be parsed for non-glibc TCLIBC selection

 meta/conf/distro/include/tclibc-musl.inc           |   2 +-
 meta/recipes-core/glibc/glibc_2.21.bb              |  12 +-
 ...1-Make-root-s-home-directory-configurable.patch | 127 ++++++++-------
 ...onfigure-the-list-of-system-users-files-a.patch | 176 ---------------------
 ...o-not-install-tmpfiles-and-sysusers-files.patch |  56 -------
 ...-Fix-navigating-backwards-missing-entries.patch |  34 ----
 ...ing.h-add-fake-__NR_memfd_create-for-MIPS.patch |  29 ----
 ...ke-resolv.conf-entry-conditional-on-resol.patch | 142 -----------------
 .../systemd/systemd/binfmt-install.patch           |  35 ++--
 .../systemd/systemd-pam-fix-fallocate.patch        |  50 +++---
 .../systemd/systemd/uclibc-sysinfo_h.patch         |  19 ---
 .../systemd/{systemd_216.bb => systemd_219.bb}     |  41 +++--
 ...ch_root_improve_statfs_f_type_portability.patch |  56 +++++++
 .../files/0002-include_statfs_magic.patch          |  45 ++++++
 .../{util-linux => files}/configure-sbindir.patch  |   0
 .../{util-linux => files}/fix-parallel-build.patch |   0
 .../uclibc-__progname-conflict.patch               |   0
 .../util-linux-native-qsort.patch                  |   0
 .../{util-linux => files}/util-linux-native.patch  |   0
 .../util-linux-ng-2.16-mount_lock_path.patch       |   0
 .../util-linux-ng-replace-siginterrupt.patch       |   0
 meta/recipes-core/util-linux/util-linux-libs.inc   |  93 +++++++++++
 .../util-linux/util-linux-libs_2.25.2.bb           |  25 +++
 meta/recipes-core/util-linux/util-linux.inc        |  23 +--
 meta/recipes-core/util-linux/util-linux_2.25.2.bb  |   2 +
 meta/recipes-devtools/e2fsprogs/e2fsprogs.inc      |   2 +-
 26 files changed, 357 insertions(+), 612 deletions(-)
 delete mode 100644 meta/recipes-core/systemd/systemd/0001-build-sys-configure-the-list-of-system-users-files-a.patch
 delete mode 100644 meta/recipes-core/systemd/systemd/0001-build-sys-do-not-install-tmpfiles-and-sysusers-files.patch
 delete mode 100644 meta/recipes-core/systemd/systemd/0001-journal-Fix-navigating-backwards-missing-entries.patch
 delete mode 100644 meta/recipes-core/systemd/systemd/0001-missing.h-add-fake-__NR_memfd_create-for-MIPS.patch
 delete mode 100644 meta/recipes-core/systemd/systemd/0001-tmpfiles-make-resolv.conf-entry-conditional-on-resol.patch
 delete mode 100644 meta/recipes-core/systemd/systemd/uclibc-sysinfo_h.patch
 rename meta/recipes-core/systemd/{systemd_216.bb => systemd_219.bb} (92%)
 create mode 100644 meta/recipes-core/util-linux/files/0001-switch_root_improve_statfs_f_type_portability.patch
 create mode 100644 meta/recipes-core/util-linux/files/0002-include_statfs_magic.patch
 rename meta/recipes-core/util-linux/{util-linux => files}/configure-sbindir.patch (100%)
 rename meta/recipes-core/util-linux/{util-linux => files}/fix-parallel-build.patch (100%)
 rename meta/recipes-core/util-linux/{util-linux => files}/uclibc-__progname-conflict.patch (100%)
 rename meta/recipes-core/util-linux/{util-linux => files}/util-linux-native-qsort.patch (100%)
 rename meta/recipes-core/util-linux/{util-linux => files}/util-linux-native.patch (100%)
 rename meta/recipes-core/util-linux/{util-linux => files}/util-linux-ng-2.16-mount_lock_path.patch (100%)
 rename meta/recipes-core/util-linux/{util-linux => files}/util-linux-ng-replace-siginterrupt.patch (100%)
 create mode 100644 meta/recipes-core/util-linux/util-linux-libs.inc
 create mode 100644 meta/recipes-core/util-linux/util-linux-libs_2.25.2.bb

-- 
2.1.4



             reply	other threads:[~2015-02-20  4:24 UTC|newest]

Thread overview: 12+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2015-02-20  4:24 Khem Raj [this message]
2015-02-20  4:24 ` [PATCH 1/5] systemd: Upgrade 216 -> 219 Khem Raj
2015-02-20  4:24 ` [PATCH 2/5] util-linux, util-linux-libs: Build and package util-linux libs separately Khem Raj
2015-02-20 12:55   ` Richard Purdie
2015-02-20 21:07     ` Khem Raj
2015-02-20 21:26     ` Burton, Ross
2015-02-24 20:26       ` Khem Raj
2015-02-20  4:24 ` [PATCH 3/5] systemd: Add missing dependency on util-linux-libs Khem Raj
2015-02-20  4:24 ` [PATCH 4/5] tclibc-musl: Use musl for providing virtual/libintl instead of gettext Khem Raj
2015-02-20  4:24 ` [PATCH 5/5] glibc: Dont offer to be parsed for non-glibc TCLIBC selection Khem Raj
2015-02-23 15:00   ` Christopher Larson
2015-02-23 17:29     ` Khem Raj

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.1424405852.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