Преглед изворни кода

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>
Grant Likely пре 14 година
родитељ
комит
2b4180af3f
1 измењених фајлова са 13 додато и 0 уклоњено
  1. 13 0
      arch/arm/boot/dts/skeleton.dtsi

+ 13 - 0
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>; };
+};