1 /* linux_normal.c - boot linux */
3 * GRUB -- GRand Unified Bootloader
4 * Copyright (C) 2004,2005,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/machine/loader.h>
22 #include <grub/normal.h>
26 grub_normal_linux_command (struct grub_arg_list
*state
__attribute__ ((unused
)),
27 int argc
, char **args
)
29 grub_rescue_cmd_linux (argc
, args
);
35 grub_normal_initrd_command (struct grub_arg_list
*state
__attribute__ ((unused
)),
36 int argc
, char **args
)
38 grub_rescue_cmd_initrd (argc
, args
);
42 GRUB_MOD_INIT(linux_normal
)
44 (void) mod
; /* To stop warning. */
45 grub_register_command ("linux", grub_normal_linux_command
,
46 GRUB_COMMAND_FLAG_BOTH
,
47 "linux FILE [ARGS...]",
48 "Load a linux kernel.", 0);
50 grub_register_command ("initrd", grub_normal_initrd_command
,
51 GRUB_COMMAND_FLAG_BOTH
,
53 "Load an initrd.", 0);
56 GRUB_MOD_FINI(linux_normal
)
58 grub_unregister_command ("linux");
59 grub_unregister_command ("initrd");