multi.its 2.2 KB

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