From ce5eab024583af5a4725503bad6ed2aee452b1aa Mon Sep 17 00:00:00 2001 From: Jeremy Kerr Date: Fri, 2 Jan 2009 16:34:18 +0900 Subject: Hook up parsers to device discovery Iterate the parsers from the device handler on an add event. Initial change to just the kboot parser. Signed-off-by: Jeremy Kerr --- discover/parser-utils.h | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 discover/parser-utils.h (limited to 'discover/parser-utils.h') diff --git a/discover/parser-utils.h b/discover/parser-utils.h new file mode 100644 index 0000000..e82e3f9 --- /dev/null +++ b/discover/parser-utils.h @@ -0,0 +1,17 @@ +#ifndef PARSER_UTILS_H +#define PARSER_UTILS_H + +#include "parser.h" + +#define streq(a,b) (!strcasecmp((a),(b))) + +#define artwork_pathname(file) (PKG_SHARE_DIR "/artwork/" file) + +void device_add_boot_option(struct device *device, + struct boot_option *boot_option); + +const char *generic_icon_file(enum generic_icon_type type); + +enum generic_icon_type guess_device_type(struct discover_context *ctx); + +#endif /* PARSER_UTILS_H */ -- cgit v1.2.1