fork(1) download
  1. /dts-v1/;
  2.  
  3. / {
  4. description = "Various kernels, ramdisks and FDT blobs";
  5. #address-cells = <1>;
  6.  
  7. images {
  8. kernel-1 {
  9. description = "Kernel-X.10";
  10. data = /incbin/("xyz.bin");
  11. type = "kernel";
  12. arch = "arm64";
  13. os = "linux";
  14. compression = "none";
  15. load = <0x03600000>;
  16. entry = <0x03600000>;
  17. hash-1 {
  18. algo = "sha256";
  19. };
  20. };
  21.  
  22. ramdisk-1 {
  23. description = "ramdisk";
  24. data = /incbin/("yza.cpio.gz");
  25. type = "ramdisk";
  26. arch = "arm64";
  27. os = "linux";
  28. compression = "none";
  29. load = <0x20000000>;
  30. entry = <0x20000000>;
  31. hash-1 {
  32. algo = "sha256";
  33. };
  34. };
  35.  
  36. fdt-1 {
  37. description = "Flattened Device Tree blob";
  38. data = /incbin/("devicetree.dtb");
  39. type = "flat_dt";
  40. arch = "arm64";
  41. compression = "none";
  42. hash-1 {
  43. algo = "sha256";
  44. };
  45. };
  46. };
  47.  
  48. configurations {
  49. default = "config-1";
  50.  
  51. config-1 {
  52. description = "boot configuration";
  53. kernel = "kernel-1";
  54. ramdisk = "ramdisk-1";
  55. fdt = "fdt-1";
  56. rollback-version = <0>;
  57. signature-1 {
  58. algo = "sha256,rsa2048";
  59. sign-images="fdt","kernel","ramdisk";
  60. };
  61. };
  62. };
  63. };
  64.  
Not running #stdin #stdout 0s 0KB
stdin
Standard input is empty
stdout
Standard output is empty