We're no longer updating This wiki!!

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revision Previous revision
Next revision
Previous revision
en:c2_building_u-boot [2016/10/12 10:44]
joy.cho [How to build u-boot with bl301 firmware]
en:c2_building_u-boot [2017/07/25 15:15] (current)
joy.cho [Installation to blank card]
Line 1: Line 1:
 ====== U-boot ====== ====== U-boot ======
  
-U-boot must be cross-compiled on an x86 box+U-boot must be cross-compiled on an x86 Linux PC.
  
 ===== Toolchain ===== ===== Toolchain =====
 Click one of the site to download toolchain to build U-boot. Click one of the site to download toolchain to build U-boot.
-  * [[https://​releases.linaro.org/​14.09/​components/​toolchain/​binaries/​gcc-linaro-aarch64-none-elf-4.9-2014.09_linux.tar.xz|Download #1]]+  * [[https://​releases.linaro.org/archive/​14.09/​components/​toolchain/​binaries/​gcc-linaro-aarch64-none-elf-4.9-2014.09_linux.tar.xz|Download #1]]
   * [[http://​dn.odroid.com/​toolchains/​gcc-linaro-aarch64-none-elf-4.9-2014.09_linux.tar.xz|Download #2]]   * [[http://​dn.odroid.com/​toolchains/​gcc-linaro-aarch64-none-elf-4.9-2014.09_linux.tar.xz|Download #2]]
 Once the download is done, extract the tarball to **/​opt/​toolchains/​**. Once the download is done, extract the tarball to **/​opt/​toolchains/​**.
Line 69: Line 69:
  
 Click the following site to download the boot loader of final release version Click the following site to download the boot loader of final release version
-  * [[http://​dn.odroid.com/​S905/​BootLoader/​ODROID-C2/​c2_boot_ubuntu_release.tar.gz|Download - Ubuntu ​16.04 release v2.0 update ​Sep 08 2016]] +  * [[http://​dn.odroid.com/​S905/​BootLoader/​ODROID-C2/​c2_boot_release_ubuntu.tar.gz|Download - Ubuntu ​(update ​Feb 27, 2017)]] 
-  * [[http://​dn.odroid.com/​S905/​BootLoader/​ODROID-C2/​c2_boot_android_release.tar.gz|Download - Android ​5.1.1 release v2.2]]+  * [[http://​dn.odroid.com/​S905/​BootLoader/​ODROID-C2/​c2_boot_release_android.tar.gz|Download - Android ​(update Jun 06, 2017)]]
  
 <​code>​ <​code>​
Line 164: Line 164:
 ===== How to build u-boot with bl301 firmware ===== ===== How to build u-boot with bl301 firmware =====
  
-[ Under Construction :) ]+Because of the issue of build failure on any platform other than x86-64 and support of buildroot, we've separated bl301 firmware source code from u-boot repository.
  
-=== Download ​and Build Guide ===+In the path, u-boot/​fip/​gxb/,​ there is a pre-built bl301.bin binary of the latest version, so you can build just u-boot without a re-build bl301 process. 
 + 
 +If you want to modify and update bl301-related source codes by yourself, please refer to the following. 
 + 
 +=== Checkout ​and Merge ===
  
 You can checkout **bl301 firmware** source tree from **[[https://​github.com/​hardkernel/​u-boot_firmware/​tree/​odroidc2-bl301|Hardkernel'​s Github]]**. You can checkout **bl301 firmware** source tree from **[[https://​github.com/​hardkernel/​u-boot_firmware/​tree/​odroidc2-bl301|Hardkernel'​s Github]]**.
Line 172: Line 176:
 $ git clone https://​github.com/​hardkernel/​u-boot_firmware.git -b odroidc2-bl301 $ git clone https://​github.com/​hardkernel/​u-boot_firmware.git -b odroidc2-bl301
 </​code>​ </​code>​
 +You should merge bl301 with u-boot before build it.
 +<​code>​
 +$ git clone https://​github.com/​hardkernel/​u-boot.git -b odroidc2-v2015.01
 +$ git clone https://​github.com/​hardkernel/​u-boot_firmware.git -b odroidc2-bl301
  
 +$ cd u-boot
  
 +$ git remote add u-boot_firmware ../​u-boot_firmware/​
 +$ git fetch u-boot_firmware ​
 +$ git merge --no-commit u-boot_firmware/​odroidc2-bl301 ​
 +</​code>​
  
-=== Toolchain ​to build bl301 ===+=== Toolchain ​for bl301 ===
  
 bl301.bin source code needs a toolchain, arm-none-eabi-. bl301.bin source code needs a toolchain, arm-none-eabi-.
Line 204: Line 217:
 gcc version 4.8.3 20140401 (prerelease) (crosstool-NG linaro-1.13.1-4.8-2014.04 - Linaro GCC 4.8-2014.04) ​ gcc version 4.8.3 20140401 (prerelease) (crosstool-NG linaro-1.13.1-4.8-2014.04 - Linaro GCC 4.8-2014.04) ​
 </​code>​ </​code>​
 +
 +=== Build ===
 +And finally you can compile u-boot with bl301 firmware.
 +<​code>​
 +$ cd u-boot
 +$ make distclean
 +$ make odroidc2_config
 +$ make
 +</​code>​
 +
 +===== How to check U-Boot version on User Space =====
 +You can check the U-Boot version using **dd** command as following.
 +
 +=== Ubuntu ===
 +<​code>​
 +root@odroid64:/​home/​odroid#​ vi getUbootVer.sh
 +
 +#!/bin/sh
 +dd if=/​dev/​mmcblk0 of=/​tmp/​temp.bin bs=512 skip=97 count=1334 status=none
 +grep -a -r -E -o "​.{0,​0}U-Boot 2015.01.{0,​50}"​ /​tmp/​temp.bin | grep -a "​("​
 +rm /​tmp/​temp.bin
 +
 +root@odroid64:/​home/​odroid#​ chmod a+x getUbootVer.sh ​
 +
 +root@odroid64:/​home/​odroid#​ ./​getUbootVer.sh
 +    U-Boot 2015.01-00167-g095fdbe-dirty (Nov 12 2016 - 16:35:32)
 +</​code>​
 +
 +=== Android ===
 +<​code>​
 +shell@odroidc2:/​ $ su
 +root@odroidc2:/​ # mount -o rw,remount /
 +root@odroidc2:/​ # vi getUbootVer.sh
 +
 +#!/bin/sh
 +dd if=/​dev/​block/​mmcblk0 of=/​temp.bin bs=512 skip=97 count=1334
 +grep -a -r -E -o "​.{0,​0}U-Boot 2015.01.{0,​50}"​ /temp.bin | grep -a "​("​
 +rm /temp.bin
 +
 +root@odroidc2:/​ # chmod 755 /​getUbootVer.sh
 +
 +root@odroidc2:/​ # /​getUbootVer.sh ​                                             ​
 +1334+0 records in
 +1334+0 records out
 +683008 bytes transferred in 0.014 secs (48786285 bytes/sec)
 +/​temp.bin:​U-Boot 2015.01-dirty (Jul 06 2017 - 07:47:27)
 +</​code>​
 +
en/c2_building_u-boot.1476238496.txt.gz · Last modified: 2016/10/12 10:44 by joy.cho
CC Attribution-Share Alike 3.0 Unported
Driven by DokuWiki Recent changes RSS feed Valid CSS Valid XHTML 1.0