aboutsummaryrefslogtreecommitdiffstats
path: root/pkg
diff options
context:
space:
mode:
authorglpesk <114444708+glpesk@users.noreply.github.com>2025-11-19 15:10:54 -0800
committerAleksandr Nogikh <nogikh@google.com>2025-11-20 09:24:47 +0000
commit2cc4c24ac3c9f96891da39b75cc806a6696b3a12 (patch)
tree0809cef982763763fe58ea85dfa446ee56a74f57 /pkg
parent5c74d2f73618084fe35322dbb04bf713f7d177f2 (diff)
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.
Diffstat (limited to 'pkg')
-rw-r--r--pkg/build/starnix.go2
1 files changed, 1 insertions, 1 deletions
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