George Keishing | fbeaecc | 2016-08-16 05:24:31 -0500 | [diff] [blame] | 1 | import os |
| 2 | |
Sweta Potthuri | daf9134 | 2017-09-07 12:05:56 -0500 | [diff] [blame] | 3 | OPENBMC_BASE_URI = '/xyz/openbmc_project/' |
| 4 | OPENBMC_BASE_DBUS = 'xyz.openbmc_project.' |
George Keishing | cf91044 | 2016-12-08 03:12:59 -0600 | [diff] [blame] | 5 | |
George Keishing | cae6e90 | 2017-09-07 13:35:59 -0500 | [diff] [blame] | 6 | # org open power base URI. |
| 7 | OPENPOWER_BASE_URI = '/org/open_power/' |
| 8 | OPENPOWER_CONTROL = OPENPOWER_BASE_URI + 'control/' |
George Keishing | ac51225 | 2018-02-05 02:04:30 -0600 | [diff] [blame] | 9 | OPENPOWER_SENSORS = OPENPOWER_BASE_URI + 'sensors/' |
George Keishing | cae6e90 | 2017-09-07 13:35:59 -0500 | [diff] [blame] | 10 | |
| 11 | # REST URI base endpoint paths. |
George Keishing | cf91044 | 2016-12-08 03:12:59 -0600 | [diff] [blame] | 12 | CONTROL_URI = OPENBMC_BASE_URI + 'control/' |
George Keishing | 0da47e9 | 2017-10-23 02:22:29 -0500 | [diff] [blame] | 13 | # old vs new code dependencies in many places. |
| 14 | # TODO: remove when ready. |
| 15 | SETTINGS_URI = '/org/openbmc/settings/' |
George Keishing | cf91044 | 2016-12-08 03:12:59 -0600 | [diff] [blame] | 16 | WATCHDOG_URI = OPENBMC_BASE_URI + 'watchdog/' |
Sweta Potthuri | daf9134 | 2017-09-07 12:05:56 -0500 | [diff] [blame] | 17 | TIME_MANAGER_URI = OPENBMC_BASE_URI + 'time/' |
manasarm | 104cc6b | 2018-02-07 12:35:05 +0530 | [diff] [blame] | 18 | NETWORK_MANAGER = OPENBMC_BASE_URI + 'network/' |
Prashanth Katti | 081b3d9 | 2018-06-15 05:13:11 -0500 | [diff] [blame] | 19 | # SNMP |
| 20 | SNMP_MANAGER_URI = NETWORK_MANAGER + 'snmp/manager/' |
George Keishing | 0657247 | 2017-09-01 11:33:01 -0500 | [diff] [blame] | 21 | # Sensors base variables. |
Gunnar Mills | dca3579 | 2018-03-26 10:05:38 -0500 | [diff] [blame] | 22 | SENSORS_URI = OPENBMC_BASE_URI + 'sensors/' |
George Keishing | 0657247 | 2017-09-01 11:33:01 -0500 | [diff] [blame] | 23 | |
Sweta Potthuri | daf9134 | 2017-09-07 12:05:56 -0500 | [diff] [blame] | 24 | # State Manager base variables |
Rahul Maheshwari | 2f8de6c | 2017-01-17 07:00:22 -0600 | [diff] [blame] | 25 | BMC_REBOOT_TRANS = 'xyz.openbmc_project.State.BMC.Transition.Reboot' |
| 26 | |
George Keishing | bec365b | 2017-01-19 01:28:41 -0600 | [diff] [blame] | 27 | HOST_POWEROFF_TRANS = 'xyz.openbmc_project.State.Host.Transition.Off' |
| 28 | HOST_POWERON_TRANS = 'xyz.openbmc_project.State.Host.Transition.On' |
Rahul Maheshwari | f7ead24 | 2017-02-14 01:59:42 -0600 | [diff] [blame] | 29 | HOST_REBOOT_TRANS = 'xyz.openbmc_project.State.Host.Transition.Reboot' |
George Keishing | bec365b | 2017-01-19 01:28:41 -0600 | [diff] [blame] | 30 | HOST_POWEROFF_STATE = 'xyz.openbmc_project.State.Host.HostState.Off' |
| 31 | HOST_POWERON_STATE = 'xyz.openbmc_project.State.Host.HostState.Running' |
| 32 | |
| 33 | CHASSIS_POWEROFF_TRANS = 'xyz.openbmc_project.State.Chassis.Transition.Off' |
| 34 | CHASSIS_POWERON_TRANS = 'xyz.openbmc_project.State.Chassis.Transition.On' |
| 35 | CHASSIS_POWEROFF_STATE = 'xyz.openbmc_project.State.Chassis.PowerState.Off' |
| 36 | CHASSIS_POWERON_STATE = 'xyz.openbmc_project.State.Chassis.PowerState.On' |
| 37 | |
| 38 | # State Manager URI variables. |
Sweta Potthuri | daf9134 | 2017-09-07 12:05:56 -0500 | [diff] [blame] | 39 | SYSTEM_STATE_URI = OPENBMC_BASE_URI + 'state/' |
| 40 | BMC_STATE_URI = OPENBMC_BASE_URI + 'state/bmc0/' |
| 41 | HOST_STATE_URI = OPENBMC_BASE_URI + 'state/host0/' |
| 42 | CHASSIS_STATE_URI = OPENBMC_BASE_URI + 'state/chassis0/' |
| 43 | HOST_WATCHDOG_URI = OPENBMC_BASE_URI + 'watchdog/host0/' |
George Keishing | bec365b | 2017-01-19 01:28:41 -0600 | [diff] [blame] | 44 | |
George Keishing | 505d5b4 | 2017-02-21 11:01:54 -0600 | [diff] [blame] | 45 | # Logging URI variables |
Sweta Potthuri | daf9134 | 2017-09-07 12:05:56 -0500 | [diff] [blame] | 46 | BMC_LOGGING_URI = OPENBMC_BASE_URI + 'logging/' |
George Keishing | a71dd20 | 2017-02-24 00:49:40 -0600 | [diff] [blame] | 47 | BMC_LOGGING_ENTRY = BMC_LOGGING_URI + 'entry/' |
George Keishing | 505d5b4 | 2017-02-21 11:01:54 -0600 | [diff] [blame] | 48 | |
George Keishing | ab5157b | 2017-02-09 12:24:25 -0600 | [diff] [blame] | 49 | # Software manager version |
Sweta Potthuri | daf9134 | 2017-09-07 12:05:56 -0500 | [diff] [blame] | 50 | SOFTWARE_VERSION_URI = OPENBMC_BASE_URI + 'software/' |
George Keishing | ab5157b | 2017-02-09 12:24:25 -0600 | [diff] [blame] | 51 | ACTIVE = 'xyz.openbmc_project.Software.Activation.Activations.Active' |
Saqib Khan | bb8b63f | 2017-05-24 10:58:01 -0500 | [diff] [blame] | 52 | READY = 'xyz.openbmc_project.Software.Activation.Activations.Ready' |
| 53 | INVALID = 'xyz.openbmc_project.Software.Activation.Activations.Invalid' |
| 54 | ACTIVATING = 'xyz.openbmc_project.Software.Activation.Activations.Activating' |
| 55 | NOTREADY = 'xyz.openbmc_project.Software.Activation.Activations.NotReady' |
| 56 | FAILED = 'xyz.openbmc_project.Software.Activation.Activations.Failed' |
| 57 | |
| 58 | SOFTWARE_ACTIVATION = 'xyz.openbmc_project.Software.Activation' |
George Keishing | 4af8f36 | 2017-10-23 00:26:58 -0500 | [diff] [blame] | 59 | REQUESTED_ACTIVATION = SOFTWARE_ACTIVATION + '.RequestedActivations' |
| 60 | REQUESTED_ACTIVE = REQUESTED_ACTIVATION + '.Active' |
Saqib Khan | bb8b63f | 2017-05-24 10:58:01 -0500 | [diff] [blame] | 61 | REQUESTED_NONE = REQUESTED_ACTIVATION + '.None' |
| 62 | |
| 63 | SOFTWARE_PURPOSE = 'xyz.openbmc_project.Software.Version.VersionPurpose' |
| 64 | VERSION_PURPOSE_HOST = SOFTWARE_PURPOSE + '.Host' |
| 65 | VERSION_PURPOSE_BMC = SOFTWARE_PURPOSE + '.BMC' |
| 66 | VERSION_PURPOSE_SYSTEM = SOFTWARE_PURPOSE + '.System' |
George Keishing | ab5157b | 2017-02-09 12:24:25 -0600 | [diff] [blame] | 67 | |
Charles Paul Hofer | 9f74d3a | 2017-08-18 09:54:28 -0500 | [diff] [blame] | 68 | # Image Upload Directory Path |
| 69 | IMAGE_UPLOAD_DIR_PATH = '/tmp/images/' |
| 70 | |
George Keishing | c8166ed | 2017-02-24 03:53:38 -0600 | [diff] [blame] | 71 | # Inventory URI |
Sweta Potthuri | daf9134 | 2017-09-07 12:05:56 -0500 | [diff] [blame] | 72 | HOST_INVENTORY_URI = OPENBMC_BASE_URI + 'inventory/' |
George Keishing | c8166ed | 2017-02-24 03:53:38 -0600 | [diff] [blame] | 73 | |
Rahul Maheshwari | 7258aec | 2017-02-02 04:46:38 -0600 | [diff] [blame] | 74 | # Led URI variable |
Sweta Potthuri | daf9134 | 2017-09-07 12:05:56 -0500 | [diff] [blame] | 75 | LED_GROUPS_URI = OPENBMC_BASE_URI + 'led/groups/' |
| 76 | LED_PHYSICAL_URI = OPENBMC_BASE_URI + 'led/physical/' |
Rahul Maheshwari | 7258aec | 2017-02-02 04:46:38 -0600 | [diff] [blame] | 77 | |
George Keishing | 1059b22 | 2017-07-21 13:24:43 -0500 | [diff] [blame] | 78 | # Host control URI variables. |
Sweta Potthuri | daf9134 | 2017-09-07 12:05:56 -0500 | [diff] [blame] | 79 | CONTROL_HOST_URI = OPENBMC_BASE_URI + 'control/host0/' |
Rahul Maheshwari | 7258aec | 2017-02-02 04:46:38 -0600 | [diff] [blame] | 80 | |
George Keishing | 1c3a966 | 2017-08-11 10:16:36 -0500 | [diff] [blame] | 81 | # Power restore variables. |
| 82 | POWER_RESTORE_URI = CONTROL_HOST_URI + 'power_restore_policy' |
| 83 | CONTROL_DBUS_BASE = 'xyz.openbmc_project.Control.' |
| 84 | |
| 85 | RESTORE_LAST_STATE = CONTROL_DBUS_BASE + 'Power.RestorePolicy.Policy.Restore' |
| 86 | ALWAYS_POWER_ON = CONTROL_DBUS_BASE + 'Power.RestorePolicy.Policy.AlwaysOn' |
| 87 | ALWAYS_POWER_OFF = CONTROL_DBUS_BASE + 'Power.RestorePolicy.Policy.AlwaysOff' |
| 88 | |
Sweta Potthuri | 09a3cf9 | 2017-12-08 01:19:53 -0600 | [diff] [blame] | 89 | # Dump URI variables. |
Gunnar Mills | dca3579 | 2018-03-26 10:05:38 -0500 | [diff] [blame] | 90 | DUMP_URI = OPENBMC_BASE_URI + '/dump/' |
Rahul Maheshwari | 23b18fb | 2017-08-01 00:30:26 -0500 | [diff] [blame] | 91 | DUMP_ENTRY_URI = DUMP_URI + 'entry/' |
Michael Walsh | e11a136 | 2017-10-19 15:35:26 -0500 | [diff] [blame] | 92 | # The path on the BMC where dumps are stored. |
| 93 | DUMP_DIR_PATH = "/var/lib/phosphor-debug-collector/dumps/" |
Rahul Maheshwari | 23b18fb | 2017-08-01 00:30:26 -0500 | [diff] [blame] | 94 | |
George Keishing | 2bd6fc0 | 2017-08-10 01:15:16 -0500 | [diff] [blame] | 95 | # Boot progress variables. |
| 96 | STATE_DBUS_BASE = 'xyz.openbmc_project.State.' |
| 97 | OS_BOOT_START = STATE_DBUS_BASE + 'Boot.Progress.ProgressStages.OSStart' |
| 98 | OS_BOOT_OFF = STATE_DBUS_BASE + 'Boot.Progress.ProgressStages.Unspecified' |
Sweta Potthuri | 09a3cf9 | 2017-12-08 01:19:53 -0600 | [diff] [blame] | 99 | OS_BOOT_PCI = STATE_DBUS_BASE + 'Boot.Progress.ProgressStages.PCIInit' |
| 100 | OS_BOOT_SECPCI = STATE_DBUS_BASE + \ |
Gunnar Mills | dca3579 | 2018-03-26 10:05:38 -0500 | [diff] [blame] | 101 | 'Boot.Progress.ProgressStages.SecondaryProcInit' |
Sweta Potthuri | 09a3cf9 | 2017-12-08 01:19:53 -0600 | [diff] [blame] | 102 | OS_BOOT_MEM = STATE_DBUS_BASE + 'Boot.Progress.ProgressStages.MemoryInit' |
| 103 | OS_BOOT_MOTHERBOARD = STATE_DBUS_BASE + \ |
Gunnar Mills | dca3579 | 2018-03-26 10:05:38 -0500 | [diff] [blame] | 104 | 'Boot.Progress.ProgressStages.MotherboardInit' |
Sweta Potthuri | 09a3cf9 | 2017-12-08 01:19:53 -0600 | [diff] [blame] | 105 | |
| 106 | # OperatingSystem status variables. |
Gunnar Mills | dca3579 | 2018-03-26 10:05:38 -0500 | [diff] [blame] | 107 | OS_BOOT_COMPLETE = STATE_DBUS_BASE + \ |
| 108 | 'OperatingSystem.Status.OSStatus.BootComplete' |
| 109 | OS_BOOT_CDROM = STATE_DBUS_BASE + 'OperatingSystem.Status.OSStatus.CDROMBoot' |
Sweta Potthuri | 09a3cf9 | 2017-12-08 01:19:53 -0600 | [diff] [blame] | 110 | OS_BOOT_ROM = STATE_DBUS_BASE + 'OperatingSystem.Status.OSStatus.ROMBoot' |
| 111 | OS_BOOT_PXE = STATE_DBUS_BASE + 'OperatingSystem.Status.OSStatus.PXEBoot' |
| 112 | OS_BOOT_CBoot = STATE_DBUS_BASE + 'OperatingSystem.Status.OSStatus.CBoot' |
| 113 | OS_BOOT_DiagBoot = STATE_DBUS_BASE + 'OperatingSystem.Status.OSStatus.DiagBoot' |
George Keishing | 2bd6fc0 | 2017-08-10 01:15:16 -0500 | [diff] [blame] | 114 | |
Rahul Maheshwari | 85c4d34 | 2017-08-09 21:59:30 -0500 | [diff] [blame] | 115 | # Boot variables. |
| 116 | BOOT_SOURCE_DEFAULT = 'xyz.openbmc_project.Control.Boot.Source.Sources.Default' |
| 117 | BOOT_SOURCE_NETWORK = 'xyz.openbmc_project.Control.Boot.Source.Sources.Network' |
| 118 | BOOT_SOURCE_DISK = 'xyz.openbmc_project.Control.Boot.Source.Sources.Disk' |
| 119 | BOOT_SOURCE_CDROM = 'xyz.openbmc_project.Control.Boot.Source.Sources.ExternalMedia' |
| 120 | BOOT_MODE_SAFE = 'xyz.openbmc_project.Control.Boot.Mode.Modes.Safe' |
| 121 | BOOT_MODE_SETUP = 'xyz.openbmc_project.Control.Boot.Mode.Modes.Setup' |
| 122 | BOOT_MODE_REGULAR = 'xyz.openbmc_project.Control.Boot.Mode.Modes.Regular' |
| 123 | |
Rahul Maheshwari | f486ae8 | 2017-10-24 06:10:14 -0500 | [diff] [blame] | 124 | # Time variables. |
| 125 | TIME_DBUS_BASE = 'xyz.openbmc_project.Time.' |
| 126 | BMC_OWNER = TIME_DBUS_BASE + 'Owner.Owners.BMC' |
| 127 | HOST_OWNER = TIME_DBUS_BASE + 'Owner.Owners.Host' |
| 128 | SPLIT_OWNER = TIME_DBUS_BASE + 'Owner.Owners.Split' |
| 129 | BOTH_OWNER = TIME_DBUS_BASE + 'Owner.Owners.Both' |
| 130 | NTP_MODE = TIME_DBUS_BASE + 'Synchronization.Method.NTP' |
| 131 | MANUAL_MODE = TIME_DBUS_BASE + 'Synchronization.Method.Manual' |
| 132 | |
George Keishing | f133167 | 2018-01-18 05:19:02 -0600 | [diff] [blame] | 133 | # User manager variable. |
| 134 | BMC_USER_URI = OPENBMC_BASE_URI + 'user/' |
| 135 | |
George Keishing | 0b83743 | 2018-03-20 13:46:10 -0500 | [diff] [blame] | 136 | # The path on the BMC where signed keys are stored. |
| 137 | ACTIVATION_DIR_PATH = "/etc/activationdata/" |
| 138 | |
George Keishing | eaa73b7 | 2018-07-30 09:30:16 -0500 | [diff] [blame] | 139 | # Redfish variables. |
| 140 | REDFISH_BASE_URI = '/redfish/v1/' |
| 141 | REDFISH_SESSION = REDFISH_BASE_URI + 'SessionService/Sessions' |
George Keishing | 9cef109 | 2018-08-06 01:06:24 -0500 | [diff] [blame] | 142 | REDFISH_SESSION_URI = 'SessionService/Sessions/' |
George Keishing | eaa73b7 | 2018-07-30 09:30:16 -0500 | [diff] [blame] | 143 | |
George Keishing | 6a514ef | 2018-08-27 05:19:19 -0500 | [diff] [blame] | 144 | # rsyslog variables. |
| 145 | REMOTE_LOGGING_URI = OPENBMC_BASE_URI + 'logging/config/remote/' |
| 146 | |
Rahul Maheshwari | 984791c | 2018-09-21 00:49:37 -0500 | [diff] [blame] | 147 | # Certificate variables. |
| 148 | SERVER_CERTIFICATE_URI = OPENBMC_BASE_URI + 'certs/server/https' |
| 149 | CLIENT_CERTIFICATE_URI = OPENBMC_BASE_URI + 'certs/client/ldap' |
Rahul Maheshwari | 081eadb | 2018-10-26 03:11:10 -0500 | [diff] [blame] | 150 | CA_CERTIFICATE_URI = OPENBMC_BASE_URI + 'certs/authority/ldap' |
Rahul Maheshwari | 984791c | 2018-09-21 00:49:37 -0500 | [diff] [blame] | 151 | |
George Keishing | fbeaecc | 2016-08-16 05:24:31 -0500 | [diff] [blame] | 152 | ''' |
| 153 | QEMU HTTPS variable: |
| 154 | |
| 155 | By default lib/resource.txt AUTH URI construct is as |
| 156 | ${AUTH_URI} https://${OPENBMC_HOST}${AUTH_SUFFIX} |
| 157 | ${AUTH_SUFFIX} is populated here by default EMPTY else |
| 158 | the port from the OS environment |
| 159 | ''' |
George Keishing | cf91044 | 2016-12-08 03:12:59 -0600 | [diff] [blame] | 160 | |
| 161 | |
George Keishing | fbeaecc | 2016-08-16 05:24:31 -0500 | [diff] [blame] | 162 | def get_port_https(): |
| 163 | # defaulted to empty string |
| 164 | l_suffix = '' |
| 165 | try: |
| 166 | l_https_port = os.getenv('HTTPS_PORT') |
| 167 | if l_https_port: |
George Keishing | cf91044 | 2016-12-08 03:12:59 -0600 | [diff] [blame] | 168 | l_suffix = ':' + l_https_port |
Joy Onyerikwu | 004ad3c | 2018-06-11 16:29:56 -0500 | [diff] [blame] | 169 | except BaseException: |
George Keishing | 3b7115a | 2018-08-02 10:48:17 -0500 | [diff] [blame] | 170 | print ("Environment variable HTTPS_PORT not set,\ |
| 171 | using default HTTPS port") |
George Keishing | fbeaecc | 2016-08-16 05:24:31 -0500 | [diff] [blame] | 172 | return l_suffix |
| 173 | |
Gunnar Mills | dca3579 | 2018-03-26 10:05:38 -0500 | [diff] [blame] | 174 | |
George Keishing | cf91044 | 2016-12-08 03:12:59 -0600 | [diff] [blame] | 175 | AUTH_SUFFIX = { |
| 176 | "https_port": [get_port_https()], |
George Keishing | fbeaecc | 2016-08-16 05:24:31 -0500 | [diff] [blame] | 177 | } |
| 178 | |
| 179 | # Update the ':Port number' to this variable |
| 180 | AUTH_SUFFIX = AUTH_SUFFIX['https_port'][0] |
Chris Austen | b29d2e8 | 2016-06-07 12:25:35 -0500 | [diff] [blame] | 181 | |
| 182 | # Here contains a list of valid Properties bases on fru_type after a boot. |
George Keishing | cf91044 | 2016-12-08 03:12:59 -0600 | [diff] [blame] | 183 | INVENTORY_ITEMS = { |
Chris Austen | b29d2e8 | 2016-06-07 12:25:35 -0500 | [diff] [blame] | 184 | "CPU": [ |
| 185 | "Custom Field 1", |
| 186 | "Custom Field 2", |
| 187 | "Custom Field 3", |
| 188 | "Custom Field 4", |
| 189 | "Custom Field 5", |
| 190 | "Custom Field 6", |
| 191 | "Custom Field 7", |
| 192 | "Custom Field 8", |
| 193 | "FRU File ID", |
| 194 | "Manufacturer", |
| 195 | "Name", |
| 196 | "Part Number", |
| 197 | "Serial Number", |
| 198 | "fault", |
| 199 | "fru_type", |
| 200 | "is_fru", |
| 201 | "present", |
| 202 | "version", |
Gunnar Mills | dca3579 | 2018-03-26 10:05:38 -0500 | [diff] [blame] | 203 | ], |
Chris Austen | b29d2e8 | 2016-06-07 12:25:35 -0500 | [diff] [blame] | 204 | |
| 205 | "DIMM": [ |
| 206 | "Asset Tag", |
| 207 | "Custom Field 1", |
| 208 | "Custom Field 2", |
| 209 | "Custom Field 3", |
| 210 | "Custom Field 4", |
| 211 | "Custom Field 5", |
| 212 | "Custom Field 6", |
| 213 | "Custom Field 7", |
| 214 | "Custom Field 8", |
| 215 | "FRU File ID", |
| 216 | "Manufacturer", |
| 217 | "Model Number", |
| 218 | "Name", |
| 219 | "Serial Number", |
| 220 | "Version", |
| 221 | "fault", |
| 222 | "fru_type", |
| 223 | "is_fru", |
| 224 | "present", |
| 225 | "version", |
Gunnar Mills | dca3579 | 2018-03-26 10:05:38 -0500 | [diff] [blame] | 226 | ], |
Chris Austen | b29d2e8 | 2016-06-07 12:25:35 -0500 | [diff] [blame] | 227 | "MEMORY_BUFFER": [ |
| 228 | "Custom Field 1", |
| 229 | "Custom Field 2", |
| 230 | "Custom Field 3", |
| 231 | "Custom Field 4", |
| 232 | "Custom Field 5", |
| 233 | "Custom Field 6", |
| 234 | "Custom Field 7", |
| 235 | "Custom Field 8", |
| 236 | "FRU File ID", |
| 237 | "Manufacturer", |
| 238 | "Name", |
| 239 | "Part Number", |
| 240 | "Serial Number", |
| 241 | "fault", |
| 242 | "fru_type", |
| 243 | "is_fru", |
| 244 | "present", |
| 245 | "version", |
Gunnar Mills | dca3579 | 2018-03-26 10:05:38 -0500 | [diff] [blame] | 246 | ], |
Chris Austen | b29d2e8 | 2016-06-07 12:25:35 -0500 | [diff] [blame] | 247 | "FAN": [ |
| 248 | "fault", |
| 249 | "fru_type", |
| 250 | "is_fru", |
| 251 | "present", |
| 252 | "version", |
Gunnar Mills | dca3579 | 2018-03-26 10:05:38 -0500 | [diff] [blame] | 253 | ], |
Chris Austen | b29d2e8 | 2016-06-07 12:25:35 -0500 | [diff] [blame] | 254 | "DAUGHTER_CARD": [ |
| 255 | "Custom Field 1", |
| 256 | "Custom Field 2", |
| 257 | "Custom Field 3", |
| 258 | "Custom Field 4", |
| 259 | "Custom Field 5", |
| 260 | "Custom Field 6", |
| 261 | "Custom Field 7", |
| 262 | "Custom Field 8", |
| 263 | "FRU File ID", |
| 264 | "Manufacturer", |
| 265 | "Name", |
| 266 | "Part Number", |
| 267 | "Serial Number", |
| 268 | "fault", |
| 269 | "fru_type", |
| 270 | "is_fru", |
| 271 | "present", |
| 272 | "version", |
Gunnar Mills | dca3579 | 2018-03-26 10:05:38 -0500 | [diff] [blame] | 273 | ], |
Chris Austen | b29d2e8 | 2016-06-07 12:25:35 -0500 | [diff] [blame] | 274 | "BMC": [ |
| 275 | "fault", |
| 276 | "fru_type", |
| 277 | "is_fru", |
| 278 | "manufacturer", |
| 279 | "present", |
| 280 | "version", |
Gunnar Mills | dca3579 | 2018-03-26 10:05:38 -0500 | [diff] [blame] | 281 | ], |
Chris Austen | b29d2e8 | 2016-06-07 12:25:35 -0500 | [diff] [blame] | 282 | "MAIN_PLANAR": [ |
| 283 | "Custom Field 1", |
| 284 | "Custom Field 2", |
| 285 | "Custom Field 3", |
| 286 | "Custom Field 4", |
| 287 | "Custom Field 5", |
| 288 | "Custom Field 6", |
| 289 | "Custom Field 7", |
| 290 | "Custom Field 8", |
| 291 | "Part Number", |
| 292 | "Serial Number", |
| 293 | "Type", |
| 294 | "fault", |
| 295 | "fru_type", |
| 296 | "is_fru", |
| 297 | "present", |
| 298 | "version", |
Gunnar Mills | dca3579 | 2018-03-26 10:05:38 -0500 | [diff] [blame] | 299 | ], |
Chris Austen | b29d2e8 | 2016-06-07 12:25:35 -0500 | [diff] [blame] | 300 | "SYSTEM": [ |
| 301 | "Custom Field 1", |
| 302 | "Custom Field 2", |
| 303 | "Custom Field 3", |
| 304 | "Custom Field 4", |
| 305 | "Custom Field 5", |
| 306 | "Custom Field 6", |
| 307 | "Custom Field 7", |
| 308 | "Custom Field 8", |
| 309 | "FRU File ID", |
| 310 | "Manufacturer", |
| 311 | "Model Number", |
| 312 | "Name", |
| 313 | "Serial Number", |
| 314 | "Version", |
| 315 | "fault", |
| 316 | "fru_type", |
| 317 | "is_fru", |
| 318 | "present", |
| 319 | "version", |
Gunnar Mills | dca3579 | 2018-03-26 10:05:38 -0500 | [diff] [blame] | 320 | ], |
Chris Austen | b29d2e8 | 2016-06-07 12:25:35 -0500 | [diff] [blame] | 321 | "CORE": [ |
| 322 | "fault", |
| 323 | "fru_type", |
| 324 | "is_fru", |
| 325 | "present", |
| 326 | "version", |
Gunnar Mills | dca3579 | 2018-03-26 10:05:38 -0500 | [diff] [blame] | 327 | ], |
Chris Austen | b29d2e8 | 2016-06-07 12:25:35 -0500 | [diff] [blame] | 328 | } |