kernel.its 860 B

1234567891011121314151617181920212223242526272829303132333435
  1. /dts-v1/;
  2. / {
  3. description = "Linux kernel image with one or more FDT blobs";
  4. #address-cells = <1>;
  5. images {
  6. kernel@1{
  7. description = "kernel";
  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. };
  16. fdt@1{
  17. description = "rk3288-veyron-speedy.dtb";
  18. data = /incbin/("arch/arm/boot/dts/rk3288-veyron-speedy.dtb");
  19. type = "flat_dt";
  20. arch = "arm";
  21. compression = "none";
  22. hash@1{
  23. algo = "sha1";
  24. };
  25. };
  26. };
  27. configurations {
  28. default = "conf@1";
  29. conf@1{
  30. kernel = "kernel@1";
  31. fdt = "fdt@1";
  32. };
  33. };
  34. };