mirror of
https://github.com/zephyrproject-rtos/zephyr
synced 2025-08-30 08:05:21 +00:00
This patch adds the base DTS and YAML files that may be referenced by SoCs. The device tree files provide base definitions for the more well known ARMV7M device nodes. These files are meant to be included in SoC vendor specific device tree files. The YAML files provide definitions for the contents of device tree node that contain information that will be parsed and used for configuration in the system. DTS files define hardware and software configuration and YAML files provide the markers for knowing which pieces need to be extracted. Change-Id: I7e90fe19f09afb269b7b2988c2c19c0f26d7ee7c Signed-off-by: Andy Gross <andy.gross@linaro.org>
14 lines
297 B
Plaintext
14 lines
297 B
Plaintext
/*
|
|
* Skeleton device tree; the bare minimum needed to boot; just include and
|
|
* add a compatible value. The bootloader will typically populate the memory
|
|
* node.
|
|
*/
|
|
|
|
/ {
|
|
#address-cells = <1>;
|
|
#size-cells = <1>;
|
|
chosen { };
|
|
aliases { };
|
|
memory { device_type = "memory"; reg = <0 0>; };
|
|
};
|