From: Grant Likely Date: Mon, 25 Jul 2011 15:52:11 +0000 (-0600) Subject: arm/dt: Add skeleton dtsi file X-Git-Tag: v3.12-rc1~5143^2~6 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=2b4180af3faaf6088162d8a6b8d3f571bd7c2004;p=kernel%2Fkernel-generic.git arm/dt: Add skeleton dtsi file Contains the bare minimum template required to boot with the device tree. Signed-off-by: Grant Likely --- diff --git a/arch/arm/boot/dts/skeleton.dtsi b/arch/arm/boot/dts/skeleton.dtsi new file mode 100644 index 0000000..b41d241 --- /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>; }; +};