multi.its 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  1. /*
  2. * U-Boot uImage source file with multiple kernels, ramdisks and FDT blobs
  3. */
  4. /dts-v1/;
  5. / {
  6. description = "Various kernels, ramdisks and FDT blobs";
  7. #address-cells = <2>;
  8. images {
  9. kernel-1 {
  10. description = "cvitek kernel";
  11. data = /incbin/("./Image.lzma");
  12. type = "kernel";
  13. arch = "riscv";
  14. os = "linux";
  15. compression = "lzma";
  16. load = <0x0 0x80200000>;
  17. entry = <0x0 0x80200000>;
  18. hash-2 {
  19. algo = "crc32";
  20. };
  21. };
  22. /*FDT*/
  23. fdt-cv1800b_milkv_duo_sd {
  24. description = "cvitek device tree - cv1800b_milkv_duo_sd";
  25. data = /incbin/("./cv1800b_milkv_duo_sd.dtb");
  26. type = "flat_dt";
  27. arch = "riscv";
  28. compression = "none";
  29. hash-1 {
  30. algo = "sha256";
  31. };
  32. };
  33. };
  34. /*CFG*/
  35. configurations {
  36. config-cv1800b_milkv_duo_sd {
  37. description = "boot cvitek system with board cv1800b_milkv_duo_sd";
  38. kernel = "kernel-1";
  39. fdt = "fdt-cv1800b_milkv_duo_sd";
  40. };
  41. };
  42. };