modem_nvm.json 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. {
  2. "_comment": [
  3. "It is the central description about 8850 modem and nvm.",
  4. "",
  5. "Multiple sets of 'cpfilelist' can be defined. For each set of",
  6. "cpfilelist, 'copy_only' means the file will be only copied to",
  7. "modemgen directory, for debug puepose. It won't be included in",
  8. "modem.cpio, and it is not an error that the specified file doesn't",
  9. "exist. Otherwise, it is an error. So, when the file list in modem.cpio",
  10. "is different, an independent set should be defined.",
  11. "",
  12. "'lzma3' means that the file will be stored in blocked compressed",
  13. "files. 'file' is the path in modem.cpio, must be relative path, and",
  14. "related to modem mount point. When target file name is not the",
  15. "same with file name in target, 'local_file' can be specifed. On host,",
  16. "path is related to CP directory."
  17. ],
  18. "lzma_block_size": "0x10000",
  19. "cpfilelist": {
  20. "default": [
  21. {
  22. "file": "mem_index_list",
  23. "local_file": "memory_index_list.bin"
  24. },
  25. {
  26. "file": "cp.bin",
  27. "lzma3": true
  28. },
  29. {
  30. "file": "riscV.bin",
  31. "lzma3": true
  32. },
  33. {
  34. "file": "rev_info.txt",
  35. "copy_only": true
  36. },
  37. {
  38. "file": "cp.axf",
  39. "copy_only": true
  40. }
  41. ]
  42. }
  43. }