update3.its 754 B

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. /*
  2. * Example Automatic software update file.
  3. */
  4. / {
  5. description = "Automatic software updates: kernel, ramdisk, FDT";
  6. #address-cells = <1>;
  7. images {
  8. update@1 {
  9. description = "Linux kernel binary";
  10. data = /incbin/("./vmlinux.bin.gz");
  11. compression = "none";
  12. type = "firmware";
  13. load = <FF700000>;
  14. hash@1 {
  15. algo = "sha1";
  16. };
  17. };
  18. update@2 {
  19. description = "Ramdisk image";
  20. data = /incbin/("./ramdisk_image.gz");
  21. compression = "none";
  22. type = "firmware";
  23. load = <FF8E0000>;
  24. hash@1 {
  25. algo = "sha1";
  26. };
  27. };
  28. update@3 {
  29. description = "FDT blob";
  30. data = /incbin/("./blob.fdt");
  31. compression = "none";
  32. type = "firmware";
  33. load = <FFAC0000>;
  34. hash@1 {
  35. algo = "sha1";
  36. };
  37. };
  38. };
  39. };