skeleton.dtsi 344 B

12345678910111213141516171819202122
  1. // SPDX-License-Identifier: GPL-2.0+
  2. /*
  3. * Skeleton device tree; the bare minimum needed to boot; just include and
  4. * add a compatible value. The bootloader will typically populate the memory
  5. * node.
  6. */
  7. / {
  8. #address-cells = <1>;
  9. #size-cells = <1>;
  10. chosen {
  11. };
  12. aliases {
  13. };
  14. memory {
  15. device_type = "memory";
  16. reg = <0 0>;
  17. };
  18. };