forked from openkylin/platform_build
Merge "Add more enums to the ota type" am: 6f2a44a0d9
Original change: https://android-review.googlesource.com/c/platform/build/+/1416508 Change-Id: I6e358519c6660462a54d3c8036a49a0c779500a1
This commit is contained in:
commit
ed9789d4b8
|
@ -64,8 +64,10 @@ message DeviceState {
|
|||
// and prerequisite to install the update correctly.
|
||||
message OtaMetadata {
|
||||
enum OtaType {
|
||||
AB = 0;
|
||||
BLOCK = 1;
|
||||
UNKNOWN = 0;
|
||||
AB = 1;
|
||||
BLOCK = 2;
|
||||
BRICK = 3;
|
||||
};
|
||||
OtaType type = 1;
|
||||
// True if we need to wipe after the update.
|
||||
|
|
Loading…
Reference in New Issue