kernel_fdt.its 886 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. /*
  2. * Simple U-boot uImage source file containing a single kernel and FDT blob
  3. */
  4. / {
  5. description = "Simple image with single Linux kernel and FDT blob";
  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. fdt@1 {
  25. description = "Flattened Device Tree blob";
  26. data = /incbin/("./target.dtb");
  27. type = "flat_dt";
  28. arch = "ppc";
  29. compression = "none";
  30. hash@1 {
  31. algo = "crc32";
  32. };
  33. hash@2 {
  34. algo = "sha1";
  35. };
  36. };
  37. };
  38. configurations {
  39. default = "conf@1";
  40. conf@1 {
  41. description = "Boot Linux kernel with FDT blob";
  42. kernel = "kernel@1";
  43. fdt = "fdt@1";
  44. };
  45. };
  46. };