Răsfoiți Sursa

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 ani în urmă
părinte
comite
2b4180af3f
1 a modificat fișierele cu 13 adăugiri și 0 ștergeri
  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>; };
+};