This renames the dtsi files in the dts/vendor/nordic to include the cpuapp in the filename. At the same time it updates the inclusion of these files to include the vendor in the path because the same filenames exists in both: dts/vendor/nordic dts/arm/nordic Signed-off-by: Georgios Vasilakis <georgios.vasilakis@nordicsemi.no>
39 lines
709 B
Plaintext
39 lines
709 B
Plaintext
/*
|
|
* Copyright (c) 2025 Nordic Semiconductor ASA
|
|
*
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
|
|
&cpuapp_rram {
|
|
reg = <0x0 DT_SIZE_K(1012)>;
|
|
};
|
|
|
|
/* These partition sizes assume no FLPR area in RRAM */
|
|
&cpuapp_rram {
|
|
partitions {
|
|
compatible = "fixed-partitions";
|
|
#address-cells = <1>;
|
|
#size-cells = <1>;
|
|
|
|
boot_partition: partition@0 {
|
|
label = "mcuboot";
|
|
reg = <0x0 DT_SIZE_K(64)>;
|
|
};
|
|
|
|
slot0_partition: partition@10000 {
|
|
label = "image-0";
|
|
reg = <0x10000 DT_SIZE_K(456)>;
|
|
};
|
|
|
|
slot1_partition: partition@82000 {
|
|
label = "image-1";
|
|
reg = <0x82000 DT_SIZE_K(456)>;
|
|
};
|
|
|
|
storage_partition: partition@f4000 {
|
|
label = "storage";
|
|
reg = <0xf4000 DT_SIZE_K(36)>;
|
|
};
|
|
};
|
|
};
|