kernel.its 608 B

12345678910111213141516171819202122232425262728293031323334353637
  1. /*
  2. * Simple U-boot uImage source file containing a single kernel
  3. */
  4. /dts-v1/;
  5. / {
  6. description = "Simple image with single Linux kernel";
  7. #address-cells = <1>;
  8. images {
  9. kernel@1 {
  10. description = "Vanilla Linux kernel";
  11. data = /incbin/("./vmlinux.bin.gz");
  12. type = "kernel";
  13. arch = "ppc";
  14. os = "linux";
  15. compression = "gzip";
  16. load = <00000000>;
  17. entry = <00000000>;
  18. hash@1 {
  19. algo = "crc32";
  20. };
  21. hash@2 {
  22. algo = "sha1";
  23. };
  24. };
  25. };
  26. configurations {
  27. default = "config@1";
  28. config@1 {
  29. description = "Boot Linux kernel";
  30. kernel = "kernel@1";
  31. };
  32. };
  33. };