mirror of
https://github.com/trezor/trezor-firmware.git
synced 2024-11-19 14:08:11 +00:00
fix(legacy): Skip unused messages in nanopb.
This commit is contained in:
parent
a36439a57f
commit
97a3223663
@ -5,7 +5,7 @@ endif
|
|||||||
SKIPPED_MESSAGES := Binance Cardano DebugMonero Eos Monero Ontology Ripple SdProtect Tezos WebAuthn \
|
SKIPPED_MESSAGES := Binance Cardano DebugMonero Eos Monero Ontology Ripple SdProtect Tezos WebAuthn \
|
||||||
DebugLinkRecordScreen DebugLinkReseedRandom DebugLinkShowText DebugLinkEraseSdCard DebugLinkWatchLayout \
|
DebugLinkRecordScreen DebugLinkReseedRandom DebugLinkShowText DebugLinkEraseSdCard DebugLinkWatchLayout \
|
||||||
GetOwnershipProof OwnershipProof GetOwnershipId OwnershipId AuthorizeCoinJoin DoPreauthorized \
|
GetOwnershipProof OwnershipProof GetOwnershipId OwnershipId AuthorizeCoinJoin DoPreauthorized \
|
||||||
CancelAuthorization \
|
CancelAuthorization DebugLinkLayout \
|
||||||
TxAckInput TxAckOutput TxAckPrev
|
TxAckInput TxAckOutput TxAckPrev
|
||||||
|
|
||||||
ifeq ($(BITCOIN_ONLY), 1)
|
ifeq ($(BITCOIN_ONLY), 1)
|
||||||
|
@ -55,23 +55,6 @@ MultisigRedeemScriptType.address_n max_count:8
|
|||||||
|
|
||||||
HDNodePathType.address_n max_count:8
|
HDNodePathType.address_n max_count:8
|
||||||
|
|
||||||
GetOwnershipProof.address_n max_count:8
|
|
||||||
GetOwnershipProof.coin_name max_size:21
|
|
||||||
GetOwnershipProof.ownership_ids max_count:15 max_size:32
|
|
||||||
GetOwnershipProof.commitment_data max_size:32
|
|
||||||
|
|
||||||
OwnershipProof.ownership_proof max_size:171
|
|
||||||
OwnershipProof.signature max_size:65
|
|
||||||
|
|
||||||
GetOwnershipId.address_n max_count:8
|
|
||||||
GetOwnershipId.coin_name max_size:21
|
|
||||||
|
|
||||||
OwnershipId.ownership_id max_size:32
|
|
||||||
|
|
||||||
AuthorizeCoinJoin.coordinator max_size:18
|
|
||||||
AuthorizeCoinJoin.address_n max_count:8
|
|
||||||
AuthorizeCoinJoin.coin_name max_size:21
|
|
||||||
|
|
||||||
TxInput.address_n max_count:8
|
TxInput.address_n max_count:8
|
||||||
TxInput.prev_hash max_size:32
|
TxInput.prev_hash max_size:32
|
||||||
TxInput.script_sig max_size:1650
|
TxInput.script_sig max_size:1650
|
||||||
@ -90,4 +73,11 @@ PrevInput.script_sig max_size:1650
|
|||||||
|
|
||||||
PrevOutput.script_pubkey max_size:520
|
PrevOutput.script_pubkey max_size:520
|
||||||
|
|
||||||
TxAckPrevExtraDataWrapper.extra_data_chunk max_size:1024
|
TxAckPrevExtraDataWrapper.extra_data_chunk type:FT_IGNORE
|
||||||
|
|
||||||
|
# Unused messages.
|
||||||
|
AuthorizeCoinJoin skip_message:true
|
||||||
|
GetOwnershipId skip_message:true
|
||||||
|
OwnershipId skip_message:true
|
||||||
|
GetOwnershipProof skip_message:true
|
||||||
|
OwnershipProof skip_message:true
|
||||||
|
@ -1,4 +1,6 @@
|
|||||||
DebugLinkDecision.input max_size:33
|
DebugLinkDecision.input max_size:33
|
||||||
|
DebugLinkDecision.x type:FT_IGNORE
|
||||||
|
DebugLinkDecision.y type:FT_IGNORE
|
||||||
|
|
||||||
DebugLinkState.layout max_size:1024
|
DebugLinkState.layout max_size:1024
|
||||||
DebugLinkState.pin max_size:10
|
DebugLinkState.pin max_size:10
|
||||||
@ -7,6 +9,7 @@ DebugLinkState.mnemonic_secret max_size:240
|
|||||||
DebugLinkState.reset_word max_size:12
|
DebugLinkState.reset_word max_size:12
|
||||||
DebugLinkState.reset_entropy max_size:128
|
DebugLinkState.reset_entropy max_size:128
|
||||||
DebugLinkState.recovery_fake_word max_size:12
|
DebugLinkState.recovery_fake_word max_size:12
|
||||||
|
DebugLinkState.layout_lines type:FT_IGNORE
|
||||||
|
|
||||||
DebugLinkLog.bucket max_size:33
|
DebugLinkLog.bucket max_size:33
|
||||||
DebugLinkLog.text max_size:256
|
DebugLinkLog.text max_size:256
|
||||||
@ -14,12 +17,8 @@ DebugLinkLog.text max_size:256
|
|||||||
DebugLinkMemory.memory max_size:1024
|
DebugLinkMemory.memory max_size:1024
|
||||||
DebugLinkMemoryWrite.memory max_size:1024
|
DebugLinkMemoryWrite.memory max_size:1024
|
||||||
|
|
||||||
# unused fields
|
# Unused messages.
|
||||||
DebugLinkState.layout_lines max_count:10 max_size:30
|
DebugLinkLayout skip_message:true
|
||||||
DebugLinkLayout.lines max_count:10 max_size:30
|
DebugLinkRecordScreen skip_message:true
|
||||||
DebugLinkRecordScreen.target_directory max_size:1
|
DebugLinkShowText skip_message:true
|
||||||
DebugLinkShowText.header_text max_size:1
|
DebugLinkShowTextItem skip_message:true
|
||||||
DebugLinkShowText.body_text max_count:1
|
|
||||||
DebugLinkShowText.header_icon max_size:1
|
|
||||||
DebugLinkShowText.icon_color max_size:1
|
|
||||||
DebugLinkShowTextItem.content max_size:1
|
|
||||||
|
Loading…
Reference in New Issue
Block a user