diff options
author | Heiko Schocher <hs@denx.de> | 2012-01-16 21:13:20 +0000 |
---|---|---|
committer | Albert ARIBAUD <albert.u.boot@aribaud.net> | 2012-02-12 10:11:24 +0100 |
commit | e0611dd97bb38ba341b3479974eb2a3271de380e (patch) | |
tree | 3c2de4b1d9ea4b61d753284b6a2121651fa89352 /include/menu.h | |
parent | 9c3483113de1204118a1b252bf4c81b899dd12b4 (diff) | |
download | u-boot-e0611dd97bb38ba341b3479974eb2a3271de380e.tar.gz u-boot-e0611dd97bb38ba341b3479974eb2a3271de380e.tar.bz2 u-boot-e0611dd97bb38ba341b3479974eb2a3271de380e.zip |
common, menu: add statusline support
add the possibility to show a statusline when printing a menu
Signed-off-by: Heiko Schocher <hs@denx.de>
Cc: Jason Hobbs <jason.hobbs@calxeda.com>
Cc: Mike Frysinger <vapier@gentoo.org>
Acked-by: Mike Frysinger <vapier@gentoo.org>
Diffstat (limited to 'include/menu.h')
-rw-r--r-- | include/menu.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/menu.h b/include/menu.h index cf14a9cca3..b806a02b5d 100644 --- a/include/menu.h +++ b/include/menu.h @@ -26,5 +26,6 @@ int menu_default_set(struct menu *m, char *item_key); int menu_get_choice(struct menu *m, void **choice); int menu_item_add(struct menu *m, char *item_key, void *item_data); int menu_destroy(struct menu *m); +void menu_display_statusline(struct menu *m); #endif /* __MENU_H__ */ |