blob: 62e19c30c93d18ece610221b924c31f0d3b33a4e [file]
// Copyright 2022 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.
#ifndef SRC_FIRMWARE_GIGABOOT_CPP_BACKENDS_H_
#define SRC_FIRMWARE_GIGABOOT_CPP_BACKENDS_H_
#include <span>
#include "partition.h"
namespace gigaboot {
const std::span<const uint8_t> GetPermanentAttributes();
const std::span<const uint8_t> GetPermanentAttributesHash();
// Get factory default partition information
const std::span<const PartitionMap::PartitionEntry> GetPartitionCustomizations();
} // namespace gigaboot
#endif // SRC_FIRMWARE_GIGABOOT_CPP_BACKENDS_H_