summaryrefslogtreecommitdiffstats
path: root/loader/kickstart.h
blob: a3e72433877e1a44a38836f1c861bbd3c279f0f9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#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

int ksReadCommands(char * cmdFile);
int ksGetCommand(int cmd, char ** last, int * argc, char *** argv);
int ksHasCommand(int cmd);

#endif