From 2cc4c24ac3c9f96891da39b75cc806a6696b3a12 Mon Sep 17 00:00:00 2001 From: glpesk <114444708+glpesk@users.noreply.github.com> Date: Wed, 19 Nov 2025 15:10:54 -0800 Subject: pkg/build: update fuchsia image type in starnix build script Fuchsia product bundles have switched to including only sparse fxfs images, and the --image-type flag value that we were previously passing to ffx product get-image-path is now obsolete. Replaced with the name of the new option referring to the sparse image. --- pkg/build/starnix.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/build/starnix.go b/pkg/build/starnix.go index ce1db29fb..a53776c2a 100644 --- a/pkg/build/starnix.go +++ b/pkg/build/starnix.go @@ -107,7 +107,7 @@ func (st starnix) build(params Params) (ImageDetails, error) { "-c", "log.enabled=false,ffx.analytics.disabled=true,daemon.autostart=false", "product", "get-image-path", productBundlePath, "--slot", "a", - "--image-type", "fxfs", + "--image-type", "fxfs.fastboot", ) if err != nil { return ImageDetails{}, err -- cgit mrf-deployment