aboutsummaryrefslogtreecommitdiff
path: root/dtc.h
diff options
context:
space:
mode:
authorJerry Van Baren <gvb.uboot@gmail.com>2007-04-04 22:04:33 -0400
committerJon Loeliger <jdl@freescale.com>2007-04-05 09:57:55 -0500
commit4384b23454a939852d679aee93ee624cf210287f (patch)
tree3baf8083f97b09b0df91f16c23a36d7b426a6cf7 /dtc.h
parentce34ae3b238c562a215df0dddea56da866f16c0f (diff)
downloaddtc-4384b23454a939852d679aee93ee624cf210287f.zip
dtc-4384b23454a939852d679aee93ee624cf210287f.tar.gz
dtc-4384b23454a939852d679aee93ee624cf210287f.tar.bz2
Implement the -R option and add a -S option.
Implement the -R <number> option to add memory reserve slots. Add a -S <size> option makes the blob at least this number of bytes. Signed-off-by: Gerald Van Baren <vanbaren@cideas.com>
Diffstat (limited to 'dtc.h')
-rw-r--r--dtc.h6
1 files changed, 4 insertions, 2 deletions
diff --git a/dtc.h b/dtc.h
index 7ed3df2..8cfe1a1 100644
--- a/dtc.h
+++ b/dtc.h
@@ -37,9 +37,11 @@
#include "flat_dt.h"
/*
- * Level of quietness
+ * Command line options
*/
-int quiet;
+extern int quiet; /* Level of quietness */
+extern int reservenum; /* Number of memory reservation slots */
+extern int minsize; /* Minimum blob size */
static inline void die(char * str, ...)
{