Difference between revisions of "iMX6 TinyRex Ultra U-Boot"

From Voipac Wiki
Jump to navigation Jump to search
Line 14: Line 14:
  
 
=== U-Boot v2015.04 ===
 
=== U-Boot v2015.04 ===
 +
 +
==== Download & Extract source code ====
 +
<br /><code>
 +
cd ~/workdir/imx6/bootloader/
 +
git clone -b uboot-imx-v2015.04 --single-branch https://github.com/voipac/uboot-imx uboot-imx-v2015.04-rex
 +
cd uboot-imx-v2015.04-rex
 +
</code>

Revision as of 23:18, 25 February 2021

U-boot is a bootloader responsible for hardware initialization, loading and booting linux kernel. It is also used for module flashing.

Build

Set toolchain

Export toolchain variables for every related terminal session.

Initial steps

Create working directory
mkdir -pv ~/workdir/imx6/bootloader/

U-Boot v2015.04

Download & Extract source code


cd ~/workdir/imx6/bootloader/ git clone -b uboot-imx-v2015.04 --single-branch https://github.com/voipac/uboot-imx uboot-imx-v2015.04-rex cd uboot-imx-v2015.04-rex