X-Git-Url: http://git.ozlabs.org/?p=petitboot;a=blobdiff_plain;f=discover%2Fparser-utils.h;fp=discover%2Fparser-utils.h;h=e82e3f9c81638be7cdbe2bedcbcca2eba98f66fa;hp=0000000000000000000000000000000000000000;hb=ce5eab024583af5a4725503bad6ed2aee452b1aa;hpb=b118597194815910897ccf86d77b8b5a066adf5a 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 */