summaryrefslogtreecommitdiffstats
path: root/devices/message.h
blob: 2e8bbba81578f10679c53597ac78819fae32133b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26

enum device_action {
	DEV_ACTION_ADD_DEVICE = 0,
	DEV_ACTION_ADD_OPTION = 1,
	DEV_ACTION_REMOVE_DEVICE = 2,
	DEV_ACTION_REMOVE_OPTION = 3
};

struct device {
	char *id;
	char *name;
	char *description;
	char *icon_file;
};

struct boot_option {
	char *id;
	char *name;
	char *description;
	char *icon_file;
	char *boot_image_file;
	char *initrd_file;
	char *boot_args;
};


OpenPOWER on IntegriCloud