1
0
mirror of https://xff.cz/git/u-boot/ synced 2025-09-04 02:02:08 +02:00
Files
u-boot-megous/common/cmd_sunxi_shutdown.c
Ondrej Jirman ba8c26ce40 initial
2019-03-04 15:37:41 +01:00

20 lines
358 B
C

/*
* Command for accessing DataFlash.
*
* Copyright (C) 2008 Atmel Corporation
*/
#include <common.h>
extern int sunxi_board_shutdown(void);
int do_shutdown(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
{
return sunxi_board_shutdown();
}
U_BOOT_CMD(
shutdown, 2, 1, do_shutdown,
"shutdown the system",
"power off the power supply"
);