Difference between revisions of "U-boot PVT Notes"
(→Building) |
|||
Line 1: | Line 1: | ||
− | =Building= | + | ==Building== |
− | git clone | + | git clone https://github.com/xobs/u-boot-novena.git |
− | + | cd u-boot-novena | |
− | cd u-boot- | ||
make novena_config # sets up u-boot for novena configuration | make novena_config # sets up u-boot for novena configuration | ||
make | make | ||
+ | |||
+ | Note: If you edit include/configs/novena.h, you should run "make novena_config" again. | ||
=Deploying= | =Deploying= |
Revision as of 02:49, 2 April 2015
Building
git clone https://github.com/xobs/u-boot-novena.git cd u-boot-novena make novena_config # sets up u-boot for novena configuration make
Note: If you edit include/configs/novena.h, you should run "make novena_config" again.
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.