Guest User

Untitled

a guest
Jul 1st, 2020
52
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.44 KB | None | 0 0
  1. D:\>SMCO64.exe -?
  2.  
  3. SMCO64, Version 5.0.0.0 (WIN64)
  4. Buildtime Mar 20 2018 17:18:36
  5.  
  6.  
  7. SMCO64.exe is a WIN64 program which reads board-specific SMCO data
  8. from an input file and writes them to the Manufacturing Data Area
  9. of the board.
  10. The SMCO (System Manufacturing Configuration Override) data are used
  11. by the BIOS during POST to configure the board's temperature sensors.
  12.  
  13.  
  14. Usage: SMCO64 [-?] [-Verbose]
  15. [-Read] [-Write] [-Delete]
  16. [-File=<file>] [-Board=<boardid>]
  17. [-Mode=<mode>] [-PlainData]
  18. [-DebugFile=<file>]
  19.  
  20. -? This usage message.
  21. -Verbose Produce more output during program execution.
  22.  
  23. -Read Read SMCO data from Manufacturing Data Area and dump the data.
  24. -Delete Delete SMCO data from Manufacturing Data Area.
  25. -Write Write SMCO data read from input file to Manufacturing Data Area.
  26.  
  27. -File=<file>
  28. Specifies the name of the input file which contains the SMCO data.
  29. Defaults to 'SMCO.in'.
  30.  
  31. -Board=<boardid>
  32. The input file may contain sections with SMCO data blocks
  33. for different boards. The section names are the corresponding
  34. Board ID's (e.g. [D1234]).
  35. SMCO64 will use the environment variable 'BOARDID'.
  36. Specifying this command line argument will override that value.
  37. If the section with the given Board ID is not present in the
  38. input file, the 'anonymous' section (a data block before the
  39. first given section name) is used.
  40. If no suitable section is present, an error will be returned.
  41.  
  42. -DebugFile=<file>
  43. The file <file> is used as storage medium instead of the
  44. Manufacturing Data Area. Used for debugging purposes.
  45.  
  46. -Mode=<mode>
  47. Sets the storage mode to <mode>, where <mode> must either be 'BMC1'
  48. or 'BMC2' (the default). The mode should normally not be changed.
  49. However, this argument might be necessary on very old boards
  50. with BIOS versions which cannot handle BMC2 type data.
  51.  
  52. -PlainData
  53. The program will write a UEFI Data Item structure with the
  54. 'Plain-Data' bit set. The payload data will then follow up
  55. directly after the structure's Header data.
  56. If this command line option is not present, the payload data
  57. will be provided within a Data Record structure following
  58. the Header data.
  59.  
  60.  
  61. Remarks
  62. -------
  63. Only one of '-Read', '-Delete' or '-Write' may be used per program invocation.
  64. The argument prefix '-' or '/' may be omitted.
  65.  
  66.  
  67. Return values
  68. -------------
  69. 0 (0x00) Everything worked fine.
  70. 1 (0x01) A syntax error on the command line has been detected.
  71. 2 (0x02) Currently not used.
  72. 3 (0x03) No suitable BIOS interface found.
  73. 4 (0x04) Could not connect to BIOS interface.
  74. 5 (0x05) Could not read the input file properly.
  75. 6 (0x06) Manufacturing Data Area is full.
  76. 7 (0x07) Could not write data to Manufacturing Data Area.
  77. 8 (0x08) Currently not used.
  78. 9 (0x09) Could not read data from Manufacturing Data Area.
  79. 10 (0x0A) Could not delete data in Manufacturing Data Area.
  80. 255 (0xFF) An error with currently unknown reason occurred.
  81.  
  82.  
  83. Returning 0 (0x0)
  84.  
  85.  
  86. D:\>SMCO64.exe -read
  87.  
  88. SMCO64, Version 5.0.0.0 (WIN64)
  89. Buildtime Mar 20 2018 17:18:36
  90.  
  91. BiosIf::Connect() returned 1
  92.  
  93. Returning 4 (0x4)
  94.  
  95.  
  96. D:\>
Advertisement
Add Comment
Please, Sign In to add comment