kernel_fdt.its 894 B

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