1 /* chainloader_normal.c - boot another boot loader */
3 * GRUB -- GRand Unified Bootloader
4 * Copyright (C) 2004,2006,2007 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/efi/chainloader.h>
22 #include <grub/normal.h>
26 chainloader_command (struct grub_arg_list
*state
__attribute__ ((unused
)),
27 int argc
, char **args
)
30 grub_error (GRUB_ERR_BAD_ARGUMENT
, "no file specified");
32 grub_chainloader_cmd (args
[0]);
36 GRUB_MOD_INIT(chainloader_normal
)
38 (void) mod
; /* To stop warning. */
39 grub_register_command ("chainloader", chainloader_command
,
40 GRUB_COMMAND_FLAG_BOTH
,
42 "Prepare to boot another boot loader.", 0);
45 GRUB_MOD_FINI(chainloader_normal
)
47 grub_unregister_command ("chainloader");