]> git.proxmox.com Git - grub2.git/blame - commands/default.c
2006-05-07 Vesa Jaaskelainen <chaac@nic.fi>
[grub2.git] / commands / default.c
CommitLineData
93f3a1d8 1/* default.c - set the default boot entry */
2/*
3 * GRUB -- GRand Unified Bootloader
4 * Copyright (C) 2005 Free Software Foundation, Inc.
5 *
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 2 of the License, or
9 * (at your option) any later version.
10 *
11 * This program 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.
15 *
16 * You should have received a copy of the GNU General Public License
17 * along with GRUB; if not, write to the Free Software
18 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
19 */
20
21#include <grub/arg.h>
22#include <grub/misc.h>
23#include <grub/normal.h>
24#include <grub/err.h>
25#include <grub/dl.h>
26
27/* This is a simple version. This should support a saved boot entry,
28 a label, etc. */
29static grub_err_t
30grub_cmd_default (struct grub_arg_list *state __attribute__ ((unused)),
31 int argc, char **args)
32{
33 grub_menu_t menu;
34
35 if (argc != 1)
36 return grub_error (GRUB_ERR_BAD_ARGUMENT, "entry number required");
37
38 menu = grub_context_get_current_menu ();
39 if (menu)
40 menu->default_entry = grub_strtoul (args[0], 0, 0);
41
42 return grub_errno;
43}
44
45\f
46
6d099807 47GRUB_MOD_INIT(default)
93f3a1d8 48{
49 (void)mod; /* To stop warning. */
50 grub_register_command ("default", grub_cmd_default, GRUB_COMMAND_FLAG_MENU,
51 "default ENTRY", "Set the default entry", 0);
52}
53
6d099807 54GRUB_MOD_FINI(default)
93f3a1d8 55{
56 grub_unregister_command ("default");
57}