image.its.template 981 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  1. /dts-v1/;
  2. / {
  3. description = "Kernel and buildroot image";
  4. #address-cells = <1>;
  5. images {
  6. kernel-1 {
  7. description = "Linux kernel";
  8. data = /incbin/("zImage");
  9. type = "kernel";
  10. arch = "arm";
  11. os = "linux";
  12. compression = "none";
  13. load = <0x80001000>;
  14. entry = <0x80001000>;
  15. hash-1 {
  16. algo = "sha256";
  17. };
  18. };
  19. fdt-1 {
  20. description = "Flattened Device Tree blob";
  21. data = /incbin/("%BOARD_DTB%");
  22. type = "flat_dt";
  23. arch = "arm";
  24. compression = "none";
  25. hash-1 {
  26. algo = "sha256";
  27. };
  28. };
  29. ramdisk-1 {
  30. description = "ramdisk";
  31. data = /incbin/("rootfs.cpio.xz");
  32. type = "ramdisk";
  33. arch = "arm";
  34. os = "linux";
  35. compression = "none";
  36. hash-1 {
  37. algo = "sha256";
  38. };
  39. };
  40. };
  41. configurations {
  42. default = "conf-1";
  43. conf-1 {
  44. description = "Boot Linux kernel with FDT blob, ramdisk";
  45. kernel = "kernel-1";
  46. fdt = "fdt-1";
  47. ramdisk = "ramdisk-1";
  48. hash-1 {
  49. algo = "sha256";
  50. };
  51. };
  52. };
  53. };