kernel.its 866 B

12345678910111213141516171819202122232425262728293031323334353637
  1. /dts-v1/;
  2. / {
  3. description = "Buildroot kernel for Chromebook Snow";
  4. images {
  5. kernel@1 {
  6. description = "kernel";
  7. data = /incbin/("zImage");
  8. type = "kernel_noload";
  9. arch = "arm";
  10. os = "linux";
  11. compression = "none";
  12. load = <0>;
  13. entry = <0>;
  14. hash@1 {
  15. algo = "sha1";
  16. };
  17. };
  18. fdt@1{
  19. description = "exynos5250-snow.dtb";
  20. data = /incbin/("exynos5250-snow.dtb");
  21. type = "flat_dt";
  22. arch = "arm";
  23. compression = "none";
  24. hash@1 {
  25. algo = "sha1";
  26. };
  27. };
  28. };
  29. configurations {
  30. default = "conf@1";
  31. conf@1{
  32. kernel = "kernel@1";
  33. fdt = "fdt@1";
  34. };
  35. };
  36. };