this will allow to have different action based on the box state in shell

as example
menu -e -a -m boot -c 'export test=${menu_box_state}' -R -b 1 -d "yes/no"

Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <[email protected]>
---
 common/menu.c |    5 +++++
 1 files changed, 5 insertions(+), 0 deletions(-)

diff --git a/common/menu.c b/common/menu.c
index 6c530b6..070170e 100644
--- a/common/menu.c
+++ b/common/menu.c
@@ -483,6 +483,11 @@ static void menu_action_command(struct menu *m, struct 
menu_entry *me)
        int ret;
        const char *s = getenv(e->command);
 
+       if (me->type == MENU_ENTRY_BOX)
+               export_env_ull("menu_box_state", me->box_state);
+       else
+               setenv("menu_box_state", "");
+
        /* can be a command as boot */
        if (!s)
                s = e->command;
-- 
1.7.9.1


_______________________________________________
barebox mailing list
[email protected]
http://lists.infradead.org/mailman/listinfo/barebox

Reply via email to