continue command support

This commit is contained in:
BVK Chaitanya 2010-05-05 16:19:31 +05:30
parent 160bb3d885
commit eee2594104
4 changed files with 106 additions and 6 deletions

View file

@ -52,6 +52,8 @@ GRUB_MOD_INIT(sh)
grub_parser_register ("grub", &grub_sh_parser);
grub_register_command ("break", grub_script_break,
N_("[n]"), N_("Exit from loops"));
grub_register_command ("continue", grub_script_break,
N_("[n]"), N_("Continue loops"));
}
GRUB_MOD_FINI(sh)