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
29FILE_LICENCE ( GPL2_OR_LATER_OR_UBDL );
30FILE_SECBOOT ( PERMITTED );
31
32/** @file
33 *
34 * Reboot command
35 *
36 */
37
38/** "reboot" options */
40 /** Perform a warm reboot */
41 int warm;
42 /** Reboot to firmware setup */
43 int setup;
44};
45
46/** "reboot" option list */
47static struct option_descriptor reboot_opts[] = {
48 OPTION_DESC ( "warm", 'w', no_argument,
49 struct reboot_options, warm, parse_flag ),
50 OPTION_DESC ( "setup", 's', no_argument,
51 struct reboot_options, setup, parse_flag ),
52};
53
54/** "reboot" command descriptor */
57
58/**
59 * The "reboot" command
60 *
61 * @v argc Argument count
62 * @v argv Argument list
63 * @ret rc Return status code
64 */
65static int reboot_exec ( int argc, char **argv ) {
66 struct reboot_options opts;
67 int flags = 0;
68 int rc;
69
70 /* Parse options */
71 if ( ( rc = parse_options ( argc, argv, &reboot_cmd, &opts ) ) != 0 )
72 return rc;
73
74 /* Reboot system */
75 if ( opts.warm )
77 if ( opts.setup )
79 reboot ( flags );
80
81 return 0;
82}
83
84/** "reboot" command */
#define NULL
NULL pointer (VOID *)
Definition Base.h:322
struct arbelprm_rc_send_wqe rc
Definition arbel.h:3
static union @024010030001061367220137227263210031030210157031 opts
"cert<xxx>" option list
#define COMMAND(name, exec)
Definition command.h:27
uint8_t flags
Flags.
Definition ena.h:7
Parse command-line options.
@ no_argument
Option does not take an argument.
Definition getopt.h:17
#define FILE_LICENCE(_licence)
Declare a particular licence as applying to a file.
Definition compiler.h:896
#define FILE_SECBOOT(_status)
Declare a file's UEFI Secure Boot permission status.
Definition compiler.h:926
iPXE reboot API
#define REBOOT_SETUP
Reboot to firmware setup.
Definition reboot.h:60
void reboot(int flags)
Reboot system.
#define REBOOT_WARM
Perform a warm reboot.
Definition reboot.h:59
int parse_flag(char *text __unused, int *flag)
Parse flag.
Definition parseopt.c:227
int parse_options(int argc, char **argv, struct command_descriptor *cmd, void *opts)
Parse command-line options.
Definition parseopt.c:485
Command line option parsing.
#define COMMAND_DESC(_struct, _options, _min_args, _max_args, _usage)
Construct command descriptor.
Definition parseopt.h:109
#define OPTION_DESC(_longopt, _shortopt, _has_arg, _struct, _field, _parse)
Construct option descriptor.
Definition parseopt.h:68
static int reboot_exec(int argc, char **argv)
The "reboot" command.
Definition reboot_cmd.c:65
static struct option_descriptor reboot_opts[]
"reboot" option list
Definition reboot_cmd.c:47
static struct command_descriptor reboot_cmd
"reboot" command descriptor
Definition reboot_cmd.c:55
A command descriptor.
Definition parseopt.h:78
A command-line option descriptor.
Definition parseopt.h:24
"reboot" options
Definition reboot_cmd.c:39
int setup
Reboot to firmware setup.
Definition reboot_cmd.c:43
int warm
Perform a warm reboot.
Definition reboot_cmd.c:41