blob: 9d487d330a301a60c5d003f2dbfbf17a9887dc76 [file] [log] [blame]
Marin Hannachec0af8c02013-07-13 14:31:15 +02001/*
2 * Copyright (C) 2013 Marin Hannache <ipxe@mareo.fr>.
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 <stdio.h>
21#include <string.h>
22#include <getopt.h>
23#include <ipxe/command.h>
24#include <ipxe/parseopt.h>
25#include <ipxe/reboot.h>
26
27FILE_LICENCE ( GPL2_OR_LATER );
28
29/** @file
30 *
31 * Power off command
32 *
33 */
34
35/** "poweroff" options */
36struct poweroff_options {};
37
38/** "poweroff" option list */
39static struct option_descriptor poweroff_opts[] = {};
40
41/** "poweroff" command descriptor */
42static struct command_descriptor poweroff_cmd =
Michael Brown43eba2f2013-11-07 17:00:51 +000043 COMMAND_DESC ( struct poweroff_options, poweroff_opts, 0, 0, NULL );
Marin Hannachec0af8c02013-07-13 14:31:15 +020044
45/**
46 * The "poweroff" command
47 *
48 * @v argc Argument count
49 * @v argv Argument list
50 * @ret rc Return status code
51 */
52static int poweroff_exec ( int argc, char **argv ) {
53 struct poweroff_options opts;
54 int rc;
55
56 /* Parse options */
57 if ( ( rc = parse_options ( argc, argv, &poweroff_cmd, &opts ) ) != 0 )
58 return rc;
59
60 /* Power off system */
61 rc = poweroff();
62 if ( rc != 0 )
63 printf ( "Could not power off: %s\n", strerror ( rc ) );
64
65 return rc;
66}
67
68/** "poweroff" command */
69struct command poweroff_command __command = {
70 .name = "poweroff",
71 .exec = poweroff_exec,
72};