Skip to main content

exec

Call and execute a function at the given memory address.

Usage

xfel exec <address>

Arguments

ArgumentDescription
<address>Memory address of the code to execute

Description

Makes the CPU jump to the given address and start executing. It is typically combined with write to first load firmware into memory, then launch it with exec.

Example

Load and execute U-Boot:

xfel write 0x81700000 u-boot.bin
xfel exec 0x81700000