1
0
mirror of https://github.com/trezor/trezor-firmware.git synced 2025-07-23 23:18:16 +00:00

perf(core/bootloader): remove tropic from bootloader

[no changelog]
This commit is contained in:
tychovrahe 2025-06-28 14:44:59 +02:00 committed by TychoVrahe
parent fdc9cfdc94
commit fc125f7e87
2 changed files with 2 additions and 3 deletions

View File

@ -23,7 +23,6 @@ FEATURES_WANTED = [
"rtc",
"secure_domain",
"suspend",
"tropic",
"usb",
]

View File

@ -93,7 +93,7 @@ void suspend_secure_drivers() {
#ifdef USE_STORAGE_HWKEY
secure_aes_deinit();
#endif
#if defined(USE_TROPIC) && !defined(BOOTLOADER)
#ifdef USE_TROPIC
tropic_deinit();
#endif
#ifdef USE_OPTIGA
@ -108,7 +108,7 @@ void resume_secure_drivers() {
#ifdef USE_OPTIGA
optiga_init_and_configure();
#endif
#if defined(USE_TROPIC) && !defined(BOOTLOADER)
#ifdef USE_TROPIC
tropic_init();
#endif
}