1 /* rescue_parser.c - rescue mode parser */
3 * GRUB -- GRand Unified Bootloader
4 * Copyright (C) 2009 Free Software Foundation, Inc.
6 * GRUB is free software: you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation, either version 3 of the License, or
9 * (at your option) any later version.
11 * GRUB is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
16 * You should have received a copy of the GNU General Public License
17 * along with GRUB. If not, see <http://www.gnu.org/licenses/>.
20 #include <grub/types.h>
23 #include <grub/parser.h>
24 #include <grub/misc.h>
25 #include <grub/command.h>
28 grub_rescue_parse_line (char *line
, grub_reader_getline_t getline
)
35 if (grub_parser_split_cmdline (line
, getline
, &n
, &args
) || n
< 0)
38 /* In case of an assignment set the environment accordingly
39 instead of calling a function. */
40 if (n
== 0 && grub_strchr (line
, '='))
42 char *val
= grub_strchr (args
[0], '=');
44 grub_env_set (args
[0], val
+ 1);
49 /* Get the command name. */
52 /* If nothing is specified, restart. */
56 cmd
= grub_command_find (name
);
59 (cmd
->func
) (cmd
, n
, &args
[1]);
63 grub_printf ("Unknown command `%s'\n", name
);
64 if (grub_command_find ("help"))
65 grub_printf ("Try `help' for usage\n");
75 static struct grub_parser grub_rescue_parser
=
78 .parse_line
= grub_rescue_parse_line
82 grub_register_rescue_parser (void)
84 grub_parser_register ("rescue", &grub_rescue_parser
);