Difference between revisions of "U-Boot Mainline Series"

From IGEP - ISEE Wiki

Jump to: navigation, search
m
m
 
(No difference)

Latest revision as of 10:03, 5 June 2015

Download the source from the git repository:

git clone git://git.denx.de/u-boot.git
cd u-boot

Configure for your board with

$ make CROSS_COMPILE=[cross compiler] [board-config]

where [board-config] should be:

  • igep0020_config for IGEP v2 (OneNAND memory)
  • igep0020_nand_config for IGEP v2 (NAND memory)
  • igep0030_config for IGEP COM MODULE (OneNAND memory)
  • igep0030_nand_config for IGEP COM MODULE (NAND memory)
  • am335x_igep0033_config for IGEP COM AQUILA

Finally, build with

$ make CROSS_COMPILE=[cross compiler]

The results will be a MLO file and a u-boot.img file in the u-boot directory.