upstream u-boot with additional patches for our devices/boards: https://lists.denx.de/pipermail/u-boot/2017-March/282789.html (AXP crashes) ; Gbit ethernet patch for some LIME2 revisions ; with SPI flash support
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
u-boot/examples/standalone/hello_world.c

38 lines
691 B

// SPDX-License-Identifier: GPL-2.0+
22 years ago
/*
* (C) Copyright 2000
* Wolfgang Denk, DENX Software Engineering, wd@denx.de.
*/
#include <common.h>
#include <exports.h>
22 years ago
int hello_world (int argc, char * const argv[])
22 years ago
{
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());
22 years ago
printf ("Hello World\n");
printf ("argc = %d\n", argc);
22 years ago
for (i=0; i<=argc; ++i) {
printf ("argv[%d] = \"%s\"\n",
22 years ago
i,
argv[i] ? argv[i] : "<NULL>");
}
printf ("Hit any key to exit ... ");
while (!tstc())
22 years ago
;
/* consume input */
(void) getc();
22 years ago
printf ("\n\n");
22 years ago
return (0);
}