uboot-mediatek: unifi6lr: mtd erase before write to flash
authorChen Minqiang <ptpt52@gmail.com>
Tue, 27 Apr 2021 03:54:34 +0000 (11:54 +0800)
committerDaniel Golle <daniel@makrotopia.org>
Wed, 28 Apr 2021 19:54:43 +0000 (20:54 +0100)
Erase firmware ereas before writing to recovery or production partition
when updating them via the bootloader menu.

Signed-off-by: Chen Minqiang <ptpt52@gmail.com>
Signed-off-by: Daniel Golle <daniel@makrotopia.org>
package/boot/uboot-mediatek/patches/412-add-ubnt-unifi-6-lr.patch

index 17f0b29f84476fe7a85c5d9bff893de44244d3b4..1af0da13c59d0305a728612ff1c1a02de932bbac 100644 (file)
 +reset_factory=mtd erase nor0 0xc0000 0x10000 && reset
 +nor_read_production=mtd read nor0 $loadaddr 0x1000000 0x1000 && imsz $loadaddr image_size && mtd read nor0 $loadaddr 0x1000000 $image_size
 +nor_read_recovery=mtd read nor0 $loadaddr 0x120000 0x1000 && imsz $loadaddr image_size && mtd read nor0 $loadaddr 0x120000 $image_size
-+nor_write_production=mtd write nor0 $loadaddr 0x1000000 $filesize
-+nor_write_recovery=mtd write nor0 $loadaddr 0x120000 $filesize
++nor_write_production=mtd erase nor0 0x1000000 $filesize && mtd write nor0 $loadaddr 0x1000000 $filesize
++nor_write_recovery=mtd erase nor0 0x120000 0xee0000 && mtd write nor0 $loadaddr 0x120000 $filesize
 +_init_env=setenv _init_env ; saveenv
 +_firstboot=setenv _firstboot ; run _switch_to_menu ; run ethaddr_factory ; run _init_env ; run boot_first
 +_switch_to_menu=setenv _switch_to_menu ; setenv bootdelay 3 ; setenv bootmenu_delay 3 ; setenv bootmenu_0 $bootmenu_0d ; setenv bootmenu_0d ; run _bootmenu_update_title