multi.rst 3.7 KB

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