rock5b.its 738 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. /dts-v1/;
  2. / {
  3. description = "Rock 5B FIT Image";
  4. #address-cells = <1>;
  5. images {
  6. kernel {
  7. description = "Kernel";
  8. data = /incbin/("Image.gz");
  9. type = "kernel";
  10. arch = "arm64";
  11. os = "linux";
  12. compression = "gzip";
  13. load = <0x0a200000>;
  14. entry = <0x0a200000>;
  15. hash {
  16. algo = "sha256";
  17. };
  18. };
  19. fdt {
  20. description = "Device Tree";
  21. data = /incbin/("rock5b.dtb");
  22. type = "flat_dt";
  23. arch = "arm64";
  24. compression = "none";
  25. load = <0x0e000000>;
  26. entry = <0x0e000000>;
  27. hash {
  28. algo = "sha256";
  29. };
  30. };
  31. };
  32. configurations {
  33. default = "standard";
  34. standard {
  35. description = "Standard Boot";
  36. kernel = "kernel";
  37. fdt = "fdt";
  38. hash {
  39. algo = "sha256";
  40. };
  41. };
  42. };
  43. };