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

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

#endif