summaryrefslogtreecommitdiffstats
path: root/loader2/nfsinstall.h
diff options
context:
space:
mode:
authorJeremy Katz <katzj@redhat.com>2002-12-09 00:37:30 +0000
committerJeremy Katz <katzj@redhat.com>2002-12-09 00:37:30 +0000
commit0e87755369a67acc8857dbff3573e8f397fa15d2 (patch)
tree09794546a056a58281dcdc408e5a6c7ed279c28a /loader2/nfsinstall.h
parentcc68c073dd8e168ab4387af16f48a108d894da8d (diff)
downloadanaconda-0e87755369a67acc8857dbff3573e8f397fa15d2.tar.gz
anaconda-0e87755369a67acc8857dbff3573e8f397fa15d2.tar.xz
anaconda-0e87755369a67acc8857dbff3573e8f397fa15d2.zip
oops, forgot to cvs add these
Diffstat (limited to 'loader2/nfsinstall.h')
-rw-r--r--loader2/nfsinstall.h23
1 files changed, 23 insertions, 0 deletions
diff --git a/loader2/nfsinstall.h b/loader2/nfsinstall.h
new file mode 100644
index 000000000..45d76b4f7
--- /dev/null
+++ b/loader2/nfsinstall.h
@@ -0,0 +1,23 @@
+#ifndef NFSINSTALL_H
+#define NFSINSTALL_H
+
+#include "method.h"
+
+struct nfsInstallData {
+ char * host;
+ char * directory;
+};
+
+
+void setKickstartNfs(struct loaderData_s * loaderData, int argc,
+ char ** argv, int * flagsPtr);
+int kickstartFromNfs(char * url, struct knownDevices * kd,
+ struct loaderData_s * loaderData, int flags);
+char * mountNfsImage(struct installMethod * method,
+ char * location, struct knownDevices * kd,
+ struct loaderData_s * loaderData,
+ moduleInfoSet modInfo, moduleList modLoaded,
+ moduleDeps * modDepsPtr, int flags);
+
+
+#endif