aboutsummaryrefslogtreecommitdiff
path: root/arch/arm/boot
diff options
context:
space:
mode:
authorGrant Likely <grant.likely@secretlab.ca>2011-07-25 09:52:11 -0600
committerGrant Likely <grant.likely@secretlab.ca>2011-07-25 09:52:11 -0600
commit2b4180af3faaf6088162d8a6b8d3f571bd7c2004 (patch)
treeffd50edb02f44756426b197e4a01e20328370760 /arch/arm/boot
parent85cad1b0b6409c62bce4828da2fd8a535e2148b0 (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>
Diffstat (limited to 'arch/arm/boot')
-rw-r--r--arch/arm/boot/dts/skeleton.dtsi13
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>; };
+};