vmlinux.its.S 583 B

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