Skip to content
This repository has been archived by the owner on Mar 29, 2021. It is now read-only.

U-Boot v2020.07-1

Latest
Compare
Choose a tag to compare
@pcm720 pcm720 released this 20 Jul 19:06
fb2b1f3

U-Boot v2020.07 images for SD/eMMC and SPI flash.
This release incorporates the following patches:

  • panel reset patch by Arnaud Patard that fixes issue with display panel working incorrectly after warm reset
  • reduced boot delay
  • fix for unstable NVMe initialization with some drives (Intel 660p in particular).

Huge thanks to mamboman777 from Pine64 forums for testing!

Writing to SD/eMMC:
# dd if=idbloader.img of=/dev/<mmc> seek=64 conv=notrunc
# dd if=u-boot.itb of=/dev/<mmc> seek=16384 conv=notrunc

Writing to SPI Flash (Manjaro):
# flash_erase /dev/mtd0 0 0
# dd if=spiflash.bin of=/dev/mtd0

If dd doesn't work for you (see #2), try nandwrite:
# nandwrite -p /dev/mtd0 spiflash.bin

You can get flash_erase and nandwrite by installing mtd-utils package of your distro.