summaryrefslogtreecommitdiffstats
path: root/helper/helper.h
diff options
context:
space:
mode:
Diffstat (limited to 'helper/helper.h')
-rw-r--r--helper/helper.h7
1 files changed, 5 insertions, 2 deletions
diff --git a/helper/helper.h b/helper/helper.h
index cb28695..e0d1fbb 100644
--- a/helper/helper.h
+++ b/helper/helper.h
@@ -28,7 +28,7 @@ struct writer {
* 'initrd' is the mini-initrd to create (only used for ext2 output).
* 'modpath' is the kernel module path.
*/
- void (*wr_start) (const char *appliance,
+ void (*wr_start) (const char *hostcpu, const char *appliance,
const char *modpath, const char *initrd);
/* Finish off the appliance. */
@@ -52,7 +52,10 @@ extern struct timeval start_t;
extern int verbose;
/* appliance.c */
-extern void create_appliance (char **inputs, int nr_inputs, const char *whitelist, const char *modpath, const char *initrd, const char *appliance, struct writer *writer);
+extern void create_appliance (const char *hostcpu, char **inputs, int nr_inputs, const char *whitelist, const char *modpath, const char *initrd, const char *appliance, struct writer *writer);
+
+/* checksum.c */
+extern struct writer checksum_writer;
/* cpio.c */
extern struct writer cpio_writer;