kernel.its 596 B

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