1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
#ifndef H_CDINSTALL
#define H_CDINSTALL
#include "method.h"
char * mountCdromImage(struct installMethod * method,
char * location, struct loaderData_s * loaderData,
moduleInfoSet modInfo, moduleList modLoaded,
moduleDeps * modDepsPtr, int flags);
char * findAnacondaCD(char * location,
moduleInfoSet modInfo,
moduleList modLoaded,
moduleDeps modDeps,
int flags,
int requirepkgs);
void setKickstartCD(struct loaderData_s * loaderData, int argc,
char ** argv, int * flagsPtr);
int kickstartFromCD(char *kssrc, int flags);
#endif
|