diff options
author | Grant Likely <grant.likely@secretlab.ca> | 2011-07-05 23:42:30 -0600 |
---|---|---|
committer | Grant Likely <grant.likely@secretlab.ca> | 2011-07-19 16:34:48 -0600 |
commit | 0cc7e6d35f388105b9e40fe1b873a20203d120de (patch) | |
tree | 6076a2ad581e1268a0c3762d03247db0d9c1e0f2 | |
parent | 602a3434b67ecdb5cdd055a650a59169d4c0f738 (diff) |
arm/dt: Add skeleton dtsi file
Contains the bare minimum template required to boot with the device tree.
Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
-rw-r--r-- | arch/arm/boot/dts/skeleton.dtsi | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/arch/arm/boot/dts/skeleton.dtsi b/arch/arm/boot/dts/skeleton.dtsi new file mode 100644 index 00000000000..b41d241de2c --- /dev/null +++ b/arch/arm/boot/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>; }; +}; |