All of lore.kernel.org
 help / color / mirror / Atom feed
* [meta-initramfs][PATCH 0/4] cleanings and fixes
@ 2013-05-12 23:22 Andrea Adami
  2013-05-12 23:22 ` [meta-initramfs][PATCH 1/4] initramfs-kexecboot(-klibc)-image: Drop legacy export of IMAGE_BASENAME Andrea Adami
                   ` (3 more replies)
  0 siblings, 4 replies; 5+ messages in thread
From: Andrea Adami @ 2013-05-12 23:22 UTC (permalink / raw)
  To: openembedded-devel

* 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




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

end of thread, other threads:[~2013-05-12 23:41 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-05-12 23:22 [meta-initramfs][PATCH 0/4] cleanings and fixes Andrea Adami
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

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.