blob: 25cd1d52a9f7608336ab7e2a63eeb7d978d5ab71 [file] [log] [blame]
// Copyright 2018 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.
package build
// Image represents an entry in an image manifest.
type Image struct {
// Name is the canonical name of the image.
Name string `json:"name"`
// Path is the absolute path to the image.
// Note: when unmarshaled from a manifest this entry actually gives the relative
// location from the manifest's directory; we prepend that directory when loading. See
// LoadImageModule() below.
Path string `json:"path"`
// Type is the shorthand for the type of the image (e.g., "zbi" or "blk").
Type string `json:"type"`
// PaveArgs is the list of associated arguments to pass to the bootserver
// when paving.
PaveArgs []string `json:"bootserver_pave"`
// PaveZedbootArgs is the list of associated arguments to pass to the bootserver
// when paving zedboot
PaveZedbootArgs []string `json:"bootserver_pave_zedboot"`
// NetbootArgs is the list of associated arguments to pass to the bootserver
// when netbooting.
NetbootArgs []string `json:"bootserver_netboot"`
}
// ImageManifest is a JSON list of images produced by the Fuchsia build.
type ImageManifest = []Image