From: Andrea Adami <andrea.adami@gmail.com>
To: openembedded-devel@lists.openembedded.org
Subject: [meta-initramfs][PATCH 0/4] cleanings and fixes
Date: Mon, 13 May 2013 01:22:19 +0200 [thread overview]
Message-ID: <cover.1368400320.git.andrea.adami@gmail.com> (raw)
* minor editing to the images,
* kexecboot runtime deps fixes,
* klibc and kexec-tools-klibc refinements needed to unbreak the build
* for x86 and x86-64
Andrea Adami (4):
initramfs-kexecboot(-klibc)-image: Drop legacy export of
IMAGE_BASENAME
kexecboot(-klibc): remove runtime dependency on kexec(-klibc)
klibc: fix KLIBCARCH for x86-64, powerpc and powerpc64
kexec-tools-klibc_2.0.2: refactor and extend patches for building
.../images/initramfs-kexecboot-image.bb | 2 -
.../images/initramfs-kexecboot-klibc-image.bb | 2 -
.../recipes-bsp/kexecboot/kexecboot-klibc_git.bb | 1 -
.../recipes-bsp/kexecboot/kexecboot_git.bb | 1 -
meta-initramfs/recipes-devtools/klibc/klibc.inc | 3 +
.../kexec-tools-klibc-2.0.2/arm_crashdump.patch | 12 +++
.../kexec-tools-klibc-2.0.2/cflags_static.patch | 11 +++
.../kexec/kexec-tools-klibc-2.0.2/elf.patch | 94 ---------------------
.../kexec/kexec-tools-klibc-2.0.2/errno.patch | 13 ---
.../kexec-tools-klibc-2.0.2/ifdown_errno.patch | 11 +++
.../kexec-tools-klibc-2.0.2/kexec-elf-rel.patch | 61 ++++++++++++++
.../kexec-tools-klibc-2.0.2/kexec-syscall.patch | 44 ++++++++++
.../kexec/kexec-tools-klibc-2.0.2/other.patch | 97 ----------------------
.../kexec-tools-klibc-2.0.2/ppc__lshrdi3.patch | 18 ++++
.../kexec-tools-klibc-2.0.2/purgatory_flags.patch | 21 +++++
.../kexec-tools-klibc-2.0.2/purgatory_string.patch | 9 ++
.../kexec/kexec-tools-klibc-2.0.2/sha256.patch | 13 +++
.../kexec/kexec-tools-klibc-2.0.2/string.patch | 11 ---
.../kexec/kexec-tools-klibc-2.0.2/syscall.patch | 46 ----------
.../sysconf_nrprocessors.patch | 13 +++
.../kexec-tools-klibc-2.0.2/x86_basename.patch | 14 ++++
.../kexec-tools-klibc-2.0.2/x86_kexec_test.patch | 13 +++
.../kexec/kexec-tools-klibc-2.0.2/x86_sys_io.patch | 21 +++++
.../kexec-tools-klibc-2.0.2/x86_vfscanf.patch | 27 ++++++
.../kexec/kexec-tools-klibc_2.0.2.bb | 28 +++++--
25 files changed, 310 insertions(+), 276 deletions(-)
create mode 100644 meta-initramfs/recipes-kernel/kexec/kexec-tools-klibc-2.0.2/arm_crashdump.patch
create mode 100644 meta-initramfs/recipes-kernel/kexec/kexec-tools-klibc-2.0.2/cflags_static.patch
delete mode 100644 meta-initramfs/recipes-kernel/kexec/kexec-tools-klibc-2.0.2/elf.patch
delete mode 100644 meta-initramfs/recipes-kernel/kexec/kexec-tools-klibc-2.0.2/errno.patch
create mode 100644 meta-initramfs/recipes-kernel/kexec/kexec-tools-klibc-2.0.2/ifdown_errno.patch
create mode 100644 meta-initramfs/recipes-kernel/kexec/kexec-tools-klibc-2.0.2/kexec-elf-rel.patch
create mode 100644 meta-initramfs/recipes-kernel/kexec/kexec-tools-klibc-2.0.2/kexec-syscall.patch
delete mode 100644 meta-initramfs/recipes-kernel/kexec/kexec-tools-klibc-2.0.2/other.patch
create mode 100644 meta-initramfs/recipes-kernel/kexec/kexec-tools-klibc-2.0.2/ppc__lshrdi3.patch
create mode 100644 meta-initramfs/recipes-kernel/kexec/kexec-tools-klibc-2.0.2/purgatory_flags.patch
create mode 100644 meta-initramfs/recipes-kernel/kexec/kexec-tools-klibc-2.0.2/purgatory_string.patch
create mode 100644 meta-initramfs/recipes-kernel/kexec/kexec-tools-klibc-2.0.2/sha256.patch
delete mode 100644 meta-initramfs/recipes-kernel/kexec/kexec-tools-klibc-2.0.2/string.patch
delete mode 100644 meta-initramfs/recipes-kernel/kexec/kexec-tools-klibc-2.0.2/syscall.patch
create mode 100644 meta-initramfs/recipes-kernel/kexec/kexec-tools-klibc-2.0.2/sysconf_nrprocessors.patch
create mode 100644 meta-initramfs/recipes-kernel/kexec/kexec-tools-klibc-2.0.2/x86_basename.patch
create mode 100644 meta-initramfs/recipes-kernel/kexec/kexec-tools-klibc-2.0.2/x86_kexec_test.patch
create mode 100644 meta-initramfs/recipes-kernel/kexec/kexec-tools-klibc-2.0.2/x86_sys_io.patch
create mode 100644 meta-initramfs/recipes-kernel/kexec/kexec-tools-klibc-2.0.2/x86_vfscanf.patch
--
1.8.1.5
next reply other threads:[~2013-05-12 23:40 UTC|newest]
Thread overview: 5+ messages / expand[flat|nested] mbox.gz Atom feed top
2013-05-12 23:22 Andrea Adami [this message]
2013-05-12 23:22 ` [meta-initramfs][PATCH 1/4] initramfs-kexecboot(-klibc)-image: Drop legacy export of IMAGE_BASENAME Andrea Adami
2013-05-12 23:22 ` [meta-initramfs][PATCH 2/4] kexecboot(-klibc): remove runtime dependency on kexec(-klibc) Andrea Adami
2013-05-12 23:22 ` [meta-initramfs][PATCH 3/4] klibc: fix KLIBCARCH for x86-64, powerpc and powerpc64 Andrea Adami
2013-05-12 23:22 ` [meta-initramfs][PATCH 4/4] kexec-tools-klibc_2.0.2: refactor and extend patches for building Andrea Adami
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.1368400320.git.andrea.adami@gmail.com \
--to=andrea.adami@gmail.com \
--cc=openembedded-devel@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 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.