summaryrefslogtreecommitdiffstats
path: root/devices/udev-helper.h
blob: ea5400c58f28f1a25ab46611b97971742bd25d7b (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
27

#include "message.h"

int add_device(const struct device *dev);

int add_boot_option(const struct boot_option *opt);
void free_boot_option(struct boot_option *opt);

struct parser {
	char *name;
	int priority;
	int (*parse)(const char *devicepath, const char *mountpoint);
	struct parser *next;
};

enum generic_icon_type {
	ICON_TYPE_DISK,
	ICON_TYPE_USB,
	ICON_TYPE_OPTICAL,
	ICON_TYPE_NETWORK,
	ICON_TYPE_UNKNOWN
};

enum generic_icon_type guess_device_type(void);
const char *generic_icon_file(enum generic_icon_type type);

#define streq(a,b) (!strcasecmp((a),(b)))
OpenPOWER on IntegriCloud