[PATCH 0/8] usage()/--help clean up & unification
Mike Frysinger
vapier at gentoo.org
Mon Apr 8 17:06:44 EST 2013
Each utility currently open codes how they process options and
implement usage(). This leads to inconsistent behavior and output
which sucks. A bunch also get common things wrong (like sending
--help to stderr).
Rather than go through them one by one and fix their bugs, start
a new mini framework in the util.[ch] code base. This allows the
utils to be much more data driven in their approach to options --
they declare certain structures with the right format, and then
call usage() as needed. The new util code takes care of the rest.
I also snuck in a few minor fixes in this patch series that I
noticed as I was hacking on things. Really I just wanted a --scan
option in the fdtdump tool :).
Mike Frysinger (8):
utilfdt_read_err: use xmalloc funcs
utilfdt_read: pass back up the length of data read
die: constify format string arg
util_version: new helper for displaying version info
fdtdump: make usage a bit more friendly
fdtdump: add a --scan option
dtc/fdt{get,put}/convert-dtsv0-lexer: convert to new usage helpers
util: drop "long" from usage helpers
convert-dtsv0-lexer.l | 22 +++++++---
dtc.c | 116 +++++++++++++++++++++++++-------------------------
fdtdump.c | 72 +++++++++++++++++++++++++++----
fdtget.c | 62 ++++++++++++---------------
fdtput.c | 65 +++++++++++++---------------
util.c | 72 ++++++++++++++++++++++++++++---
util.h | 76 +++++++++++++++++++++++++++++++--
7 files changed, 336 insertions(+), 149 deletions(-)
--
1.8.1.2
More information about the devicetree-discuss
mailing list