mail archive of the barebox mailing list
 help / color / mirror / Atom feed
From: Sascha Hauer <s.hauer@pengutronix.de>
To: Wolfram Sang <w.sang@pengutronix.de>
Cc: barebox@lists.infradead.org
Subject: Re: [PATCH V3 00/11] ubiformat for barebox
Date: Wed, 19 Dec 2012 12:50:22 +0100	[thread overview]
Message-ID: <20121219115022.GB26326@pengutronix.de> (raw)
In-Reply-To: <1355759313-23329-1-git-send-email-w.sang@pengutronix.de>

On Mon, Dec 17, 2012 at 04:48:22PM +0100, Wolfram Sang wrote:
> Another round of ubiformat for barebox. Tested on various MX28 based hardware.
> I could create and attach empty UBIs or flashed files successfully. I also
> tried flashing /dev/mem and /dev/c64 which failed correctly.
> 
> Changes since V1 (V2 was only internal):
> 
> * update strtoull_suffix() and size_human_readable()
> * use those and get rid of libubiutils completely \o/
> * use read_full instead of custom read_all
> * dropped all long commandline options and references
> * reworked the help to BAREBOX_CMD_HELP_* usage
> * dropped FSF addresses all over
> * simply quit in dubious situations instead of doing something
> * add '-y' to do something in dubious situations :)
> * quite some bugfixes
> (* verified subpage-size handling, found a bug in nand_mxs driver)
> 
> Please test, comment, apply...

Applied, thanks

Sascha

> 
> Thanks,
> 
>    Wolfram
> 
> 
> Wolfram Sang (11):
>   mtd: drop custom is_power_of_2()
>   lib: misc: add 'iB' suffixes to strtoull_suffix
>   lib: update size_human_readable to latest version
>   ubi: consolidate ubi-media.h
>   ubi: bump ubi-media.h to newest version
>   devfs & mtd: add MEMERASE ioctl support
>   mtd: utils: apply macros for message printouts
>   lib: add libscan
>   lib: add libubigen
>   lib: add barebox version of libmtd
>   commands: add ubiformat
> 
>  commands/Kconfig              |    8 +
>  commands/Makefile             |    1 +
>  commands/ubi.c                |    2 +-
>  commands/ubiformat.c          |  784 +++++++++++++++++++++++++++++++++++++++++
>  drivers/mtd/core.c            |   68 ++--
>  drivers/mtd/ubi/ubi-barebox.h |    5 +-
>  drivers/mtd/ubi/ubi-media.h   |  369 -------------------
>  drivers/mtd/ubi/ubi.h         |    3 +-
>  fs/devfs-core.c               |    3 +-
>  include/common.h              |    2 +-
>  include/mtd/libmtd.h          |  149 ++++++++
>  include/mtd/libscan.h         |  101 ++++++
>  include/mtd/libubigen.h       |  182 ++++++++++
>  include/mtd/ubi-media.h       |  374 ++++++++++++++++++++
>  include/mtd/utils.h           |   47 +++
>  include/ubi-media.h           |  370 -------------------
>  lib/Kconfig                   |    9 +
>  lib/Makefile                  |    3 +
>  lib/display_options.c         |   47 ++-
>  lib/libmtd.c                  |  368 +++++++++++++++++++
>  lib/libscan.c                 |  219 ++++++++++++
>  lib/libubigen.c               |  312 ++++++++++++++++
>  lib/misc.c                    |    5 +-
>  23 files changed, 2634 insertions(+), 797 deletions(-)
>  create mode 100644 commands/ubiformat.c
>  delete mode 100644 drivers/mtd/ubi/ubi-media.h
>  create mode 100644 include/mtd/libmtd.h
>  create mode 100644 include/mtd/libscan.h
>  create mode 100644 include/mtd/libubigen.h
>  create mode 100644 include/mtd/ubi-media.h
>  create mode 100644 include/mtd/utils.h
>  delete mode 100644 include/ubi-media.h
>  create mode 100644 lib/libmtd.c
>  create mode 100644 lib/libscan.c
>  create mode 100644 lib/libubigen.c
> 
> -- 
> 1.7.10.4
> 
> 
> _______________________________________________
> barebox mailing list
> barebox@lists.infradead.org
> http://lists.infradead.org/mailman/listinfo/barebox
> 

-- 
Pengutronix e.K.                           |                             |
Industrial Linux Solutions                 | http://www.pengutronix.de/  |
Peiner Str. 6-8, 31137 Hildesheim, Germany | Phone: +49-5121-206917-0    |
Amtsgericht Hildesheim, HRA 2686           | Fax:   +49-5121-206917-5555 |

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

      parent reply	other threads:[~2012-12-19 11:50 UTC|newest]

Thread overview: 13+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2012-12-17 15:48 Wolfram Sang
2012-12-17 15:48 ` [PATCH V3 01/11] mtd: drop custom is_power_of_2() Wolfram Sang
2012-12-17 15:48 ` [PATCH V3 02/11] lib: misc: add 'iB' suffixes to strtoull_suffix Wolfram Sang
2012-12-17 15:48 ` [PATCH V3 03/11] lib: update size_human_readable to latest version Wolfram Sang
2012-12-17 15:48 ` [PATCH V3 04/11] ubi: consolidate ubi-media.h Wolfram Sang
2012-12-17 15:48 ` [PATCH V3 05/11] ubi: bump ubi-media.h to newest version Wolfram Sang
2012-12-17 15:48 ` [PATCH V3 06/11] devfs & mtd: add MEMERASE ioctl support Wolfram Sang
2012-12-17 15:48 ` [PATCH V3 07/11] mtd: utils: apply macros for message printouts Wolfram Sang
2012-12-17 15:48 ` [PATCH V3 08/11] lib: add libscan Wolfram Sang
2012-12-17 15:48 ` [PATCH V3 09/11] lib: add libubigen Wolfram Sang
2012-12-17 15:48 ` [PATCH V3 10/11] lib: add barebox version of libmtd Wolfram Sang
2012-12-17 15:48 ` [PATCH V3 11/11] commands: add ubiformat Wolfram Sang
2012-12-19 11:50 ` Sascha Hauer [this message]

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=20121219115022.GB26326@pengutronix.de \
    --to=s.hauer@pengutronix.de \
    --cc=barebox@lists.infradead.org \
    --cc=w.sang@pengutronix.de \
    /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