kernel.its 931 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. /dts-v1/;
  2. / {
  3. description = "Linux-libre kernel image with one or more FDT blobs";
  4. #address-cells = <1>;
  5. images {
  6. kernel@1 {
  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@1 {
  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. fdt@2 {
  30. description = "dtb";
  31. data = /incbin/("arch/arm/boot/dts/rk3288-veyron-minnie.dtb");
  32. type = "flat_dt";
  33. arch = "arm";
  34. compression = "none";
  35. hash {
  36. algo = "sha1";
  37. };
  38. };
  39. };
  40. configurations {
  41. default = "conf@1";
  42. conf@1{
  43. kernel = "kernel@1";
  44. fdt = "fdt@1";
  45. };
  46. conf@2{
  47. kernel = "kernel@1";
  48. fdt = "fdt@2";
  49. };
  50. };
  51. };