visionfive2-uboot-fit-image.its 500 B

1234567891011121314151617181920212223242526272829
  1. /dts-v1/;
  2. / {
  3. description = "U-boot-spl FIT image for JH7110 VisionFive2";
  4. #address-cells = <2>;
  5. images {
  6. firmware {
  7. description = "u-boot";
  8. data = /incbin/("fw_payload.bin");
  9. type = "firmware";
  10. arch = "riscv";
  11. os = "u-boot";
  12. load = <0x0 0x40000000>;
  13. entry = <0x0 0x40000000>;
  14. compression = "none";
  15. };
  16. };
  17. configurations {
  18. default = "config-1";
  19. config-1 {
  20. description = "U-boot-spl FIT config for JH7110 VisionFive2";
  21. firmware = "firmware";
  22. };
  23. };
  24. };