aboutsummaryrefslogtreecommitdiffstats
path: root/include/efi_config.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/efi_config.h')
-rw-r--r--include/efi_config.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/include/efi_config.h b/include/efi_config.h
index cec5715f844..6a104e4b1db 100644
--- a/include/efi_config.h
+++ b/include/efi_config.h
@@ -49,6 +49,8 @@ struct eficonfig_entry {
* @menu_header: menu header string
* @menu_desc: menu description string
* @list: menu entry list structure
+ * @start: top menu index to draw
+ * @end: bottom menu index to draw
*/
struct efimenu {
int delay;
@@ -57,6 +59,8 @@ struct efimenu {
char *menu_header;
const char *menu_desc;
struct list_head list;
+ int start;
+ int end;
};
/**