Advertisement
trini

Joel's example kernel_fdt.its no ramdisk

Jul 8th, 2013
165
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.85 KB | None | 0 0
  1. /dts-v1/;
  2. / {
  3. description = "Simple image with single Linux kernel and FDT blob";
  4. #address-cells = <1>;
  5. images {
  6. kernel@1 {
  7. description = "Vanilla Linux kernel v3.10";
  8. data = /incbin/("./zImage");
  9. type = "kernel";
  10. arch = "arm";
  11. os = "linux";
  12. compression = "none";
  13. load = <0x80008000>;
  14. entry = <0x80008000>;
  15. hash@1 {
  16. algo = "crc32";
  17. };
  18. hash@2 {
  19. algo = "sha1";
  20. };
  21. };
  22. fdt@1 {
  23. description = "Flattened Device Tree blob";
  24. data = /incbin/("./am335x-bone.dtb");
  25. type = "flat_dt";
  26. arch = "arm";
  27. compression = "none";
  28. hash@1 {
  29. algo = "crc32";
  30. };
  31. hash@2 {
  32. algo = "sha1";
  33. };
  34. };
  35. };
  36.  
  37. /* a notable concept of FIT, “configurations” */
  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. };
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement