mirror of
https://github.com/trezor/trezor-firmware.git
synced 2024-11-15 20:19:23 +00:00
fix(core): fix BHK_MAXSIZE constant
[no changelog]
This commit is contained in:
parent
133135e204
commit
059152d9b4
@ -7,7 +7,7 @@ SECRET_MAXSIZE = 0x4000;
|
||||
SECRET_SECTOR_START = 0x0;
|
||||
SECRET_SECTOR_END = 0x1;
|
||||
BHK_START = 0xc002000;
|
||||
BHK_MAXSIZE = 0x4000;
|
||||
BHK_MAXSIZE = 0x2000;
|
||||
BHK_SECTOR_START = 0x1;
|
||||
BHK_SECTOR_END = 0x1;
|
||||
BOARDLOADER_START = 0xc004000;
|
||||
|
@ -41,7 +41,7 @@
|
||||
|
||||
// overlaps with secret
|
||||
#define BHK_START 0x0C002000
|
||||
#define BHK_MAXSIZE (2 * 8 * 1024) // 8 kB
|
||||
#define BHK_MAXSIZE (1 * 8 * 1024) // 8 kB
|
||||
#define BHK_SECTOR_START 0x1
|
||||
#define BHK_SECTOR_END 0x1
|
||||
|
||||
|
@ -7,7 +7,7 @@ SECRET_MAXSIZE = 0x4000;
|
||||
SECRET_SECTOR_START = 0x0;
|
||||
SECRET_SECTOR_END = 0x1;
|
||||
BHK_START = 0xc002000;
|
||||
BHK_MAXSIZE = 0x4000;
|
||||
BHK_MAXSIZE = 0x2000;
|
||||
BHK_SECTOR_START = 0x1;
|
||||
BHK_SECTOR_END = 0x1;
|
||||
BOARDLOADER_START = 0xc004000;
|
||||
|
@ -40,7 +40,7 @@
|
||||
|
||||
// overlaps with secret
|
||||
#define BHK_START 0x0C002000
|
||||
#define BHK_MAXSIZE (2 * 8 * 1024) // 8 kB
|
||||
#define BHK_MAXSIZE (1 * 8 * 1024) // 8 kB
|
||||
#define BHK_SECTOR_START 0x1
|
||||
#define BHK_SECTOR_END 0x1
|
||||
|
||||
|
@ -7,7 +7,7 @@ SECRET_MAXSIZE = 0x4000;
|
||||
SECRET_SECTOR_START = 0x0;
|
||||
SECRET_SECTOR_END = 0x1;
|
||||
BHK_START = 0xc002000;
|
||||
BHK_MAXSIZE = 0x4000;
|
||||
BHK_MAXSIZE = 0x2000;
|
||||
BHK_SECTOR_START = 0x1;
|
||||
BHK_SECTOR_END = 0x1;
|
||||
BOARDLOADER_START = 0xc004000;
|
||||
|
@ -40,7 +40,7 @@
|
||||
|
||||
// overlaps with secret
|
||||
#define BHK_START 0x0C002000
|
||||
#define BHK_MAXSIZE (2 * 8 * 1024) // 8 kB
|
||||
#define BHK_MAXSIZE (1 * 8 * 1024) // 8 kB
|
||||
#define BHK_SECTOR_START 0x1
|
||||
#define BHK_SECTOR_END 0x1
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user