Patrick Venture | 4d49ae6 | 2018-09-17 11:35:32 -0700 | [diff] [blame] | 1 | #pragma once |
2 | |||||
3 | namespace google | ||||
4 | { | ||||
5 | namespace ipmi | ||||
6 | { | ||||
7 | |||||
8 | enum SysOEMCommands | ||||
9 | { | ||||
10 | // The Sys cable check command. | ||||
11 | SysCableCheck = 0, | ||||
12 | // The Sys cpld version over ipmi command. | ||||
13 | SysCpldVersion = 1, | ||||
14 | // The Sys get eth device command. | ||||
15 | SysGetEthDevice = 2, | ||||
16 | // The Sys psu hard reset command. | ||||
17 | SysPsuHardReset = 3, | ||||
18 | }; | ||||
19 | |||||
20 | } // namespace ipmi | ||||
21 | } // namespace google |