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

Releases: pcm720/u-boot-build-scripts

U-Boot v2020.07-1

20 Jul 19:06
fb2b1f3
Compare
Choose a tag to compare

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.

U-Boot v2020.07

07 Jul 21:06
8297195
Compare
Choose a tag to compare

U-Boot v2020.07 images for SD/eMMC and SPI flash.

Writing to SD/eMMC, run as root or via sudo:

# 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), run as root or via sudo:

# flash_erase /dev/mtd0 0 0
# dd if=spiflash.bin of=/dev/mtd0

You can get flash_erase by installing mtd-utils package.