iPXE
reboot_cmd.c
Go to the documentation of this file.
1 /*
2  * Copyright (C) 2010 Michael Brown <mbrown@fensystems.co.uk>.
3  *
4  * This program is free software; you can redistribute it and/or
5  * modify it under the terms of the GNU General Public License as
6  * published by the Free Software Foundation; either version 2 of the
7  * License, or any later version.
8  *
9  * This program is distributed in the hope that it will be useful, but
10  * WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12  * General Public License for more details.
13  *
14  * You should have received a copy of the GNU General Public License
15  * along with this program; if not, write to the Free Software
16  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
17  * 02110-1301, USA.
18  *
19  * You can also choose to distribute this program under the terms of
20  * the Unmodified Binary Distribution Licence (as given in the file
21  * COPYING.UBDL), provided that you have satisfied its requirements.
22  */
23 
24 #include <getopt.h>
25 #include <ipxe/command.h>
26 #include <ipxe/parseopt.h>
27 #include <ipxe/reboot.h>
28 
29 FILE_LICENCE ( GPL2_OR_LATER_OR_UBDL );
30 
31 /** @file
32  *
33  * Reboot command
34  *
35  */
36 
37 /** "reboot" options */
39  /** Perform a warm reboot */
40  int warm;
41  /** Reboot to firmware setup */
42  int setup;
43 };
44 
45 /** "reboot" option list */
46 static struct option_descriptor reboot_opts[] = {
47  OPTION_DESC ( "warm", 'w', no_argument,
48  struct reboot_options, warm, parse_flag ),
49  OPTION_DESC ( "setup", 's', no_argument,
50  struct reboot_options, setup, parse_flag ),
51 };
52 
53 /** "reboot" command descriptor */
55  COMMAND_DESC ( struct reboot_options, reboot_opts, 0, 0, NULL );
56 
57 /**
58  * The "reboot" command
59  *
60  * @v argc Argument count
61  * @v argv Argument list
62  * @ret rc Return status code
63  */
64 static int reboot_exec ( int argc, char **argv ) {
65  struct reboot_options opts;
66  int flags = 0;
67  int rc;
68 
69  /* Parse options */
70  if ( ( rc = parse_options ( argc, argv, &reboot_cmd, &opts ) ) != 0 )
71  return rc;
72 
73  /* Reboot system */
74  if ( opts.warm )
75  flags |= REBOOT_WARM;
76  if ( opts.setup )
78  reboot ( flags );
79 
80  return 0;
81 }
82 
83 /** "reboot" command */
static struct option_descriptor reboot_opts[]
"reboot" option list
Definition: reboot_cmd.c:46
struct arbelprm_rc_send_wqe rc
Definition: arbel.h:14
static struct command_descriptor reboot_cmd
"reboot" command descriptor
Definition: reboot_cmd.c:54
#define REBOOT_SETUP
Reboot to firmware setup.
Definition: reboot.h:59
FILE_LICENCE(GPL2_OR_LATER_OR_UBDL)
int parse_options(int argc, char **argv, struct command_descriptor *cmd, void *opts)
Parse command-line options.
Definition: parseopt.c:484
A command descriptor.
Definition: parseopt.h:77
iPXE reboot API
Parse command-line options.
int parse_flag(char *text __unused, int *flag)
Parse flag.
Definition: parseopt.c:226
uint8_t flags
Flags.
Definition: ena.h:18
int warm
Perform a warm reboot.
Definition: reboot_cmd.c:40
Command line option parsing.
#define REBOOT_WARM
Perform a warm reboot.
Definition: reboot.h:58
Option does not take an argument.
Definition: getopt.h:16
"reboot" options
Definition: reboot_cmd.c:38
int setup
Reboot to firmware setup.
Definition: reboot_cmd.c:42
#define OPTION_DESC(_longopt, _shortopt, _has_arg, _struct, _field, _parse)
Construct option descriptor.
Definition: parseopt.h:67
A command-line option descriptor.
Definition: parseopt.h:23
static union @447 opts
"cert<xxx>" option list
#define COMMAND_DESC(_struct, _options, _min_args, _max_args, _usage)
Construct command descriptor.
Definition: parseopt.h:108
COMMAND(reboot, reboot_exec)
"reboot" command
#define NULL
NULL pointer (VOID *)
Definition: Base.h:321
void reboot(int flags)
Reboot system.
static int reboot_exec(int argc, char **argv)
The "reboot" command.
Definition: reboot_cmd.c:64