Difference between revisions of "U-boot PVT Notes"

From Studio Kousagi Wiki
Jump to: navigation, search
(Created page with "=Building= The source code for u-boot")
 
Line 1: Line 1:
 
=Building=
 
=Building=
The source code for u-boot
+
  git clone git://github.com/sutajiokousagi/u-boot-imx6.git
 +
  # make sure you have installed the local tooclhain and sourced the environment file (see below)
 +
  cd u-boot-imx6
 +
  make novena_config  # sets up u-boot for novena configuration
 +
  make
 +
 
 +
=Deploying=
 +
To copy u-boot onto the boot media, you need to use a linux machine with dd:
 +
sudo dd if=u-boot.imx of=/dev/sdX seek=2
 +
 
 +
Replace /dev/sdX with the drive node of your SD card. seek=2 locates u-boot in the expected location for loading.

Revision as of 17:35, 27 March 2014

Building

 git clone git://github.com/sutajiokousagi/u-boot-imx6.git
 # make sure you have installed the local tooclhain and sourced the environment file (see below)
 cd u-boot-imx6
 make novena_config   # sets up u-boot for novena configuration
 make

Deploying

To copy u-boot onto the boot media, you need to use a linux machine with dd:

sudo dd if=u-boot.imx of=/dev/sdX seek=2

Replace /dev/sdX with the drive node of your SD card. seek=2 locates u-boot in the expected location for loading.