summaryrefslogtreecommitdiffstats
path: root/src/boot.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/boot.h')
-rw-r--r--src/boot.h14
1 files changed, 14 insertions, 0 deletions
diff --git a/src/boot.h b/src/boot.h
new file mode 100644
index 0000000..4e3ff45
--- /dev/null
+++ b/src/boot.h
@@ -0,0 +1,14 @@
+#ifndef _OG_BOOT_H_
+#define _OG_BOOT_H_
+
+struct og_boot_cfg {
+ const char *ogserver;
+ const char *ogrepo;
+ const char *ogrelivedir;
+ const char *username;
+ const char *passwd;
+};
+
+int ogrelive_generate_grub2_file(const struct og_boot_cfg *cfg, const char *mac);
+
+#endif /* _OG_BOOT_H_ */