diff options
author | Tom Rini <trini@konsulko.com> | 2018-03-25 12:00:00 -0400 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2018-03-25 12:00:00 -0400 |
commit | 89a650e0ffb89faaea1b9e6ad8cf2b38203435f2 (patch) | |
tree | 4827f512e3c1e6f2887133bbb9cb3ee9497ba603 /include/command.h | |
parent | 423effc04a195ce6a464eadadfa7f765bf786889 (diff) | |
parent | 8ae3d0b50cd22aebcd87022dc357d1cf0f3a879b (diff) |
Merge tag 'xilinx-for-v2018.05' of git://git.denx.de/u-boot-microblaze
Xilinx changes for v2018.05
- Fix mkimage recognition
- Update all my fragments
ZynqMP:
- Use clk driver
- Support loading elfs in el1
- Various DTS and defconfig changes
- Enable newer pmufw versions
- Support more clocks
- Remove ep108
- Secure image support
- Fix memtest setup
Zynq:
- Enabling watchdog driver
- Support more clocks
- defconfig changes
fpga:
- Simplify error path
net:
- GMII case update
Diffstat (limited to 'include/command.h')
-rw-r--r-- | include/command.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/include/command.h b/include/command.h index 767cabb3df0..56499b8ad5c 100644 --- a/include/command.h +++ b/include/command.h @@ -111,6 +111,8 @@ extern int common_diskboot(cmd_tbl_t *cmdtp, const char *intf, int argc, extern int do_reset(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[]); extern int do_poweroff(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[]); +extern unsigned long do_go_exec(ulong (*entry)(int, char * const []), int argc, + char * const argv[]); /* * Error codes that commands return to cmd_process(). We use the standard 0 * and 1 for success and failure, but add one more case - failure with a |