You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
487 B
22 lines
487 B
4 months ago
|
#pragma once
|
||
|
|
||
|
#include <string>
|
||
|
|
||
|
#include "host/libs/config/cuttlefish_config.h"
|
||
|
|
||
|
namespace cuttlefish {
|
||
|
|
||
|
enum class DataImageResult {
|
||
|
Error,
|
||
|
NoChange,
|
||
|
FileUpdated,
|
||
|
};
|
||
|
|
||
|
DataImageResult ApplyDataImagePolicy(const CuttlefishConfig& config,
|
||
|
const std::string& path);
|
||
|
bool InitializeMiscImage(const std::string& misc_image);
|
||
|
void CreateBlankImage(
|
||
|
const std::string& image, int num_mb, const std::string& image_fmt);
|
||
|
|
||
|
} // namespace cuttlefish
|