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

feat(nordic): reserve flash space for manufacturing data

[no changelog]
This commit is contained in:
tychovrahe 2025-05-07 11:31:53 +02:00 committed by TychoVrahe
parent f6e39a8420
commit 42c4cf5190
2 changed files with 16 additions and 9 deletions

View File

@ -132,9 +132,13 @@
label = "mcuboot"; label = "mcuboot";
reg = <0x00000000 0xc000>; reg = <0x00000000 0xc000>;
}; };
slot0_partition: partition@c000 { custom_partition: partition@c000 {
label = "custom_data";
reg = <0x0000c000 0x2000>;
};
slot0_partition: partition@e000 {
label = "image-0"; label = "image-0";
reg = <0x0000C000 0x6E000>; reg = <0x0000e000 0x6c000>;
}; };
storage_partition: partition@7a000 { storage_partition: partition@7a000 {
label = "storage"; label = "storage";

View File

@ -1,25 +1,28 @@
mcuboot: mcuboot:
address: 0x0 address: 0x0
size: 0xc000 size: 0xc000
mcuboot_pad: custom_data:
address: 0xc000 address: 0xc000
size: 0x2000
mcuboot_pad:
address: 0xe000
size: 0x200 size: 0x200
app: app:
address: 0xc200 address: 0xe200
size: 0x6de00 size: 0x6be00
mcuboot_primary: mcuboot_primary:
orig_span: &id001 orig_span: &id001
- mcuboot_pad - mcuboot_pad
- app - app
span: *id001 span: *id001
address: 0xc000 address: 0xe000
size: 0x6e000 size: 0x6c000
mcuboot_primary_app: mcuboot_primary_app:
orig_span: &id002 orig_span: &id002
- app - app
span: *id002 span: *id002
address: 0xc200 address: 0xe200
size: 0x6de00 size: 0x6be00
settings_storage: settings_storage:
address: 0x7a000 address: 0x7a000
size: 0x6000 size: 0x6000