update3.its 766 B

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