diff options
author | Treehugger Robot <treehugger-gerrit@google.com> | 2018-08-09 23:16:27 +0000 |
---|---|---|
committer | Gerrit Code Review <noreply-gerritcodereview@google.com> | 2018-08-09 23:16:27 +0000 |
commit | 770395dee1e3fd632f0cbb71a24f2648d4d50f1b (patch) | |
tree | 7e1ef9306d349b688817734bca18381cbe38f4ff /fastboot/engine.h | |
parent | 18eae78c09d8e037fc0e3d038cf338e15ba7ddcb (diff) | |
parent | 0d4277d7b34eb1f5e37f268732ad7230ad903855 (diff) |
Merge "fastbootd: Add commands for logical partitions."
Diffstat (limited to 'fastboot/engine.h')
-rw-r--r-- | fastboot/engine.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/fastboot/engine.h b/fastboot/engine.h index 74aaa6a8b..8aebdd76a 100644 --- a/fastboot/engine.h +++ b/fastboot/engine.h @@ -69,6 +69,9 @@ void fb_queue_download_fd(const std::string& name, int fd, uint32_t sz); void fb_queue_upload(const std::string& outfile); void fb_queue_notice(const std::string& notice); void fb_queue_wait_for_disconnect(void); +void fb_queue_create_partition(const std::string& partition, const std::string& size); +void fb_queue_delete_partition(const std::string& partition); +void fb_queue_resize_partition(const std::string& partition, const std::string& size); int64_t fb_execute_queue(); void fb_set_active(const std::string& slot); |