Skip to content

Commit 1470d5d

Browse files
authored
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.
1 parent 26ee523 commit 1470d5d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pkg/build/starnix.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,7 @@ func (st starnix) build(params Params) (ImageDetails, error) {
107107
"-c", "log.enabled=false,ffx.analytics.disabled=true,daemon.autostart=false",
108108
"product", "get-image-path", productBundlePath,
109109
"--slot", "a",
110-
"--image-type", "fxfs",
110+
"--image-type", "fxfs.fastboot",
111111
)
112112
if err != nil {
113113
return ImageDetails{}, err

0 commit comments

Comments
 (0)