Reinstall an uboot on a T2080

cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 

Reinstall an uboot on a T2080

149 Views
carl3
Contributor I

Hi,

I am actually working on a T2080 with one of our boot, and i would like to remove it and set an uboot on it. I would like to know if there is an existing process to do this.

Also, maybe you know where i can find the exact version of my uboot (U-Boot 2016.012.0) ?

Thanks a lot !

0 Kudos
Reply
1 Reply

127 Views
yipingwang
NXP TechSupport
NXP TechSupport

Program u-boot to the alternate bank

=>tftp 1000000 u-boot.bin
=>protect off 0xebf40000 +$filesize
=>erase 0xebf40000 +$filesize
=>cp.b 1000000 0xebf40000 $filesize
=>protect on 0xebf40000 +$filesize
=>cpld reset altbank

Program u-boot to the current bank

=>tftp 1000000 u-boot.bin
=>protect off 0xeff40000 +$filesize
=>erase 0xeff40000 +$filesize
=>cp.b 1000000 0xeff40000 $filesize
=>protect on 0xeff40000 +$filesize
=>cpld reset altbank

NXP provide the latest Linux SDK for T2080 processor is QorIQ SDK 2.0 1703 release, you could download ISOs from the following link.

https://www.nxp.com/design/design-center/software/embedded-software/linux-software-and-development-t...

0 Kudos
Reply