181_section_align.dts 463 B

12345678910111213141516171819202122232425262728293031323334
  1. // SPDX-License-Identifier: GPL-2.0+
  2. /dts-v1/;
  3. / {
  4. #address-cells = <1>;
  5. #size-cells = <1>;
  6. binman {
  7. pad-byte = <0x26>;
  8. fill {
  9. size = <1>;
  10. };
  11. section@1 {
  12. read-only;
  13. /* Padding for the section uses the 0x26 pad byte */
  14. align = <2>;
  15. align-size = <0x10>;
  16. /* Set the padding byte for entries, i.e. u-boot */
  17. pad-byte = <0x21>;
  18. fill {
  19. size = <1>;
  20. };
  21. u-boot {
  22. align = <4>;
  23. align-size = <8>;
  24. };
  25. };
  26. };
  27. };