common: relocate fdt_blob in global_data for FDTSRC_EMBED case
[u-boot.git] / cmd / panic.c
blob7c0affa5eb50e6ad73ff20b9dfa57d52ff86e861
1 // SPDX-License-Identifier: GPL-2.0+
2 /*
3 * Copyright (c) 2020 Theobroma Systems Design und Consulting GmbH
4 */
6 #include <vsprintf.h>
7 #include <command.h>
9 static int do_panic(struct cmd_tbl *cmdtp, int flag, int argc,
10 char * const argv[])
12 char *text = (argc < 2) ? "" : argv[1];
14 panic(text);
16 return CMD_RET_SUCCESS;
19 U_BOOT_CMD(
20 panic, 2, 1, do_panic,
21 "Panic with optional message",
22 "[message]"