update_uboot.its 405 B

123456789101112131415161718192021
  1. /*
  2. * Automatic software update for U-Boot
  3. * Make sure the flashing addresses ('load' prop) is correct for your board!
  4. */
  5. / {
  6. description = "Automatic U-Boot update";
  7. #address-cells = <1>;
  8. images {
  9. update@1 {
  10. description = "U-Boot binary";
  11. data = /incbin/("./u-boot.bin");
  12. compression = "none";
  13. type = "firmware";
  14. load = <FFFC0000>;
  15. hash@1 {
  16. algo = "sha1";
  17. };
  18. };
  19. };
  20. };