chknvm.1 5.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155
  1. .TH chknvm 1 "Mar 2014" "plc-utils-2.1.6" "Qualcomm Atheros Powerline Toolkit"
  2. .SH NAME
  3. chknvm - Qualcomm Atheros PLC Image File Validator
  4. .SH SYNOPSIS
  5. .BR chknvm
  6. .RI [ options ]
  7. .IR file
  8. .RI [ file ]
  9. .RI [ ... ]
  10. .SH DESCRIPTION
  11. Check Aualcomm Atheros HomePlug AV firmware files for obvious errors, including obsolete format, incorrect file size, bad checksums and read errors.
  12. Make no attempt to check any internal information other than firmware header checksums, image lengths and image checksums.
  13. Optionally, display header and image information on stdout.
  14. .PP
  15. This program handles older \fBThunderbolt\fR and \fBLightning\fR and newer \fBPanther\fR and \fBLynx\fR file formats.
  16. This program reads the entire firmware file into memory while performing validation.
  17. Consequently, it is faster than program \fBchknvm1\fR but it consumes more memory at runtime.
  18. .PP
  19. This program is part of the Qualcomm Atheros Powerline Toolkit.
  20. See the \fBAMP\fR man page for an overview and installation instructions.
  21. .SH OPTIONS
  22. .TP
  23. .RB - i
  24. Print revision string identity fields in fixed-width columns.
  25. This option is useful when searching .nvm folders for a specific build.
  26. .TP
  27. .RB - m
  28. Display manifest content, if present.
  29. The manifest is a special module, included in some image chains, that contains useful information about the chain.
  30. This option suppresses the summary 'looks good' message.
  31. .TP
  32. .RB - r
  33. Print firmware revision string on stdout.
  34. This option automatically suppresses the summary 'looks good' message.
  35. .TP
  36. .RB - q
  37. Suppresses printing of routine messages.
  38. Specifically, it suppresses the summary 'looks good' message.
  39. .TP
  40. .RB - v
  41. Print additional information such as the image header for each image processed.
  42. This information can be used to distinguish one firmware file from another, if you know what to look for.
  43. .TP
  44. .RB - ? ,-- help
  45. Print program help summary on stdout.
  46. This option takes precedence over other options on the command line.
  47. .TP
  48. .BR - ! ,-- version
  49. Print program version information on stdout.
  50. This option takes precedence over other options on the command line.
  51. Use this option when sending screen dumps to Atheros Technical Support so that they know exactly which version of the Linux Toolkit you are using.
  52. .SH ARGUMENTS
  53. .TP
  54. .IR file
  55. The name of an Atheros image file.
  56. By convention, Atheros Image files have a \fB.nvm\fR file extension but this program does not enforce this convention.
  57. .SH DISCLAIMER
  58. Qualcomm Atheros firmware file structure and content is proprietary to Qualcomm Atheros, Ocala FL USA.
  59. Consequently, public information is not available.
  60. Qualcomm Atheros reserves the right to change firmware file structure or content or change the name or behavior of any program that inspects or changes firmware files, in future software releases without any obligation to notify or compensate users of such programs.
  61. .SH EXAMPLES
  62. This example reads file abc.nvm and validates it.
  63. The message shown indicates that the file is the correct length, image headers and images have the correct length and checksum and there are no read errors.
  64. The file can be have either the newer or older format.
  65. .PP
  66. # chknvm abc.nvm
  67. abc.nvm looks good
  68. .PP
  69. The following example reads three files in succession and reports on each one.
  70. You can suppress good news with the \fB-q\fR option.
  71. .PP
  72. # chknvm INT6400.nvm AR7400.nvm AR7420.nvm
  73. INT6400.nvm looks good
  74. AR7400.nvm looks good
  75. AR7420.nvm looks good
  76. .PP
  77. This next example prints the firmware revision string found inside older image files.
  78. The option can be used to identify the actual firmware image present when the filename has been changed.
  79. Newer image files have a manifest, instead.
  80. Observe that file \fBAR7420.nvm\fR shows no revision string since it is the newer image format where firmware images are compressed.
  81. .PP
  82. # chknvm -r INT6400.nvm AR7400.nvm AR7420.nvm
  83. INT6400.nvm (3) INT6000-MAC-4-1-4122-01-4020-20100219-FINAL
  84. AR7400.nvm (5) INT7400-MAC-7-0-7011-01-52-20110811-FINAL
  85. .PP
  86. The following example displays the firmware revision strings, from the last example, as fixed width columns.
  87. Observe that the external filename may, in some cases, not reflect the file content.
  88. .PP
  89. # chknvm -i INT6400.nvm AR7400.nvm AR7420.nvm
  90. INT6000 4020 20100219 4.1 INT6400.nvm (3)
  91. INT7400 0052 20110811 7.0 AR7400.nvm (5)
  92. .PP
  93. This example prints the manifest found inside newer firmware files.
  94. This can be used to distinguish firmware files from parameter files, determine exact firmware or parameter file revisions and so forth.
  95. Observe that we specified several files on the command line but only one file, \fBAR7420.nvm\fR, contained a mainfest.
  96. .PP
  97. # chknvm -m INT6400.nvm AR7400.nvm AR7420.nvm
  98. ------- AR7420.nvm (0) -------
  99. Signature: 1234ABCD
  100. Hardware Compatibility: AR74200
  101. Chain Major Version: 0
  102. Chain Minor Version: 1
  103. Chain Type: Firmware
  104. Build Major Version: 0
  105. Build Minor Version: 0
  106. Build Type: Special
  107. Manifest Version: 1
  108. Build Number: 0
  109. Build Date: 20110811
  110. Build Time: 203853
  111. Device Type: 29728
  112. Build Hostname: TOR-SW-SIM04
  113. Build Username: buildbot
  114. Build Description: Custom
  115. Build Version String: AR-7420-FW-0_0-0_2-20110811:203853-buildbot:TOR-SW-SIM04-1-0_1
  116. .SH SEE ALSO
  117. .BR chknvm ( 1 ),
  118. .BR chkpib ( 1 ),
  119. .BR chkpib1 ( 1 ),
  120. .BR chkpib2 ( 1 ),
  121. .BR int6ktest (7),
  122. .BR nvmmerge ( 1 ),
  123. .BR nvmsplit ( 1 ),
  124. .BR plctest ( 7)
  125. .SH CREDITS
  126. Charles Maier <cmaier@qca.qualcomm.com>