summaryrefslogtreecommitdiffstats
path: root/loader2/loader.h
diff options
context:
space:
mode:
authorDavid Cantrell <dcantrell@redhat.com>2006-07-27 18:43:50 +0000
committerDavid Cantrell <dcantrell@redhat.com>2006-07-27 18:43:50 +0000
commit178e15d17644fe5b8aef868fe746501889ed2316 (patch)
treee57ef6df01817d5c0fde67719ed958e55dbff12c /loader2/loader.h
parentf516c56ac2b3bc7f0f03222f4770639ed926e867 (diff)
downloadanaconda-178e15d17644fe5b8aef868fe746501889ed2316.tar.gz
anaconda-178e15d17644fe5b8aef868fe746501889ed2316.tar.xz
anaconda-178e15d17644fe5b8aef868fe746501889ed2316.zip
* loader2/cdinstall.c: loaderData->method is now an int.
* loader2/hdinstall.c: Whitespace consistency, loaderData->method is now an int. * loader2/loader.c (doLoaderMain): loaderData->method is now an int, pass methodNum to readNetConfig(). * loader2/loader.h: char * method -> int method. * loader2/method.c: Set loaderData->method to appropriate METHOD_ value since it's now an int. * loader2/method.h: Add METHOD_* macros. * loader2/net.c (cidrCallback): Dialog wording change. * loader2/net.c (readNetConfig): Take methodNum as a param, pass methodNum to configureTCPIP(). * loader2/net.c (configureTCPIP): Take methodNum as a param, if user selects METHOD_NFS and unchecks IPv4, display error dialog and ask user to try again. * loader2/net.c (kickstartNetworkUp): Pass methodNum to readNetConfig(). * loader2/net.h: Prototype updates. * loader2/nfsinstall.c: loaderData->method is now an int. * loader2/urlinstall.c: loaderData->method is now an int.
Diffstat (limited to 'loader2/loader.h')
-rw-r--r--loader2/loader.h3
1 files changed, 1 insertions, 2 deletions
diff --git a/loader2/loader.h b/loader2/loader.h
index 9dedb51bd..85e8ca37d 100644
--- a/loader2/loader.h
+++ b/loader2/loader.h
@@ -105,7 +105,7 @@ struct loaderData_s {
int ipinfo_set;
int noipv4, noipv6;
char * ksFile;
- char * method;
+ int method;
char * ddsrc;
void * methodData;
char * logLevel;
@@ -132,5 +132,4 @@ struct loaderData_s {
#define LIBPATH "/lib:/usr/lib:/usr/X11R6/lib:/usr/kerberos/lib:/mnt/usr/lib:/mnt/sysimage/lib:/mnt/sysimage/usr/lib"
#endif
-
#endif