156f36f0d1
DTS files which are only used as includes should have the proper suffix according to spec. A .dts file is expected to contain a full devicetree with a root node and a `/dts-v1/;` tag, at least after preprocessing. For every board, ensure that the names of DTS includes end with ".dtsi", and update the relevant references. Signed-off-by: Grzegorz Swiderski <grzegorz.swiderski@nordicsemi.no>
20 lines
379 B
Plaintext
20 lines
379 B
Plaintext
/*
|
|
* Copyright (c) 2021 Actinius
|
|
*
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
|
|
/dts-v1/;
|
|
#include <nordic/nrf9160_sica.dtsi>
|
|
#include "actinius_icarus_bee_common.dtsi"
|
|
|
|
/ {
|
|
chosen {
|
|
zephyr,sram = &sram0_s;
|
|
zephyr,flash = &flash0;
|
|
zephyr,code-partition = &slot0_partition;
|
|
zephyr,sram-secure-partition = &sram0_s;
|
|
zephyr,sram-non-secure-partition = &sram0_ns;
|
|
};
|
|
};
|