Rename all dtsi files for Nordic boards for non secure builds to have a _ prefix before "ns" to increase readiblity. At the same time, change the path to include the arm folder in order to be able to differentiate with the vendor folder which has similar files. Signed-off-by: Georgios Vasilakis <georgios.vasilakis@nordicsemi.no>
24 lines
341 B
Plaintext
24 lines
341 B
Plaintext
/*
|
|
* Copyright (c) 2023 Nordic Semiconductor ASA
|
|
*
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
|
|
#include <mem.h>
|
|
#include <arm/nordic/nrf91_ns.dtsi>
|
|
|
|
&flash0 {
|
|
reg = <0x00000000 DT_SIZE_K(1024)>;
|
|
};
|
|
|
|
&sram0 {
|
|
reg = <0x20000000 DT_SIZE_K(256)>;
|
|
ranges = <0x0 0x20000000 DT_SIZE_K(256)>;
|
|
};
|
|
|
|
/ {
|
|
soc {
|
|
compatible = "simple-bus";
|
|
};
|
|
};
|