summaryrefslogtreecommitdiff
path: root/flash.h
diff options
context:
space:
mode:
authorstefanct <stefanct@2b7e53f0-3cfb-0310-b3e9-8179ed1497e1>2011-12-25 09:12:16 +0000
committerstefanct <stefanct@2b7e53f0-3cfb-0310-b3e9-8179ed1497e1>2011-12-25 09:12:16 +0000
commitcf3abbf99f950681e9601a1da17c0709179ce76e (patch)
tree20ffb99db71ee422b2196d82742fdc2197ab40e7 /flash.h
parent1d48e3c657dd2ad26bfa38d8a43766529997c0fa (diff)
downloadflashrom-cf3abbf99f950681e9601a1da17c0709179ce76e.tar.gz
Add deferred --image processing
The general idea and most of the code are based on the following commits in the chromiumos flashrom tree: 8fc0740356ca15d02fb1c65ab43b10844f148c3b bb9049c66ca55e0dc621dd2c70b5d2cb6e5179bf Signed-off-by: Louis Yung-Chieh Lo <yjlou@chromium.org> and the main part: d0ea9ed71e7f86bb8e8db2ca7c32a96de25343d8 Signed-off-by: David Hendricks <dhendrix@chromium.org> This implementation does not defer the processing until doit(), but after the argument parsing loop only (doit() should not contain argument checks). This allows to specify -i and -l parameters in any order. Signed-off-by: Stefan Tauner <stefan.tauner@student.tuwien.ac.at> Acked-by: David Hendricks <dhendrix@google.com> git-svn-id: https://code.coreboot.org/svn/flashrom/trunk@1482 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
Diffstat (limited to 'flash.h')
-rw-r--r--flash.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/flash.h b/flash.h
index e21a986..e51b6d4 100644
--- a/flash.h
+++ b/flash.h
@@ -289,8 +289,9 @@ int print(int type, const char *fmt, ...) __attribute__((format(printf, 2, 3)));
#define msg_cspew(...) print(MSG_BARF, __VA_ARGS__) /* chip debug barf */
/* layout.c */
+int register_include_arg(char *name);
+int process_include_args(void);
int read_romlayout(char *name);
-int find_romentry(char *name);
int handle_romentries(struct flashctx *flash, uint8_t *oldcontents, uint8_t *newcontents);
/* spi.c */