diff options
Diffstat (limited to 'payload_consumer/install_plan.h')
-rw-r--r-- | payload_consumer/install_plan.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/payload_consumer/install_plan.h b/payload_consumer/install_plan.h index d2f15faf..454dd78a 100644 --- a/payload_consumer/install_plan.h +++ b/payload_consumer/install_plan.h @@ -90,8 +90,11 @@ struct InstallPlan { uint64_t target_size{0}; brillo::Blob target_hash; - // Whether we should run the postinstall script from this partition. + // Whether we should run the postinstall script from this partition and the + // postinstall parameters. bool run_postinstall{false}; + std::string postinstall_path; + std::string filesystem_type; }; std::vector<Partition> partitions; |