visionfive2-fit-image.its 2.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  1. /dts-v1/;
  2. / {
  3. description = "Kernel fitImage for visionfive2";
  4. #address-cells = <1>;
  5. images {
  6. kernel-1 {
  7. description = "Linux kernel";
  8. data = /incbin/("./tmp/fitImage-linux.bin-starfive-visionfive2");
  9. type = "kernel";
  10. arch = "riscv";
  11. os = "linux";
  12. compression = "none";
  13. load = <0x40200000>;
  14. entry = <0x40200000>;
  15. hash-1 {
  16. algo = "sha256";
  17. };
  18. };
  19. fdt-starfive_jh7110-visionfive-v2.dtb {
  20. description = "Flattened Device Tree blob";
  21. data = /incbin/("./tmp/jh7110-visionfive-v2-starfive-visionfive2.dtb");
  22. type = "flat_dt";
  23. arch = "riscv";
  24. compression = "none";
  25. load = <0x46000000>;
  26. hash-1 {
  27. algo = "sha256";
  28. };
  29. };
  30. ramdisk-1 {
  31. description = "core-image-minimal-initramfs";
  32. data = /incbin/("initramfs.img");
  33. type = "ramdisk";
  34. arch = "riscv";
  35. os = "linux";
  36. compression = "none";
  37. load = <0x46100000>;
  38. entry = <0x46100000>;
  39. hash-1 {
  40. algo = "sha256";
  41. };
  42. };
  43. };
  44. configurations {
  45. default = "conf-starfive_jh7110-visionfive-v2.dtb";
  46. conf-starfive_jh7110-visionfive-v2.dtb {
  47. description = "1 Linux kernel, FDT blob, ramdisk";
  48. kernel = "kernel-1";
  49. fdt = "fdt-starfive_jh7110-visionfive-v2.dtb";
  50. ramdisk = "ramdisk-1";
  51. hash-1 {
  52. algo = "sha256";
  53. };
  54. };
  55. };
  56. };