Hello,
I built Fuchsia using the following commands.
fx set core.x64 --ccache
fx build
Afterwards I created a installer on USB via
markus@pc $: fx mkinstaller -v /dev/sdd
mkinstaller: WARNING: Changing ownership of /dev/sdd to markus
mkinstaller: DEBUG: Skipping image that wasn't built: zircon-r.signed_zbi.signed
mkinstaller: DEBUG: Skipping image that wasn't built: zircon-a.signed_zbi.signed
mkinstaller: INFO: Creating new GPT partition table...
mkinstaller: INFO: Done.
mkinstaller: INFO: Creating and writing partitions...
mkinstaller: INFO: Writing image zedboot.esp.blk to partition zedboot-efi...
mkinstaller: INFO: Wrote 26.2M in 6.28s, 4.2M/s
mkinstaller: INFO: Writing image fuchsia.esp.blk to partition fuchsia.esp...
mkinstaller: INFO: Wrote 1039.5K in 0.05s, 19.1M/s
mkinstaller: INFO: Writing image fuchsia.zbi to partition zircon-a...
mkinstaller: INFO: Wrote 24.6M in 4.32s, 5.7M/s
mkinstaller: INFO: Writing image zedboot.zbi to partition zircon-r...
mkinstaller: INFO: Wrote 23.6M in 7.60s, 3.1M/s
mkinstaller: INFO: Writing image fvm.sparse.blk to partition storage-sparse...
mkinstaller: INFO: Wrote 73.2M in 16.14s, 4.5M/s
mkinstaller: INFO: Done.
mkinstaller: INFO: Ejected USB disk
markus@pc $: sudo sfdisk -l
Disk /dev/sdd: 29.25 GiB, 31406948352 bytes, 61341696 sectors
Disk model: Cruzer Glide
Units: sectors of 1 * 512 = 512 bytes
Sector size (logical/physical): 512 bytes / 512 bytes
I/O size (minimum/optimal): 512 bytes / 512 bytes
Disklabel type: gpt
Disk identifier: 7BD4B71E-3F11-6108-D336-B9440655F95C
Device Start End Sectors Size Type
/dev/sdd1 2048 4095 2048 1M ChromeOS reserved
/dev/sdd2 4096 133119 129024 63M EFI System
/dev/sdd3 133120 135198 2079 1M unknown
/dev/sdd4 135199 185598 50400 24.6M unknown
/dev/sdd5 185599 233995 48397 23.6M unknown
/dev/sdd6 233996 383932 149937 73.2M unknown
When I try to boot the following happens:
Kernel allocation done
PciRoot (0x0)/Pci/(0x1C,0x2)/Pci (0x0,0x0) /MAC (00E04B6B388A,0x1) : Link detected!
macaddr: 00:e0:4b:6b:38:8a
ip6addr: fe80::2e0:4bff:fe6b:388a
snmaddr: ff02::1:ff6b:388a
cmdline: xdc.mmio=0xd0800000 bootloader.default=zedboot bootloader.timeout=1 zircon.nodename=fuchsia-00e0-4b6b-388a
Warning: Cannot find zircon-a partition on bootloader disk
Error: LoadFile: Cannot open file (EFI_NOT_FOUND)
image is too small
zircon.bin is not a valid image
Warning: Cannot find zircon-b partition on bootloader disk
Warning: Cannot find zircon-r partition on bootloader disk
image has invalid bootitem
zedboot.bin is not a valid image
Boot options:
<enter> to continue default boot
b) boot menu
f) fastboot
1) set A slot active and boot (alternate: m)
2) set B slot active and boot
r) one-time boot R slot (alternate: z)
n) network boot
Auto-boot in 1s
Error: Cannot find misc partition on bootloader disk
failed to read A/B/R metadata.
../../src/firmware/lib/abr/flow.c:172: ERROR: Failed to read metadata.
Fail to get slot info
Error: Cannot find misc partition on bootloader disk
failed to read A/B/R metadata.
../../src/firmware/lib/abr/flow.c:172: ERROR: Failed to read metadata.
../../src/firmware/lib/abr/flow.c:246: ERROR: Failed to load metadata, falling back to recovery mode.
Failed to find a kernel in slot 2
Error: no valid kernel was found
Error: failed to boot from disk
Any ideas what I might did wrong? Thank you very much.