vmlinux.its.S 550 B

1234567891011121314151617181920212223242526272829303132
  1. /dts-v1/;
  2. / {
  3. description = KERNEL_NAME;
  4. #address-cells = <ADDR_CELLS>;
  5. images {
  6. kernel@0 {
  7. description = KERNEL_NAME;
  8. data = /incbin/(VMLINUX_BINARY);
  9. type = "kernel";
  10. arch = "mips";
  11. os = "linux";
  12. compression = VMLINUX_COMPRESSION;
  13. load = /bits/ ADDR_BITS <VMLINUX_LOAD_ADDRESS>;
  14. entry = /bits/ ADDR_BITS <VMLINUX_ENTRY_ADDRESS>;
  15. hash@0 {
  16. algo = "sha1";
  17. };
  18. };
  19. };
  20. configurations {
  21. default = "conf@default";
  22. conf@default {
  23. description = "Generic Linux kernel";
  24. kernel = "kernel@0";
  25. };
  26. };
  27. };