]> git.ozlabs.org Git - petitboot/blobdiff - lib/types/types.h
lib: Define autoboot_options, device_type helpers
[petitboot] / lib / types / types.h
index f543b7f7ea3295d39a91783897663152e5350f5d..e22dbc307d478389047ad32de52076c57ad955b7 100644 (file)
@@ -13,6 +13,10 @@ enum device_type {
        DEVICE_TYPE_UNKNOWN,
 };
 
+const char *device_type_display_name(enum device_type type);
+const char *device_type_name(enum device_type type);
+enum device_type find_device_type(const char *str);
+
 struct device {
        char            *id;
        enum device_type type;
@@ -118,6 +122,17 @@ struct boot_priority {
        enum device_type        type;
 };
 
+struct autoboot_option {
+       enum {
+               BOOT_DEVICE_TYPE,
+               BOOT_DEVICE_UUID
+       } boot_type;
+       union {
+               enum device_type        type;
+               char                    *uuid;
+       };
+};
+
 struct config {
        bool                    autoboot_enabled;
        unsigned int            autoboot_timeout_sec;