From: Jeremy Kerr Date: Sun, 1 Feb 2009 05:07:23 +0000 (+1100) Subject: [pb-protocol] Add ui_info member to devices and boot options X-Git-Tag: v1.0.0~920 X-Git-Url: http://git.ozlabs.org/?p=petitboot;a=commitdiff_plain;h=03cc4474b6c6c189cc556ef857538a8150b53077 [pb-protocol] Add ui_info member to devices and boot options Signed-off-by: Jeremy Kerr --- diff --git a/lib/pb-protocol/pb-protocol.h b/lib/pb-protocol/pb-protocol.h index 36dbf00..98f2906 100644 --- a/lib/pb-protocol/pb-protocol.h +++ b/lib/pb-protocol/pb-protocol.h @@ -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);