diff options
author | Grant Likely <grant.likely@secretlab.ca> | 2011-07-25 09:52:11 -0600 |
---|---|---|
committer | Grant Likely <grant.likely@secretlab.ca> | 2011-07-25 09:52:11 -0600 |
commit | 2b4180af3faaf6088162d8a6b8d3f571bd7c2004 (patch) | |
tree | ffd50edb02f44756426b197e4a01e20328370760 /arch/arm/boot/dts | |
parent | 85cad1b0b6409c62bce4828da2fd8a535e2148b0 (diff) | |
download | linux-2b4180af3faaf6088162d8a6b8d3f571bd7c2004.tar.bz2 |
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>
Diffstat (limited to 'arch/arm/boot/dts')
-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 000000000000..b41d241de2cd --- /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>; }; +}; |