Difference between revisions of "U-Boot 2015.04.y"

From IGEP - ISEE Wiki

Jump to: navigation, search
(Created page with '= Build u-boot from sources = '''Download''' from [http://git.isee.biz/ ISEE GIT Repository] git clone git://git.isee.biz/pub/scm/u-boot-fslc.git cd u-boot-fslc/ git checkou…')
 
m (Build u-boot from sources)
 
(6 intermediate revisions by one other user not shown)
Line 4: Line 4:
 
  git clone git://git.isee.biz/pub/scm/u-boot-fslc.git
 
  git clone git://git.isee.biz/pub/scm/u-boot-fslc.git
 
  cd u-boot-fslc/
 
  cd u-boot-fslc/
  git checkout origin/isee-imx-patches-2015.04 -b u-boot-2015.04.y.local
+
  git checkout remotes/origin/isee-imx-patches-2015.04-next -b isee-imx-patches-2015.04-next.local
  
 
Also, it could download from GIT Repositories ([http://git.isee.biz/ http://git.isee.biz/]) and test the last unstable version at your own risk (see "''U-Boot Mainline Series''" chapter in [[The bootloader U-Boot]])<br>  
 
Also, it could download from GIT Repositories ([http://git.isee.biz/ http://git.isee.biz/]) and test the last unstable version at your own risk (see "''U-Boot Mainline Series''" chapter in [[The bootloader U-Boot]])<br>  
<br>
+
'''Configure''' U-Boot for IGEP SMARC iMX6 device.(select quad -> imx6q or dual lite -> imx6dl)
+
'''Configure''' U-Boot for IGEP SMARC iMX6 device.(select quad -> imx6q or dual lite -> imx6dl or solo -> imx6s)
  
 
+
  <pre>make CROSS_COMPILE=[your cross compiler] mx6q_igep0046_defconfig
  make CROSS_COMPILE=[your cross compiler] mx6qarm2_defconfig
 
 
or  
 
or  
make CROSS_COMPILE=[your cross compiler] mx6dlarm2_defconfig
+
make CROSS_COMPILE=[your cross compiler] mx6dl_igep0046_defconfig
 +
or
 +
make CROSS_COMPILE=[your cross compiler] mx6s_igep0046_defconfig</pre>
  
Then '''build''' the SPL and the u-boot image. The result will be an ''MLO'' file and an ''u-boot.img'' file in current directory. Execute:  
+
Then '''build''' u-boot.imx image file in current directory. Execute:  
  
 
  make CROSS_COMPILE=[your cross compiler]
 
  make CROSS_COMPILE=[your cross compiler]

Latest revision as of 12:41, 29 May 2017

Build u-boot from sources

Download from ISEE GIT Repository

git clone git://git.isee.biz/pub/scm/u-boot-fslc.git
cd u-boot-fslc/
git checkout remotes/origin/isee-imx-patches-2015.04-next -b isee-imx-patches-2015.04-next.local

Also, it could download from GIT Repositories (http://git.isee.biz/) and test the last unstable version at your own risk (see "U-Boot Mainline Series" chapter in The bootloader U-Boot)

Configure U-Boot for IGEP SMARC iMX6 device.(select quad -> imx6q or dual lite -> imx6dl or solo -> imx6s)

make CROSS_COMPILE=[your cross compiler] mx6q_igep0046_defconfig
or 
make CROSS_COMPILE=[your cross compiler] mx6dl_igep0046_defconfig
or
make CROSS_COMPILE=[your cross compiler] mx6s_igep0046_defconfig

Then build u-boot.imx image file in current directory. Execute:

make CROSS_COMPILE=[your cross compiler]