Updated PCI IDs to latest snapshot.
[tangerine.git] / arch / common / boot / grub2 / loader / powerpc / ieee1275 / linux_normal.c
blob619eb335d6697f0721e205e2a5f4ea0867614a73
1 /* linux_normal.c - boot Linux */
2 /*
3 * GRUB -- GRand Unified Bootloader
4 * Copyright (C) 2004,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/normal.h>
21 #include <grub/dl.h>
22 #include <grub/machine/loader.h>
24 static const struct grub_arg_option options[] =
26 {0, 0, 0, 0, 0, 0}
29 static grub_err_t
30 grub_cmd_linux (struct grub_arg_list *state __attribute__ ((unused)),
31 int argc, char **args)
33 grub_rescue_cmd_linux (argc, args);
34 return GRUB_ERR_NONE;
37 static grub_err_t
38 grub_cmd_initrd (struct grub_arg_list *state __attribute__ ((unused)),
39 int argc, char **args)
41 grub_rescue_cmd_initrd (argc, args);
42 return GRUB_ERR_NONE;
45 GRUB_MOD_INIT(linux_normal)
47 (void) mod;
48 grub_register_command ("linux", grub_cmd_linux, GRUB_COMMAND_FLAG_BOTH,
49 "linux [KERNELARGS...]",
50 "Loads linux", options);
51 grub_register_command ("initrd", grub_cmd_initrd, GRUB_COMMAND_FLAG_BOTH,
52 "initrd FILE",
53 "Loads initrd", options);
56 GRUB_MOD_FINI(linux_normal)
58 grub_unregister_command ("linux");
59 grub_unregister_command ("initrd");