key log:
Preparing to upload /home/gyx/work/fuchsia/source/fuchsia/out/default/firmware.img
Uploading... Done [0.08s]
Partitioning bootloader... Done [0.16s]
Rebooting to bootloader... Done [4.69s]
Preparing to stage /home/gyx/.ssh/fuchsia_authorized_keys
Uploading... Done [0.00s]
Sending command "add-staged-bootloader-file ssh.authorized_keys"
Preparing to upload /home/gyx/work/fuchsia/source/fuchsia/out/default/fuchsia.zbi
Uploading... large file, please wait... Done [1.42s]
Partitioning zircon_a... Failed to flash "zircon_a": galileitoo large for partition
so I need modify some partition`s size from uboot.
and modify some code as fellow:
--- a/include/emmc_partitions.h
+++ b/include/emmc_partitions.h
-#define MMC_ZIRCON_A_SIZE (24*SZ_1M)
+#define MMC_ZIRCON_A_SIZE (32*SZ_1M)
-#define MMC_ZIRCON_B_SIZE (24*SZ_1M)
+#define MMC_ZIRCON_B_SIZE (32*SZ_1M)
-#define MMC_ZIRCON_R_SIZE (24*SZ_1M)
+#define MMC_ZIRCON_R_SIZE (32*SZ_1M)
But we found this uboot code too old.There is no vbmate_a vbmate_b... partitions
so.what can i do about this