Openembedded Devel Discussions
 help / color / mirror / Atom feed
From: Andrea Adami <andrea.adami@gmail.com>
To: openembedded-devel@lists.openembedded.org
Subject: [PATCH 00/14] [RFC] kexecboot and implementation on Zaurus
Date: Sun, 18 Jan 2009 03:24:20 +0100	[thread overview]
Message-ID: <cover.1232244759.git.andrea.adami@gmail.com> (raw)

- brand new kexecboot-0.4.bb (thx Yuri Bushmelev)
- this serie of patches deploys kernel in /boot
- but breaks the usual limits for kernel size

Andrea Adami (14):
  linux-kexecboot.inc: revert 71d21c5e379ab3f5d754a967a52240963552a71c
  linux-kexecboot_2.6.26: revert
    71dade0cdaef0220d31a309d8b6d28b99eb25b29
  linux-kexecboot-2.6.26: defconfig fixes
  kexecboot: add new recipe for kexecboot-0.4
  kexecboot: remove kexecboot-0.3
  kexecboot: delete initramfs-kexecboot
  kexecboot: use custom device table with mmc and event0
  zaurus-2.6.inc: switch to kexecboot and deploy kernel in /boot
  linux-rp: unlock 2.6.24 and 2.6.26 for Zaurus clamshells
  linux-rp: update defconfig for spitz
  linux-rp: update defconfigs for c7x0 and akita
  zaurus-2.6.inc: modules fixes
  base-files: fix fstab for multiboot on Zaurus clamshells
  zaurus-clamshell.inc: remove 16 bytes Sharp header

 conf/checksums.ini                                 |    3 +
 conf/machine/include/kexecboot.inc                 |    3 +
 conf/machine/include/zaurus-2.6.inc                |   10 +-
 conf/machine/include/zaurus-clamshell.inc          |    8 +-
 files/device_table-kexecboot.txt                   |    4 +
 files/device_table-minimal.txt                     |    7 -
 packages/base-files/base-files/akita/fstab         |    2 +-
 packages/base-files/base-files/c7x0/fstab          |    2 +-
 packages/base-files/base-files/spitz/fstab         |    4 +-
 packages/kexecboot/files/kexecboot-rewrite.patch   |  344 --------------------
 packages/kexecboot/initramfs-kexecboot-image.bb    |    2 +-
 packages/kexecboot/initramfs-kexecboot_1.0.bb      |   28 --
 packages/kexecboot/kexecboot_0.3.bb                |   21 --
 packages/kexecboot/kexecboot_0.4.bb                |   37 ++
 .../linux-kexecboot-2.6.26/akita/defconfig         |    8 +-
 .../linux-kexecboot-2.6.26/c7x0/defconfig          |    8 +-
 .../linux-kexecboot-2.6.26/spitz/defconfig         |   29 +-
 packages/kexecboot/linux-kexecboot.inc             |    1 -
 packages/kexecboot/linux-kexecboot_2.6.26.bb       |    4 +-
 packages/linux/linux-rp-2.6.24/defconfig-akita     |   12 +-
 packages/linux/linux-rp-2.6.24/defconfig-c7x0      |   12 +-
 packages/linux/linux-rp-2.6.24/defconfig-spitz     |   29 +-
 packages/linux/linux-rp-2.6.26/defconfig-akita     |   12 +-
 packages/linux/linux-rp-2.6.26/defconfig-c7x0      |   12 +-
 packages/linux/linux-rp-2.6.26/defconfig-spitz     |   29 +-
 packages/linux/linux-rp_2.6.24.bb                  |    5 +-
 packages/linux/linux-rp_2.6.26.bb                  |    4 +-
 27 files changed, 151 insertions(+), 489 deletions(-)
 delete mode 100644 packages/kexecboot/files/kexecboot-rewrite.patch
 delete mode 100644 packages/kexecboot/initramfs-kexecboot_1.0.bb
 delete mode 100644 packages/kexecboot/kexecboot_0.3.bb
 create mode 100644 packages/kexecboot/kexecboot_0.4.bb




             reply	other threads:[~2009-01-18  2:31 UTC|newest]

Thread overview: 26+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2009-01-18  2:24 Andrea Adami [this message]
2009-01-18  2:24 ` [PATCH 01/14] linux-kexecboot.inc: revert 71d21c5e379ab3f5d754a967a52240963552a71c Andrea Adami
2009-01-18  2:24 ` [PATCH 02/14] linux-kexecboot_2.6.26: revert 71dade0cdaef0220d31a309d8b6d28b99eb25b29 Andrea Adami
2009-01-18  2:24 ` [PATCH 03/14] linux-kexecboot-2.6.26: defconfig fixes Andrea Adami
2009-01-18  2:24 ` [PATCH 04/14] kexecboot: add new recipe for kexecboot-0.4 Andrea Adami
2009-01-18  2:24 ` [PATCH 05/14] kexecboot: remove kexecboot-0.3 Andrea Adami
2009-01-18  2:24 ` [PATCH 06/14] kexecboot: delete initramfs-kexecboot Andrea Adami
2009-01-18  2:24 ` [PATCH 07/14] kexecboot: use custom device table with mmc and event0 Andrea Adami
2009-01-18  2:54   ` Tom Rini
2009-01-18  8:49   ` Koen Kooi
2009-01-18 10:29     ` Andrea Adami
2009-01-18 10:47       ` Koen Kooi
2009-01-18  2:24 ` [PATCH 08/14] zaurus-2.6.inc: switch to kexecboot and deploy kernel in /boot Andrea Adami
2009-01-31  1:01   ` Yuri Bushmelev
2009-01-31  2:13     ` Graeme Gregory
2009-01-31  8:02       ` Koen Kooi
2009-01-18  2:24 ` [PATCH 09/14] linux-rp: unlock 2.6.24 and 2.6.26 for Zaurus clamshells Andrea Adami
2009-01-18  2:24 ` [PATCH 10/14] linux-rp: update defconfig for spitz Andrea Adami
2009-01-18  2:24 ` [PATCH 11/14] linux-rp: update defconfigs for c7x0 and akita Andrea Adami
2009-01-18  2:24 ` [PATCH 12/14] zaurus-2.6.inc: modules fixes Andrea Adami
2009-01-18  8:50   ` Koen Kooi
2009-01-18 10:40     ` Andrea Adami
2009-01-18 10:46       ` Koen Kooi
2009-01-18 15:29         ` Andrea Adami
2009-01-18  2:24 ` [PATCH 13/14] base-files: fix fstab for multiboot on Zaurus clamshells Andrea Adami
2009-01-18  2:24 ` [PATCH 14/14] zaurus-clamshell.inc: remove 16 bytes Sharp header 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.1232244759.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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox