File tree 4 files changed +91
-4
lines changed
4 files changed +91
-4
lines changed Original file line number Diff line number Diff line change 98
98
if : github.actor != 'restyled-io[bot]'
99
99
100
100
container :
101
- image : ghcr.io/project-chip/chip-build-telink:57
101
+ image : ghcr.io/project-chip/chip-build-telink:65
102
102
options : --user root
103
103
104
104
steps :
Original file line number Diff line number Diff line change 16
16
17
17
# USB DFU configuration
18
18
CONFIG_USB_DFU_WILL_DETACH=n
19
- CONFIG_BOOT_USB_DFU_GPIO=y
20
- CONFIG_MCUBOOT_INDICATION_LED=y
19
+ CONFIG_BOOT_USB_DFU_GPIO=n
20
+ CONFIG_MCUBOOT_INDICATION_LED=n
Load Diff This file was deleted.
Original file line number Diff line number Diff line change
1
+ &flash {
2
+ reg = <0x20000000 0x200000>;
3
+
4
+ partitions {
5
+ /delete-node/ partition@0;
6
+ /delete-node/ partition@20000;
7
+ /delete-node/ partition@88000;
8
+ /delete-node/ partition@f0000;
9
+ /delete-node/ partition@f4000;
10
+ /delete-node/ partition@fe000;
11
+ boot_partition: partition@0 {
12
+ label = "mcuboot";
13
+ reg = <0x00000000 0x13000>;
14
+ };
15
+ slot0_partition: partition@13000 {
16
+ label = "image-0";
17
+ reg = <0x13000 0xec000>;
18
+ };
19
+ factory_partition: partition@ff000 {
20
+ label = "factory-data";
21
+ reg = <0xff000 0x1000>;
22
+ };
23
+ dac_keypair_partition: partition@100000 {
24
+ label = "dac-keypair";
25
+ reg = <0x100000 0x1000>; //store dac and key pair.
26
+ };
27
+ descriptor_partition: partition@101000 {
28
+ label = "sboot-descriptor";
29
+ reg = <0x101000 0x2000>;
30
+ };
31
+ storage_partition: partition@103000 {
32
+ label = "storage";
33
+ reg = <0x103000 0xf000>;
34
+ };
35
+ slot1_partition: partition@112000 {
36
+ label = "image-1";
37
+ reg = <0x112000 0xec000>;
38
+ };
39
+ vendor_partition: partition@1fe000 {
40
+ label = "vendor-data";
41
+ reg = <0x1fe000 0x2000>;
42
+ };
43
+ };
44
+ };
Original file line number Diff line number Diff line change
1
+ &flash {
2
+ reg = <0x20000000 0x400000>;
3
+
4
+ partitions {
5
+ /delete-node/ partition@0;
6
+ /delete-node/ partition@20000;
7
+ /delete-node/ partition@88000;
8
+ /delete-node/ partition@f0000;
9
+ /delete-node/ partition@f4000;
10
+ /delete-node/ partition@fe000;
11
+ boot_partition: partition@0 {
12
+ label = "mcuboot";
13
+ reg = <0x00000000 0x13000>;
14
+ };
15
+ slot0_partition: partition@13000 {
16
+ label = "image-0";
17
+ reg = <0x13000 0x1ec000>;
18
+ };
19
+ factory_partition: partition@1ff000 {
20
+ label = "factory-data";
21
+ reg = <0x1ff000 0x1000>;
22
+ };
23
+ dac_keypair_partition: partition@200000 {
24
+ label = "dac-keypair";
25
+ reg = <0x200000 0x1000>; //store dac and key pair.
26
+ };
27
+ descriptor_partition: partition@201000 {
28
+ label = "sboot-descriptor";
29
+ reg = <0x201000 0x2000>;
30
+ };
31
+ storage_partition: partition@203000 {
32
+ label = "storage";
33
+ reg = <0x203000 0xf000>;
34
+ };
35
+ slot1_partition: partition@212000 {
36
+ label = "image-1";
37
+ reg = <0x212000 0x1ec000>;
38
+ };
39
+ vendor_partition: partition@3fe000 {
40
+ label = "vendor-data";
41
+ reg = <0x3fe000 0x2000>;
42
+ };
43
+ };
44
+ };
You can’t perform that action at this time.
0 commit comments