]> git.ozlabs.org Git - petitboot/blobdiff - lib/pb-protocol/pb-protocol.h
[pb-protocol] Add ui_info member to devices and boot options
[petitboot] / lib / pb-protocol / pb-protocol.h
index 36dbf00b223a3d3ef59d3288792b82074dc8cf84..98f290662be0e1a71324572b1a36658c30b81871 100644 (file)
@@ -27,6 +27,8 @@ struct device {
        char *icon_file;
 
        struct list boot_options;
+
+       void *ui_info;
 };
 
 struct boot_option {
@@ -39,6 +41,8 @@ struct boot_option {
        char *boot_args;
 
        struct list_item list;
+
+       void *ui_info;
 };
 
 struct boot_option *boot_option_copy(void* ctx, const struct boot_option *opt);