X-Git-Url: https://git.karo-electronics.de/?a=blobdiff_plain;f=doc%2Fhtml%2Fref%2Fgo-command.html;fp=doc%2Fhtml%2Fref%2Fgo-command.html;h=4191cb7b18b921af08f0dffe55ba5f6df7e9737d;hb=2b5bec7716c03d42cfb16d8c98c9cea573bf6722;hp=0000000000000000000000000000000000000000;hpb=47412fc4bd1aefc0d5498bcb3860a9d727196f16;p=karo-tx-redboot.git diff --git a/doc/html/ref/go-command.html b/doc/html/ref/go-command.html new file mode 100644 index 00000000..4191cb7b --- /dev/null +++ b/doc/html/ref/go-command.html @@ -0,0 +1,371 @@ + + + + + + + + +go +
eCos Reference Manual
PrevNext

go

Name

go -- Execute a program

Synopsis

go [-w timeout] [ start_address]

Arguments

NameTypeDescriptionDefault
-w timeoutNumberHow long to wait before starting execution.0
start_addressNumberAddress in memory to begin execution.Value set by last load or fis load command.

Description

The go command causes RedBoot to give control of the target platform to +another program. This program must execute stand alone, e.g. an eCos +application or a Linux kernel. +

If the -w option is used, RedBoot will print a message and then +wait for a period of time before starting the execution. This is +most useful in a script, giving the user a chance to abort executing +a program and move on in the script. +

Examples

Execute a program - no explicit output from RedBoot. +
RedBoot> go 0x40040
+

Execute a program with a timeout. +
RedBoot> go -w 10
+About to start execution at 0x00000000 - abort with ^C within 10 seconds
+^C
+RedBoot>
+Note that the starting address was implied (0x00000000 in this example). +The user is prompted that execution will commence in 10 seconds. At +anytime within that 10 seconds the user may type Ctrl+C +on the console and RedBoot will abort execution and return for the next +command, either from a script or the console. +


PrevHomeNext
Executing Programs from RedBootUpexec
\ No newline at end of file