Changes between Version 5 and Version 6 of CSPFL_U-Boot
- Timestamp:
- 11/06/09 12:03:32 (2 weeks ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
CSPFL_U-Boot
v5 v6 3 3 ---- 4 4 = 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.''' 5 The 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 == 8 Run the following command to check out the oswald-u-boot git repository: 9 10 {{{ 11 #!sh 12 git clone git://code.oregonstate.edu/oswald-u-boot 13 }}} 8 14 9 15 == Build Process == 10 Once we have setup x-loader, enter the u-boot directory and run the following commands: 16 To configure u-boot for the OSWALD, enter the oswald-u-boot directory and run the following command: 17 11 18 {{{ 12 19 #!sh 13 make omap3_oswald_config 14 CROSS_COMPILE=arm-linux- make 20 CROSS_COMPILE=arm-radix-linux-gnueabi- make omap3_oswald_config 15 21 }}} 22 23 This 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 25 To cross-compile u-boot for the OSWALD using the following command: 26 27 {{{ 28 #!sh 29 CROSS_COMPILE=arm-radix-linux-gnueabi- make 30 }}} 31 32 If the compile process completed successfully the outputted u-boot.bin file should be able to be used as the bootloader for the OSWALD.
