diff options
author | Jeremy Kerr <jk@ozlabs.org> | 2009-02-01 16:07:23 +1100 |
---|---|---|
committer | Jeremy Kerr <jk@ozlabs.org> | 2009-02-01 16:07:23 +1100 |
commit | 03cc4474b6c6c189cc556ef857538a8150b53077 (patch) | |
tree | 7a4cd7a4d69e28250631dca45d18e7d5f1fc42bc /lib | |
parent | e48a0d17214a832cfcc42d937a26a4bbf732c25a (diff) | |
download | petitboot-03cc4474b6c6c189cc556ef857538a8150b53077.zip petitboot-03cc4474b6c6c189cc556ef857538a8150b53077.tar.gz |
[pb-protocol] Add ui_info member to devices and boot options
Signed-off-by: Jeremy Kerr <jk@ozlabs.org>
Diffstat (limited to 'lib')
-rw-r--r-- | lib/pb-protocol/pb-protocol.h | 4 |
1 files changed, 4 insertions, 0 deletions
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); |