summaryrefslogtreecommitdiffstats
path: root/loader/kickstart.h
diff options
context:
space:
mode:
authorErik Troan <ewt@redhat.com>1999-08-25 18:31:41 +0000
committerErik Troan <ewt@redhat.com>1999-08-25 18:31:41 +0000
commita6724e3ec33ea192194d951566b3b65acef36446 (patch)
tree911d3bf98eb525e2c32caab60426161008d7204e /loader/kickstart.h
parent23bbde543a970005930a7ea558e1e80992dc8e28 (diff)
downloadanaconda-a6724e3ec33ea192194d951566b3b65acef36446.tar.gz
anaconda-a6724e3ec33ea192194d951566b3b65acef36446.tar.xz
anaconda-a6724e3ec33ea192194d951566b3b65acef36446.zip
first attempt at kickstart
Diffstat (limited to 'loader/kickstart.h')
-rw-r--r--loader/kickstart.h15
1 files changed, 15 insertions, 0 deletions
diff --git a/loader/kickstart.h b/loader/kickstart.h
new file mode 100644
index 000000000..134e4b805
--- /dev/null
+++ b/loader/kickstart.h
@@ -0,0 +1,15 @@
+#ifndef H_KICKSTART
+
+#define KS_CMD_NONE 0
+#define KS_CMD_NFS 1
+#define KS_CMD_CDROM 2
+#define KS_CMD_HD 3
+#define KS_CMD_URL 4
+#define KS_CMD_NETWORK 5
+#define KS_CMD_DEVICE 6
+
+int ksReadCommands(char * cmdFile);
+int ksGetCommand(int cmd, char ** last, int * argc, char *** argv);
+int ksHasCommand(int cmd);
+
+#endif