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