blob: b2ef4c3ce89c0caeef34c5806a1ef000287cfb8f [file] [log] [blame]
# Copyright 2023 The Fuchsia Authors. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
import("//build/assembly/product_assembly_configuration.gni")
product_assembly_configuration("zedboot") {
platform = {
build_type = "eng"
feature_set_level = "bootstrap"
storage = {
filesystems = {
image_name = "zedboot"
image_mode = "no_image"
}
}
}
product = {
}
}
product_assembly_configuration("zedboot_with_fvm") {
platform = {
build_type = "eng"
feature_set_level = "bootstrap"
storage = {
filesystems = {
image_name = "zedboot"
image_mode = "no_image"
volume = {
fvm = {
data = {
}
blob = {
}
}
}
}
}
}
product = {
}
}
product_assembly_configuration("zedboot_with_minfs") {
platform = {
build_type = "eng"
feature_set_level = "bootstrap"
storage = {
filesystems = {
image_name = "zedboot"
image_mode = "no_image"
volume = {
fvm = {
data = {
data_filesystem_format = "minfs"
}
blob = {
}
}
}
}
}
}
product = {
}
}