kernel.its 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. /dts-v1/;
  2. / {
  3. description = "Chrome OS kernel image with one or more FDT blobs";
  4. images {
  5. kernel@1{
  6. description = "kernel";
  7. data = /incbin/("arch/arm/boot/zImage");
  8. type = "kernel_noload";
  9. arch = "arm";
  10. os = "linux";
  11. compression = "none";
  12. load = <0>;
  13. entry = <0>;
  14. };
  15. fdt@1{
  16. description = "rk3288-speedy.dtb";
  17. data = /incbin/("arch/arm/boot/dts/rk3288-speedy.dtb");
  18. type = "flat_dt";
  19. arch = "arm";
  20. compression = "none";
  21. hash@1{
  22. algo = "sha1";
  23. };
  24. };
  25. fdt@2{
  26. description = "rk3288-speedy-rev1.dtb";
  27. data = /incbin/("arch/arm/boot/dts/rk3288-speedy-rev1.dtb");
  28. type = "flat_dt";
  29. arch = "arm";
  30. compression = "none";
  31. hash@1{
  32. algo = "sha1";
  33. };
  34. };
  35. };
  36. configurations {
  37. default = "conf@1";
  38. conf@1{
  39. kernel = "kernel@1";
  40. fdt = "fdt@1";
  41. };
  42. conf@2{
  43. kernel = "kernel@1";
  44. fdt = "fdt@2";
  45. };
  46. };
  47. };