blob: ca85e34792dc108af1607cc5d448c4cffc58f95c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
#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
#define KS_CMD_XDISPLAY 7
#define KS_CMD_TEXT 8
#define KS_CMD_DRIVERDISK 9
#define KS_CMD_DEVICEPROBE 10
int ksReadCommands(char * cmdFile);
int ksGetCommand(int cmd, char ** last, int * argc, char *** argv);
int ksHasCommand(int cmd);
#endif
|