zephyr/tests/subsys/fs/ext2/boards/native_sim.overlay
Alberto Escolar Piedras 1a2fc865d2 tests/subsys/fs/*: Switch to native_sim
Enable all these tests which run in native_posix in native_sim,
Switch from native_posix to native_sim as default test platform
And switch native_posix overlays to native_sim.

Signed-off-by: Alberto Escolar Piedras <alberto.escolar.piedras@nordicsemi.no>
2023-11-22 09:54:03 +01:00

32 lines
488 B
Plaintext

/*
* Copyright (c) 2023 Antmicro
*
* SPDX-License-Identifier: Apache-2.0
*/
&flashcontroller0 {
reg = <0x00000000 DT_SIZE_M(128)>;
};
&flash0 {
reg = <0x00000000 DT_SIZE_M(128)>;
partitions {
compatible = "fixed-partitions";
#address-cells = <1>;
#size-cells = <1>;
storage: partition@0 {
reg = <0x00000000 0x08000000>;
};
};
};
/ {
storage_disk {
compatible = "zephyr,flash-disk";
partition = <&storage>;
disk-name = "NAND";
cache-size = <4096>;
};
};