Skip to content

boot: zephyr: boards: Reformat DTS files #2367

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Jul 14, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
32 changes: 17 additions & 15 deletions boot/zephyr/boards/nrf52840_big.overlay
Original file line number Diff line number Diff line change
Expand Up @@ -10,22 +10,24 @@

&flash0 {
partitions {
compatible = "fixed-partitions";
#address-cells = <1>;
#size-cells = <1>;
compatible = "fixed-partitions";
#address-cells = <1>;
#size-cells = <1>;

boot_partition: partition@0 {
label = "mcuboot";
reg = <0x000000000 0x00010000>;
};
slot0_partition: partition@10000 {
label = "image-0";
reg = <0x000010000 0x000074000>;
};
slot1_partition: partition@75000 {
label = "image-1";
reg = <0x00084000 0x000074000>;
};
boot_partition: partition@0 {
label = "mcuboot";
reg = <0x000000000 0x00010000>;
};

slot0_partition: partition@10000 {
label = "image-0";
reg = <0x000010000 0x000074000>;
};

slot1_partition: partition@75000 {
label = "image-1";
reg = <0x00084000 0x000074000>;
};
};
};

Expand Down
1 change: 1 addition & 0 deletions boot/zephyr/boards/nrf52840_single_slot.overlay
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@
label = "mcuboot";
reg = <0x000000000 0x00010000>;
};

slot0_partition: partition@10000 {
label = "image-0";
reg = <0x000010000 0x0000E8000>;
Expand Down
1 change: 1 addition & 0 deletions boot/zephyr/boards/nrf52840dk_qspi_nor_secondary.overlay
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@
label = "mcuboot";
reg = <0x000000000 0x00010000>;
};

slot0_partition: partition@10000 {
label = "image-0";
reg = <0x000010000 0x0000e8000>;
Expand Down
1 change: 1 addition & 0 deletions boot/zephyr/boards/nrf52840dk_ram.overlay
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@
label = "mcuboot";
reg = <0x000000000 0x00010000>;
};

slot0_partition: partition@10000 {
label = "image-0";
reg = <0x000010000 0x00000A000>;
Expand Down
3 changes: 3 additions & 0 deletions boot/zephyr/boards/nrf52840dk_ram_multi.overlay
Original file line number Diff line number Diff line change
Expand Up @@ -14,14 +14,17 @@
label = "mcuboot";
reg = <0x000000000 0x00010000>;
};

slot0_partition: partition@10000 {
label = "image-0";
reg = <0x000010000 0x00000A000>;
};

slot1_partition: partition@1A000 {
label = "image-1";
reg = <0x00001A000 0x00000A000>;
};

slot3_partition: partition@24000 {
label = "image-3";
reg = <0x000024000 0x00000A000>;
Expand Down
Loading