12345678910111213141516171819202122232425262728293031323334353637383940414243 |
- /*
- * Configuration to load RustSBI before RustSBI Bench Kernel
- */
- /dts-v1/;
- / {
- description = "Configuration to load RustSBI before RustSBI Bench Kernel";
- images {
- kernel {
- description = "rustsbi-bench-kernel";
- data = /incbin/("./rustsbi-bench-kernel.bin");
- type = "standalone";
- os = "u-boot";
- arch = "riscv";
- compression = "none";
- load = /bits/ 64 <0x80200000>;
- };
- rustsbi {
- description = "RustSBI Firmware";
- data = /incbin/("./rustsbi-prototyper.bin");
- type = "firmware";
- os = "opensbi";
- arch = "riscv";
- compression = "none";
- load = /bits/ 64 <0x80100000>;
- entry = /bits/ 64 <0x80100000>;
- };
- };
- configurations {
- default = "conf-1";
- conf-1 {
- description = "RustSBI & RustSBI Bench Kernel";
- firmware = "rustsbi";
- loadables = "kernel";
- };
- };
- };
|