openbmc-flash-layout.dtsi 473 B

1234567891011121314151617181920212223242526272829303132
  1. // SPDX-License-Identifier: GPL-2.0+
  2. partitions {
  3. compatible = "fixed-partitions";
  4. #address-cells = <1>;
  5. #size-cells = <1>;
  6. u-boot@0 {
  7. reg = <0x0 0x60000>;
  8. label = "u-boot";
  9. };
  10. u-boot-env@60000 {
  11. reg = <0x60000 0x20000>;
  12. label = "u-boot-env";
  13. };
  14. kernel@80000 {
  15. reg = <0x80000 0x440000>;
  16. label = "kernel";
  17. };
  18. rofs@4c0000 {
  19. reg = <0x4c0000 0x1740000>;
  20. label = "rofs";
  21. };
  22. rwfs@1c00000 {
  23. reg = <0x1c00000 0x400000>;
  24. label = "rwfs";
  25. };
  26. };