Skip to content

Commit 1c780fb

Browse files
butokdkalowsk
authored andcommitted
tests: littlefs: add mimxrt1020/4-evk support
Adds support for mimxrt1020-evk and mimxrt1024-evk boards to the littlefs test. Signed-off-by: Andrej Butok <andrey.butok@nxp.com>
1 parent 86244a9 commit 1c780fb

File tree

3 files changed

+42
-0
lines changed

3 files changed

+42
-0
lines changed
Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
/*
2+
* Copyright 2025 NXP
3+
*
4+
* SPDX-License-Identifier: Apache-2.0
5+
*/
6+
7+
/delete-node/ &storage_partition;
8+
9+
&is25lp064 {
10+
partitions {
11+
large_partition: partition@400000 {
12+
label = "large";
13+
reg = <0x00400000 DT_SIZE_M(3)>;
14+
};
15+
medium_partition: partition@700000 {
16+
label = "medium";
17+
reg = <0x00700000 DT_SIZE_K(960)>;
18+
};
19+
small_partition: partition@7F0000 {
20+
label = "small";
21+
reg = <0x007F0000 DT_SIZE_K(64)>;
22+
};
23+
};
24+
};
Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
/*
2+
* Copyright 2025 NXP
3+
*
4+
* SPDX-License-Identifier: Apache-2.0
5+
*/
6+
7+
/delete-node/ &storage_partition;
8+
9+
&w25q32jvwj0 {
10+
partitions {
11+
small_partition: partition@3F0000 {
12+
label = "small";
13+
reg = <0x003F0000 DT_SIZE_K(64)>;
14+
};
15+
};
16+
};

tests/subsys/fs/littlefs/testcase.yaml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@ common:
1111
- frdm_rw612
1212
- mimxrt1010_evk
1313
- mimxrt1015_evk
14+
- mimxrt1020_evk
1415
- mimxrt1040_evk
1516
- mimxrt1050_evk/mimxrt1052/hyperflash
1617
- mimxrt1060_evk/mimxrt1062/qspi
@@ -42,6 +43,7 @@ tests:
4243
- lpcxpresso55s28
4344
- lpcxpresso55s36
4445
- lpcxpresso55s69/lpc55s69/cpu0
46+
- mimxrt1024_evk
4547
filesystem.littlefs.custom:
4648
timeout: 180
4749
extra_configs:

0 commit comments

Comments
 (0)