kernel.its 659 B

123456789101112131415161718192021222324252627282930313233343536373839
  1. /dts-v1/;
  2. / {
  3. description = "Linux-libre kernel image with one or more FDT blobs";
  4. #address-cells = <1>;
  5. images {
  6. kernel {
  7. description = "vmlinuz";
  8. data = /incbin/("arch/arm/boot/zImage");
  9. type = "kernel_noload";
  10. arch = "arm";
  11. os = "linux";
  12. compression = "none";
  13. load = <0>;
  14. entry = <0>;
  15. hash {
  16. algo = "sha1";
  17. };
  18. };
  19. fdt {
  20. description = "dtb";
  21. data = /incbin/("arch/arm/boot/dts/rk3288-veyron-speedy.dtb");
  22. type = "flat_dt";
  23. arch = "arm";
  24. compression = "none";
  25. hash {
  26. algo = "sha1";
  27. };
  28. };
  29. };
  30. configurations {
  31. default = "conf";
  32. conf{
  33. kernel = "kernel";
  34. fdt = "fdt";
  35. };
  36. };
  37. };