1 /* linux_normal.c - boot Linux */
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>
22 #include <grub/machine/loader.h>
24 static const struct grub_arg_option options
[] =
30 grub_cmd_linux (struct grub_arg_list
*state
__attribute__ ((unused
)),
31 int argc
, char **args
)
33 grub_rescue_cmd_linux (argc
, args
);
38 grub_cmd_initrd (struct grub_arg_list
*state
__attribute__ ((unused
)),
39 int argc
, char **args
)
41 grub_rescue_cmd_initrd (argc
, args
);
45 GRUB_MOD_INIT(linux_normal
)
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
,
53 "Loads initrd", options
);
56 GRUB_MOD_FINI(linux_normal
)
58 grub_unregister_command ("linux");
59 grub_unregister_command ("initrd");