4
0

rustsbi-test-kernel.its 881 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. /*
  2. * Configuration to load RustSBI before RustSBI Test Kernel
  3. */
  4. /dts-v1/;
  5. / {
  6. description = "Configuration to load RustSBI before RustSBI Test Kernel";
  7. images {
  8. kernel {
  9. description = "rustsbi-test-kernel";
  10. data = /incbin/("./rustsbi-test-kernel.bin");
  11. type = "standalone";
  12. os = "u-boot";
  13. arch = "riscv";
  14. compression = "none";
  15. load = /bits/ 64 <0x80200000>;
  16. };
  17. rustsbi {
  18. description = "RustSBI Firmware";
  19. data = /incbin/("./rustsbi-prototyper.bin");
  20. type = "firmware";
  21. os = "opensbi";
  22. arch = "riscv";
  23. compression = "none";
  24. load = /bits/ 64 <0x80100000>;
  25. entry = /bits/ 64 <0x80100000>;
  26. };
  27. };
  28. configurations {
  29. default = "conf-1";
  30. conf-1 {
  31. description = "RustSBI & RustSBI Test Kernel";
  32. firmware = "rustsbi";
  33. loadables = "kernel";
  34. };
  35. };
  36. };