Difference between revisions of "U-Boot 2009.11-y series"

From IGEP - ISEE Wiki

Jump to: navigation, search
(Created page with 'Download the IGEP U-Boot sources and follow next steps: $ git clone git://git.isee.biz/pub/scm/u-boot-arm.git $ cd u-boot-arm $ git checkout v2009.11-2 -b v2009.11-2.local C…')
 
 
Line 22: Line 22:
 
''' CHANGELOG '''
 
''' CHANGELOG '''
  
* [http://git.igep.es/?p=pub/scm/u-boot-arm.git;a=commit;h=10f386973ff68d604323b1e7787a0f3bd3b3c381 2010-06-15 Release 2009.11-2]
+
* [http://git.isee.biz/?p=pub/scm/u-boot-arm.git;a=commit;h=10f386973ff68d604323b1e7787a0f3bd3b3c381 2010-06-15 Release 2009.11-2]
 
** improve SMSC LAN9221 throughput
 
** improve SMSC LAN9221 throughput
 
** add support for OMAP3 IGEP module (igep0030)
 
** add support for OMAP3 IGEP module (igep0030)

Latest revision as of 13:42, 1 July 2015

Download the IGEP U-Boot sources and follow next steps:

$ git clone git://git.isee.biz/pub/scm/u-boot-arm.git
$ cd u-boot-arm
$ git checkout v2009.11-2 -b v2009.11-2.local

Configure for your board with,

$ make CROSS_COMPILE=arm-none-linux-gnueabi- <board-config>

where:

  • <board-config> is omap3_igep0020_config for IGEP v2 platform.
  • <board-config> is omap3_igep0030_config for OMAP3 IGEP module.

Finally, build with

$ make CROSS_COMPILE=arm-none-linux-gnueabi- 

The result will be an u-boot.bin file in local directory.

CHANGELOG