kernel.its 567 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. /dts-v1/;
  2. / {
  3. description = "Chrome OS kernel image with FDT";
  4. #address-cells = <1>;
  5. images {
  6. kernel-1 {
  7. data = /incbin/("Image");
  8. type = "kernel_noload";
  9. arch = "arm64";
  10. os = "linux";
  11. compression = "none";
  12. load = <0>;
  13. entry = <0>;
  14. };
  15. fdt-1 {
  16. description = "mt8173-elm.dtb";
  17. data = /incbin/("mt8173-elm.dtb");
  18. type = "flat_dt";
  19. arch = "arm64";
  20. compression = "none";
  21. hash-1 {
  22. algo = "sha1";
  23. };
  24. };
  25. };
  26. configurations {
  27. default = "conf-1";
  28. conf-1 {
  29. kernel = "kernel-1";
  30. fdt = "fdt-1";
  31. };
  32. };
  33. };