1
0
mirror of https://github.com/trezor/trezor-firmware.git synced 2024-11-22 15:38:11 +00:00

protob: add Features.no_backup and ResetDevice.no_backup

This commit is contained in:
Pavol Rusnak 2018-10-04 16:36:27 +02:00
parent e42214e961
commit 41e4a84b5b
No known key found for this signature in database
GPG Key ID: 91F3B339B9A02A3D

View File

@ -56,6 +56,7 @@ message Features {
optional string fw_vendor = 25; // reported firmware vendor if in bootloader mode optional string fw_vendor = 25; // reported firmware vendor if in bootloader mode
optional bytes fw_vendor_keys = 26; // reported firmware vendor keys (their hash) optional bytes fw_vendor_keys = 26; // reported firmware vendor keys (their hash)
optional bool unfinished_backup = 27; // report unfinished backup (equals to Storage.unfinished_backup) optional bool unfinished_backup = 27; // report unfinished backup (equals to Storage.unfinished_backup)
optional bool no_backup = 28; // report no backup (equals to Storage.no_backup)
} }
/** /**
@ -188,6 +189,7 @@ message ResetDevice {
optional string label = 6; // device label optional string label = 6; // device label
optional uint32 u2f_counter = 7; // U2F counter optional uint32 u2f_counter = 7; // U2F counter
optional bool skip_backup = 8; // postpone seed backup to BackupDevice workflow optional bool skip_backup = 8; // postpone seed backup to BackupDevice workflow
optional bool no_backup = 9; // indicate that no backup is going to be made
} }
/** /**