diff options
| author | Simon Glass <[email protected]> | 2012-02-27 10:52:37 +0000 |
|---|---|---|
| committer | Albert ARIBAUD <[email protected]> | 2012-03-29 08:12:47 +0200 |
| commit | 92665df21d71400205feddd8ecc4f4fe2f344c11 (patch) | |
| tree | 78b1c547e503524390e9a022e5f1e8d9a9767a9c | |
| parent | ed3ee5cd0640979a200710b9eefa210a617b19ff (diff) | |
arm: fdt: Add skeleton device tree file from kernel
This was taken from commit b48c54e2 at:
git://git.kernel.org/pub/scm/linux/kernel/git/olof/tegra.git
Signed-off-by: Simon Glass <[email protected]>
Signed-off-by: Tom Warren <[email protected]>
| -rw-r--r-- | arch/arm/dts/skeleton.dtsi | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/arch/arm/dts/skeleton.dtsi b/arch/arm/dts/skeleton.dtsi new file mode 100644 index 00000000000..b41d241de2c --- /dev/null +++ b/arch/arm/dts/skeleton.dtsi @@ -0,0 +1,13 @@ +/* + * 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>; }; +}; |
