Guest User

Untitled

a guest
Jun 8th, 2023
110
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.57 KB | None | 0 0
  1. /dts-v1/;
  2.  
  3. / {
  4. description = "Chainload Grub EFI";
  5. #address-cells = <1>;
  6.  
  7. images {
  8. grub-efi {
  9. description = "Grub EFI";
  10. data = /incbin/("grub-efi-bootaa64.efi");
  11. type = "kernel_noload";
  12. arch = "arm64";
  13. os = "efi";
  14. compression = "none";
  15. load = <0x06000000>;
  16. entry = <0x06000000>;
  17. hash-1 {
  18. algo = "sha256";
  19. };
  20. };
  21. fdt-rockchip_rk3588-rock-5b.dtb {
  22. description = "Flattened Device Tree blob";
  23. data = /incbin/("rk3588-rock-5b.dtb");
  24. type = "flat_dt";
  25. arch = "arm64";
  26. compression = "none";
  27.  
  28. hash-1 {
  29. algo = "sha256";
  30. };
  31. };
  32. };
  33.  
  34. configurations {
  35. default = "conf-rockchip_rk3588-rock-5b.dtb";
  36. conf-rockchip_rk3588-rock-5b.dtb {
  37. description = "1 Linux kernel, FDT blob";
  38. kernel = "grub-efi";
  39. fdt = "fdt-rockchip_rk3588-rock-5b.dtb";
  40. hash-1 {
  41. algo = "sha256";
  42. };
  43. };
  44. };
  45. };
Advertisement
Add Comment
Please, Sign In to add comment