]> Git Repo - J-u-boot.git/blame - cmd/panic.c
sunxi: h616: add Tanix TX1 support
[J-u-boot.git] / cmd / panic.c
CommitLineData
85ecfd1a
HS
1// SPDX-License-Identifier: GPL-2.0+
2/*
3 * Copyright (c) 2020 Theobroma Systems Design und Consulting GmbH
4 */
5
03de305e 6#include <vsprintf.h>
85ecfd1a
HS
7#include <command.h>
8
9static int do_panic(struct cmd_tbl *cmdtp, int flag, int argc,
10 char * const argv[])
11{
12 char *text = (argc < 2) ? "" : argv[1];
13
14 panic(text);
15
16 return CMD_RET_SUCCESS;
17}
18
19U_BOOT_CMD(
20 panic, 2, 1, do_panic,
21 "Panic with optional message",
22 "[message]"
23);
This page took 0.125026 seconds and 4 git commands to generate.