Add qemu 2.4.0
[kvmfornfv.git] / qemu / roms / ipxe / src / hci / commands / reboot_cmd.c
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
20 #include <getopt.h>
21 #include <ipxe/command.h>
22 #include <ipxe/parseopt.h>
23 #include <ipxe/reboot.h>
24
25 FILE_LICENCE ( GPL2_OR_LATER );
26
27 /** @file
28  *
29  * Reboot command
30  *
31  */
32
33 /** "reboot" options */
34 struct reboot_options {
35         /** Perform a warm reboot */
36         int warm;
37 };
38
39 /** "reboot" option list */
40 static struct option_descriptor reboot_opts[] = {
41         OPTION_DESC ( "warm", 'w', no_argument,
42                       struct reboot_options, warm, parse_flag ),
43 };
44
45 /** "reboot" command descriptor */
46 static struct command_descriptor reboot_cmd =
47         COMMAND_DESC ( struct reboot_options, reboot_opts, 0, 0, NULL );
48
49 /**
50  * The "reboot" command
51  *
52  * @v argc              Argument count
53  * @v argv              Argument list
54  * @ret rc              Return status code
55  */
56 static int reboot_exec ( int argc, char **argv ) {
57         struct reboot_options opts;
58         int rc;
59
60         /* Parse options */
61         if ( ( rc = parse_options ( argc, argv, &reboot_cmd, &opts ) ) != 0 )
62                 return rc;
63
64         /* Reboot system */
65         reboot ( opts.warm );
66
67         return 0;
68 }
69
70 /** "reboot" command */
71 struct command reboot_command __command = {
72         .name = "reboot",
73         .exec = reboot_exec,
74 };