make the linux-ppc packags be in synch with other platforms
[tangerine.git] / arch / common / boot / grub2 / loader / efi / chainloader_normal.c
blob2ea336837e0f2aaaa30dca0cdf88a49aa6297e15
1 /* chainloader_normal.c - boot another boot loader */
2 /*
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>
21 #include <grub/err.h>
22 #include <grub/normal.h>
23 #include <grub/dl.h>
25 static grub_err_t
26 chainloader_command (struct grub_arg_list *state __attribute__ ((unused)),
27 int argc, char **args)
29 if (argc == 0)
30 grub_error (GRUB_ERR_BAD_ARGUMENT, "no file specified");
31 else
32 grub_chainloader_cmd (args[0]);
33 return grub_errno;
36 GRUB_MOD_INIT(chainloader_normal)
38 (void) mod; /* To stop warning. */
39 grub_register_command ("chainloader", chainloader_command,
40 GRUB_COMMAND_FLAG_BOTH,
41 "chainloader FILE",
42 "Prepare to boot another boot loader.", 0);
45 GRUB_MOD_FINI(chainloader_normal)
47 grub_unregister_command ("chainloader");