File tree Expand file tree Collapse file tree 4 files changed +0
-108
lines changed Expand file tree Collapse file tree 4 files changed +0
-108
lines changed Original file line number Diff line number Diff line change 16
16
zephyr,flash = &flash0;
17
17
zephyr,console = &uart0;
18
18
zephyr,shell-uart = &uart0;
19
- zephyr,code-partition = &code_partition;
20
19
};
21
20
22
21
aliases {
59
58
60
59
&flash0 {
61
60
reg = <0x10000000 DT_SIZE_M(4)>;
62
-
63
- partitions {
64
- compatible = "fixed-partitions";
65
- #address-cells = <1>;
66
- #size-cells = <1>;
67
-
68
- /* Reserved memory for an image definition block. The block is much
69
- * smaller than 256 bytes, but in practice the linker places the vector
70
- * table at a much larger alignment offset.
71
- */
72
- image_def: partition@0 {
73
- label = "image_def";
74
- reg = <0x00000000 0x100>;
75
- read-only;
76
- };
77
-
78
- /*
79
- * Usable flash. Starts at 0x100, after the image definition block.
80
- * The partition size is 4MB minus the 0x100 bytes taken by the
81
- * image definition.
82
- */
83
- code_partition: partition@100 {
84
- label = "code-partition";
85
- reg = <0x100 (DT_SIZE_M(4) - 0x100)>;
86
- read-only;
87
- };
88
- };
89
61
};
90
62
91
63
&uart0 {
Original file line number Diff line number Diff line change 18
18
zephyr,flash = &flash0;
19
19
zephyr,console = &uart0;
20
20
zephyr,shell-uart = &uart0;
21
- zephyr,code-partition = &code_partition;
22
21
};
23
22
24
23
aliases {
92
91
93
92
&flash0 {
94
93
reg = <0x10000000 DT_SIZE_M(16)>;
95
-
96
- partitions {
97
- compatible = "fixed-partitions";
98
- #address-cells = <1>;
99
- #size-cells = <1>;
100
-
101
- /* Reserved memory for an image definition block. The block is much
102
- * smaller than 256 bytes, but in practice the linker places the vector
103
- * table at a much larger alignment offset.
104
- */
105
- image_def: partition@0 {
106
- label = "image_def";
107
- reg = <0x00000000 0x100>;
108
- read-only;
109
- };
110
-
111
- /*
112
- * Usable flash. Starts at 0x100, after the image definition block.
113
- * The partition size is 16MB minus the 0x100 bytes taken by the
114
- * image definition.
115
- */
116
- code_partition: partition@100 {
117
- label = "code-partition";
118
- reg = <0x100 (DT_SIZE_M(16) - 0x100)>;
119
- read-only;
120
- };
121
- };
122
94
};
123
95
124
96
&uart0 {
Original file line number Diff line number Diff line change 19
19
zephyr,flash-controller = &qmi;
20
20
zephyr,console = &uart0;
21
21
zephyr,shell-uart = &uart0;
22
- zephyr,code-partition = &code_partition;
23
22
};
24
23
25
24
aliases {
62
61
63
62
&flash0 {
64
63
reg = <0x10000000 DT_SIZE_M(4)>;
65
-
66
- partitions {
67
- compatible = "fixed-partitions";
68
- #address-cells = <1>;
69
- #size-cells = <1>;
70
-
71
- /* Reserved memory for an image definition block. The block is much
72
- * smaller than 256 bytes, but in practice the linker places the vector
73
- * table at a much larger alignment offset.
74
- */
75
- image_def: partition@0 {
76
- label = "image_def";
77
- reg = <0x00000000 0x100>;
78
- read-only;
79
- };
80
-
81
- /*
82
- * Usable flash. Starts at 0x100, after the image definition block.
83
- * The partition size is 4MB minus the 0x100 bytes taken by the
84
- * image definition.
85
- */
86
- code_partition: partition@100 {
87
- label = "code-partition";
88
- reg = <0x100 (DT_SIZE_M(4) - 0x100)>;
89
- read-only;
90
- };
91
- };
92
64
};
93
65
94
66
&uart0 {
Original file line number Diff line number Diff line change 18
18
zephyr,flash = &flash0;
19
19
zephyr,console = &uart0;
20
20
zephyr,shell-uart = &uart0;
21
- zephyr,code-partition = &code_partition;
22
21
};
23
22
24
23
pico_header: connector {
85
84
* the second stage bootloader
86
85
*/
87
86
reg = <0x10000000 DT_SIZE_M(16)>;
88
-
89
- partitions {
90
- compatible = "fixed-partitions";
91
- #address-cells = <1>;
92
- #size-cells = <1>;
93
-
94
- /* Reserved memory for the second stage bootloader */
95
- second_stage_bootloader: partition@0 {
96
- label = "second_stage_bootloader";
97
- reg = <0x00000000 0x100>;
98
- read-only;
99
- };
100
-
101
- /*
102
- * Usable flash. Starts at 0x100, after the bootloader. The partition
103
- * size is 16MB minus the 0x100 bytes taken by the bootloader.
104
- */
105
- code_partition: partition@100 {
106
- label = "code-partition";
107
- reg = <0x100 (DT_SIZE_M(16) - 0x100)>;
108
- read-only;
109
- };
110
- };
111
87
};
112
88
113
89
&uart0 {
You can’t perform that action at this time.
0 commit comments