summaryrefslogtreecommitdiffstats
path: root/loader2/driverdisk.h
blob: a9aece6e9590063df8a0b266aa84a60d918796f9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#ifndef DRIVERDISK_H
#define DRIVERDISK_H

#include "loader.h"
#include "modules.h"
#include "moduledeps.h"
#include "moduleinfo.h"

int loadDriverFromMedia(int class, struct loaderData_s *loaderData,
                        int usecancel, int noprobe);

int loadDriverDisks(int class, struct loaderData_s *loaderData);

int getRemovableDevices(char *** devNames);

int chooseManualDriver(int class, struct loaderData_s *loaderData);
void useKickstartDD(struct loaderData_s * loaderData, int argc, 
                    char ** argv);

void getDDFromSource(struct loaderData_s * loaderData, char * src);

#endif