Skip to content

Commit

Permalink
ARM: uniphier: increase the firmware size in update command environment
Browse files Browse the repository at this point in the history
If a bigger EL32 is used, fip.bin can be larger than the currently
assumed boot firmware size.  Adjust the update commands.

Signed-off-by: Masahiro Yamada <[email protected]>
  • Loading branch information
masahir0y committed Mar 15, 2018
1 parent 706f077 commit 34be347
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions include/configs/uniphier.h
Original file line number Diff line number Diff line change
Expand Up @@ -192,17 +192,17 @@
"tftpboot $second_image && " \
"mmc write $loadaddr 0 100 && " \
"tftpboot $third_image && " \
"mmc write $loadaddr 100 700\0" \
"mmc write $loadaddr 100 f00\0" \
"nandupdate=nand erase 0 0x00100000 &&" \
"tftpboot $second_image && " \
"nand write $loadaddr 0 0x00020000 && " \
"tftpboot $third_image && " \
"nand write $loadaddr 0x00020000 0x000e0000\0" \
"nand write $loadaddr 0x00020000 0x001e0000\0" \
"usbupdate=usb start &&" \
"tftpboot $second_image && " \
"usb write $loadaddr 0 100 && " \
"tftpboot $third_image && " \
"usb write $loadaddr 100 700\0" \
"usb write $loadaddr 100 f00\0" \
BOOT_IMAGES \
LINUXBOOT_ENV_SETTINGS

Expand Down

0 comments on commit 34be347

Please sign in to comment.