Changes between Version 5 and Version 6 of CSPFL_U-Boot

Show
Ignore:
Author:
hardert (IP: 67.169.210.177)
Timestamp:
11/06/09 12:03:32 (2 weeks ago)
Comment:

Add more instructions

Legend:

Unmodified
Added
Removed
Modified
  • CSPFL_U-Boot

    v5 v6  
    33---- 
    44= U-Boot = 
    5 '''The U-Boot source is no longer maintained on beaversource, instead look here: [https://code.oregonstate.edu/git/oswald-u-boot/]''' 
    6 [[BR]] [[BR]] 
    7 '''This page is dedicated to provide information on how to work with U-Boot.''' 
     5The U-Boot source is maintained is the oswald-u-boot git repository found at [https://code.oregonstate.edu/git/oswald-u-boot]. 
     6 
     7== Check out the source code == 
     8Run the following command to check out the oswald-u-boot git repository: 
     9 
     10{{{ 
     11#!sh 
     12git clone git://code.oregonstate.edu/oswald-u-boot 
     13}}} 
    814 
    915== Build Process == 
    10 Once we have setup x-loader, enter the u-boot directory and run the following commands: 
     16To configure u-boot for the OSWALD, enter the oswald-u-boot directory and run the following command: 
     17 
    1118{{{ 
    1219#!sh 
    13 make omap3_oswald_config 
    14 CROSS_COMPILE=arm-linux- make 
     20CROSS_COMPILE=arm-radix-linux-gnueabi- make omap3_oswald_config 
    1521}}} 
     22 
     23This assumes you are using the cross-compile toolchain provided with the SDK otherwise you should change the CROSS_COMPILE variable to the CTARGET of your cross-compile toolchain. 
     24 
     25To cross-compile u-boot for the OSWALD using the following command: 
     26 
     27{{{ 
     28#!sh 
     29CROSS_COMPILE=arm-radix-linux-gnueabi- make 
     30}}} 
     31 
     32If the compile process completed successfully the outputted u-boot.bin file should be able to be used as the bootloader for the OSWALD.