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>
32 lines
488 B
Plaintext
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>;
|
|
};
|
|
};
|