fork download
  1. /dts-v1/;
  2.  
  3. / {
  4. description = "";
  5. #address-cells = <1>;
  6.  
  7. images {
  8. kernel-1 {
  9. description = "Linux kernel";
  10. data = /incbin/("linux.bin");
  11. type = "kernel";
  12. arch = "arm64";
  13. os = "linux";
  14. compression = "none";
  15. load = <0x3600000>;
  16. entry = <0x3600000>;
  17. hash-1 {
  18. algo = "sha512";
  19. };
  20. };
  21. ramdisk-1 {
  22. description = "";
  23. data = /incbin/("xyz.cpio.gz");
  24. type = "ramdisk";
  25. arch = "arm64";
  26. os = "linux";
  27. compression = "none";
  28. hash-1 {
  29. algo = "sha512";
  30. };
  31. };
  32. };
  33. configurations {
  34. default = "conf-1";
  35. conf-1 {
  36. description = "1 Linux kernel, ramdisk";
  37. kernel = "kernel-1";
  38.  
  39. ramdisk = "ramdisk-1";
  40.  
  41.  
  42. hash-1 {
  43. algo = "sha512";
  44. };
  45. signature-1 {
  46. algo = "sha512,ecdsa521";
  47. key-name-hint = "linux_key.pem";
  48. sign-images = "kernel", "ramdisk";
  49. };
  50. };
  51. };
  52. };
  53.  
  54.  
Not running #stdin #stdout 0s 0KB
stdin
Standard input is empty
stdout
Standard output is empty