180_section_pad.dts 406 B

123456789101112131415161718192021222324252627
  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. section@0 {
  9. read-only;
  10. /* Padding for the section uses the 0x26 pad byte */
  11. pad-before = <3>;
  12. pad-after = <2>;
  13. /* Set the padding byte for entries, i.e. u-boot */
  14. pad-byte = <0x21>;
  15. u-boot {
  16. pad-before = <5>;
  17. pad-after = <1>;
  18. };
  19. };
  20. };
  21. };