multi.its 2.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129
  1. /*
  2. * U-boot uImage source file with multiple kernels, ramdisks and FDT blobs
  3. */
  4. /dts-v1/;
  5. / {
  6. description = "Various kernels, ramdisks and FDT blobs";
  7. #address-cells = <1>;
  8. images {
  9. kernel@1 {
  10. description = "vanilla-2.6.23";
  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 = "md5";
  20. };
  21. hash@2 {
  22. algo = "sha1";
  23. };
  24. };
  25. kernel@2 {
  26. description = "2.6.23-denx";
  27. data = /incbin/("./2.6.23-denx.bin.gz");
  28. type = "kernel";
  29. arch = "ppc";
  30. os = "linux";
  31. compression = "gzip";
  32. load = <00000000>;
  33. entry = <00000000>;
  34. hash@1 {
  35. algo = "sha1";
  36. };
  37. };
  38. kernel@3 {
  39. description = "2.4.25-denx";
  40. data = /incbin/("./2.4.25-denx.bin.gz");
  41. type = "kernel";
  42. arch = "ppc";
  43. os = "linux";
  44. compression = "gzip";
  45. load = <00000000>;
  46. entry = <00000000>;
  47. hash@1 {
  48. algo = "md5";
  49. };
  50. };
  51. ramdisk@1 {
  52. description = "eldk-4.2-ramdisk";
  53. data = /incbin/("./eldk-4.2-ramdisk");
  54. type = "ramdisk";
  55. arch = "ppc";
  56. os = "linux";
  57. compression = "gzip";
  58. hash@1 {
  59. algo = "sha1";
  60. };
  61. };
  62. ramdisk@2 {
  63. description = "eldk-3.1-ramdisk";
  64. data = /incbin/("./eldk-3.1-ramdisk");
  65. type = "ramdisk";
  66. arch = "ppc";
  67. os = "linux";
  68. compression = "gzip";
  69. hash@1 {
  70. algo = "crc32";
  71. };
  72. };
  73. fdt@1 {
  74. description = "tqm5200-fdt";
  75. data = /incbin/("./tqm5200.dtb");
  76. type = "flat_dt";
  77. arch = "ppc";
  78. compression = "none";
  79. hash@1 {
  80. algo = "crc32";
  81. };
  82. };
  83. fdt@2 {
  84. description = "tqm5200s-fdt";
  85. data = /incbin/("./tqm5200s.dtb");
  86. type = "flat_dt";
  87. arch = "ppc";
  88. compression = "none";
  89. load = <00700000>;
  90. hash@1 {
  91. algo = "sha1";
  92. };
  93. };
  94. };
  95. configurations {
  96. default = "config@1";
  97. config@1 {
  98. description = "tqm5200 vanilla-2.6.23 configuration";
  99. kernel = "kernel@1";
  100. ramdisk = "ramdisk@1";
  101. fdt = "fdt@1";
  102. };
  103. config@2 {
  104. description = "tqm5200s denx-2.6.23 configuration";
  105. kernel = "kernel@2";
  106. ramdisk = "ramdisk@1";
  107. fdt = "fdt@2";
  108. };
  109. config@3 {
  110. description = "tqm5200s denx-2.4.25 configuration";
  111. kernel = "kernel@3";
  112. ramdisk = "ramdisk@2";
  113. };
  114. };
  115. };