mail archive of the barebox mailing list
 help / color / mirror / Atom feed
From: Sascha Hauer <s.hauer@pengutronix.de>
To: barebox@lists.infradead.org
Subject: Size reduction patches
Date: Fri,  8 Apr 2011 16:56:11 +0200	[thread overview]
Message-ID: <1302274579-11158-1-git-send-email-s.hauer@pengutronix.de> (raw)

The following patches aim to make a smaller barebox possible. They
make several things like command handling, having a shell or having
a fullblown malloc support configurable.

Sascha Hauer (12):
      add block support
      ata: use block support
      ata: make write support optional
      mci: make write support optional
      env: Make environment variable support optional
      make command support optional
      add noshell support
      arm: compile icache command only when command support is present
      malloc: put common memory functions to seperate file
      add dummy_malloc functions
      ARM: make exception handling optional
      nand: make reading oob optional

 arch/arm/Kconfig              |    5 +
 arch/arm/cpu/Makefile         |    4 +-
 arch/arm/cpu/cpu.c            |    3 +-
 arch/arm/cpu/start.c          |   10 ++
 commands/Kconfig              |   13 ++-
 common/Kconfig                |   42 +++++++-
 common/Makefile               |    9 +-
 common/block.c                |  263 +++++++++++++++++++++++++++++++++++++++++
 common/dlmalloc.c             |   50 --------
 common/dummy_malloc.c         |   26 ++++
 common/memory.c               |   71 +++++++++++
 common/startup.c              |    5 +-
 drivers/ata/Kconfig           |    5 +
 drivers/ata/disk_drive.c      |  196 ++++++------------------------
 drivers/mci/Kconfig           |    5 +
 drivers/mci/mci-core.c        |    6 +
 drivers/mtd/nand/Kconfig      |    5 +
 drivers/mtd/nand/nand.c       |   42 ++++++--
 drivers/mtd/nand/nand_base.c  |    9 ++-
 drivers/mtd/nand/nand_hwecc.c |    2 +
 fs/Makefile                   |    2 +-
 include/block.h               |   32 +++++
 include/environment.h         |   12 ++
 include/malloc.h              |    1 +
 24 files changed, 591 insertions(+), 227 deletions(-)
 create mode 100644 common/block.c
 create mode 100644 common/dummy_malloc.c
 create mode 100644 common/memory.c
 create mode 100644 include/block.h

_______________________________________________
barebox mailing list
barebox@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/barebox

             reply	other threads:[~2011-04-08 14:56 UTC|newest]

Thread overview: 9+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2011-04-08 14:56 Sascha Hauer [this message]
2011-04-08 14:56 ` [PATCH 1/8] env: Make environment variable support optional Sascha Hauer
2011-04-08 14:56 ` [PATCH 2/8] make command " Sascha Hauer
2011-04-08 14:56 ` [PATCH 3/8] add noshell support Sascha Hauer
2011-04-08 14:56 ` [PATCH 4/8] arm: compile icache command only when command support is present Sascha Hauer
2011-04-08 14:56 ` [PATCH 5/8] malloc: put common memory functions to seperate file Sascha Hauer
2011-04-08 14:56 ` [PATCH 6/8] add dummy_malloc functions Sascha Hauer
2011-04-08 14:56 ` [PATCH 7/8] ARM: make exception handling optional Sascha Hauer
2011-04-08 14:56 ` [PATCH 8/8] nand: make reading oob optional Sascha Hauer

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=1302274579-11158-1-git-send-email-s.hauer@pengutronix.de \
    --to=s.hauer@pengutronix.de \
    --cc=barebox@lists.infradead.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