mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-06 05:04:26 +00:00
1a4596601f
Signed-off-by: Wolfgang Denk <wd@denx.de> [trini: Fixup common/cmd_io.c] Signed-off-by: Tom Rini <trini@ti.com>
38 lines
694 B
C
38 lines
694 B
C
/*
|
|
* (C) Copyright 2000
|
|
* Wolfgang Denk, DENX Software Engineering, wd@denx.de.
|
|
*
|
|
* SPDX-License-Identifier: GPL-2.0+
|
|
*/
|
|
|
|
#include <common.h>
|
|
#include <exports.h>
|
|
|
|
int hello_world (int argc, char * const argv[])
|
|
{
|
|
int i;
|
|
|
|
/* Print the ABI version */
|
|
app_startup(argv);
|
|
printf ("Example expects ABI version %d\n", XF_VERSION);
|
|
printf ("Actual U-Boot ABI version %d\n", (int)get_version());
|
|
|
|
printf ("Hello World\n");
|
|
|
|
printf ("argc = %d\n", argc);
|
|
|
|
for (i=0; i<=argc; ++i) {
|
|
printf ("argv[%d] = \"%s\"\n",
|
|
i,
|
|
argv[i] ? argv[i] : "<NULL>");
|
|
}
|
|
|
|
printf ("Hit any key to exit ... ");
|
|
while (!tstc())
|
|
;
|
|
/* consume input */
|
|
(void) getc();
|
|
|
|
printf ("\n\n");
|
|
return (0);
|
|
}
|