George Keishing | 4346a41 | 2016-07-19 11:26:49 -0500 | [diff] [blame] | 1 | #!/usr/bin/python |
Gunnar Mills | a812e0f | 2016-09-29 20:30:03 -0500 | [diff] [blame] | 2 | r""" |
George Keishing | 4346a41 | 2016-07-19 11:26:49 -0500 | [diff] [blame] | 3 | # @file openbmc_ffdc_list.py |
George Keishing | 4346a41 | 2016-07-19 11:26:49 -0500 | [diff] [blame] | 4 | # @brief List for FFDC ( First failure data capture ) |
| 5 | # commands and files to be collected as a part |
| 6 | # of the test case failure. |
Gunnar Mills | a812e0f | 2016-09-29 20:30:03 -0500 | [diff] [blame] | 7 | """ |
Gunnar Mills | a812e0f | 2016-09-29 20:30:03 -0500 | [diff] [blame] | 8 | # ------------------- |
George Keishing | 4346a41 | 2016-07-19 11:26:49 -0500 | [diff] [blame] | 9 | # FFDC default list |
Gunnar Mills | a812e0f | 2016-09-29 20:30:03 -0500 | [diff] [blame] | 10 | # ------------------- |
Gunnar Mills | a812e0f | 2016-09-29 20:30:03 -0500 | [diff] [blame] | 11 | # ----------------------------------------------------------------- |
Gunnar Mills | 28e403b | 2017-10-25 16:16:38 -0500 | [diff] [blame] | 12 | # Dict Name { Index string : { Key String : Command string} } |
Gunnar Mills | a812e0f | 2016-09-29 20:30:03 -0500 | [diff] [blame] | 13 | # ----------------------------------------------------------------- |
George Keishing | 69e6f71 | 2016-09-12 06:30:09 -0500 | [diff] [blame] | 14 | # Add cmd's needed to be part of the ffdc report manifest file |
| 15 | FFDC_BMC_CMD = { |
Gunnar Mills | a812e0f | 2016-09-29 20:30:03 -0500 | [diff] [blame] | 16 | 'DRIVER INFO': |
| 17 | { |
| 18 | # String Name Command |
Gunnar Mills | a812e0f | 2016-09-29 20:30:03 -0500 | [diff] [blame] | 19 | 'FW Level': 'cat /etc/os-release', |
George Keishing | c5ab1b6 | 2017-08-16 13:51:14 -0500 | [diff] [blame] | 20 | 'FW Timestamp': 'cat /etc/timestamp', |
Gunnar Mills | a812e0f | 2016-09-29 20:30:03 -0500 | [diff] [blame] | 21 | }, |
| 22 | 'BMC DATA': |
| 23 | { |
| 24 | 'BMC OS': 'uname -a', |
| 25 | 'BMC Uptime': 'uptime', |
Gunnar Mills | a812e0f | 2016-09-29 20:30:03 -0500 | [diff] [blame] | 26 | 'BMC File System Disk Space Usage': 'df -hT', |
George Keishing | 342bcea | 2017-11-11 03:08:54 -0600 | [diff] [blame] | 27 | 'BMC Date Time': 'date;/sbin/hwclock --show;/usr/bin/timedatectl' |
Gunnar Mills | a812e0f | 2016-09-29 20:30:03 -0500 | [diff] [blame] | 28 | }, |
| 29 | 'APPLICATION DATA': |
| 30 | { |
Michael Walsh | e53e47a | 2017-06-30 17:03:24 -0500 | [diff] [blame] | 31 | 'BMC state': '/usr/sbin/obmcutil state', |
Gunnar Mills | a812e0f | 2016-09-29 20:30:03 -0500 | [diff] [blame] | 32 | }, |
| 33 | } |
George Keishing | 69e6f71 | 2016-09-12 06:30:09 -0500 | [diff] [blame] | 34 | # Add file name and correcponding command needed for BMC |
| 35 | FFDC_BMC_FILE = { |
Gunnar Mills | a812e0f | 2016-09-29 20:30:03 -0500 | [diff] [blame] | 36 | 'BMC FILES': |
| 37 | { |
| 38 | # File Name Command |
| 39 | 'BMC_proc_list': 'top -n 1 -b', |
George Keishing | 158a76c | 2017-07-18 00:53:37 -0500 | [diff] [blame] | 40 | 'BMC_proc_fd_active_list': 'ls -Al /proc/*/fd/', |
George Keishing | f6cc55e | 2017-08-30 04:16:21 -0500 | [diff] [blame] | 41 | 'BMC_journalctl_nopager': 'journalctl --no-pager', |
| 42 | 'BMC_journalctl_pretty': 'journalctl -o json-pretty', |
Gunnar Mills | a812e0f | 2016-09-29 20:30:03 -0500 | [diff] [blame] | 43 | 'BMC_dmesg': 'dmesg', |
Gunnar Mills | aca140d | 2016-10-26 13:05:10 -0500 | [diff] [blame] | 44 | 'BMC_procinfo': 'cat /proc/cpuinfo', |
| 45 | 'BMC_meminfo': 'cat /proc/meminfo', |
George Keishing | 6ce4813 | 2017-11-13 10:46:02 -0600 | [diff] [blame] | 46 | 'BMC_systemd': 'systemctl status --all', |
Gunnar Mills | a812e0f | 2016-09-29 20:30:03 -0500 | [diff] [blame] | 47 | }, |
| 48 | } |
Gunnar Mills | 7e2cda2 | 2016-10-11 15:37:34 -0500 | [diff] [blame] | 49 | # Add file name and correcponding command needed for all Linux distributions |
| 50 | FFDC_OS_ALL_DISTROS_FILE = { |
| 51 | 'OS FILES': |
| 52 | { |
| 53 | # File Name Command |
| 54 | 'OS_msglog': 'cat /sys/firmware/opal/msglog', |
| 55 | 'OS_cpufrequency': 'ppc64_cpu --frequency', |
| 56 | 'OS_dmesg': 'dmesg', |
| 57 | 'OS_boot': 'cat /var/log/boot.log', |
Gunnar Mills | aca140d | 2016-10-26 13:05:10 -0500 | [diff] [blame] | 58 | 'OS_procinfo': 'cat /proc/cpuinfo', |
| 59 | 'OS_meminfo': 'cat /proc/meminfo', |
| 60 | 'OS_netstat': 'netstat -a', |
Steven Sombar | 60ade08 | 2017-08-16 11:27:26 -0500 | [diff] [blame] | 61 | 'OS_lspci': 'lspci', |
| 62 | 'OS_lscpu': 'lscpu', |
| 63 | 'OS_lscfg': 'lscfg', |
Gunnar Mills | 7e2cda2 | 2016-10-11 15:37:34 -0500 | [diff] [blame] | 64 | }, |
| 65 | } |
Gunnar Mills | cce185d | 2016-10-17 17:04:15 -0500 | [diff] [blame] | 66 | # Add file name and correcponding command needed for Ubuntu Linux |
| 67 | FFDC_OS_UBUNTU_FILE = { |
| 68 | 'OS FILES': |
| 69 | { |
| 70 | # File Name Command |
| 71 | 'OS_isusb': 'lsusb -t ; lsusb -v', |
| 72 | 'OS_kern': 'tail -n 50000 /var/log/kern.log', |
| 73 | 'OS_authlog': 'cat /var/log/auth.log; cat /var/log/auth.log.1', |
| 74 | 'OS_syslog': 'tail -n 200000 /var/log/syslog', |
| 75 | 'OS_info': 'uname -a; dpkg -s opal-prd; dpkg -s ipmitool', |
| 76 | }, |
| 77 | } |
Gunnar Mills | cce185d | 2016-10-17 17:04:15 -0500 | [diff] [blame] | 78 | # Add file name and correcponding command needed for RHEL Linux |
| 79 | FFDC_OS_RHEL_FILE = { |
| 80 | 'OS FILES': |
| 81 | { |
| 82 | # File Name Command |
| 83 | 'OS_rsct': '/usr/bin/ctversion -bv', |
| 84 | 'OS_secure': 'cat /var/log/secure', |
| 85 | 'OS_syslog': 'tail -n 200000 /var/log/messages', |
| 86 | 'OS_info': 'lsb_release -a; cat /etc/redhat-release; uname -a; rpm -qa', |
| 87 | }, |
| 88 | } |
Gunnar Mills | cce185d | 2016-10-17 17:04:15 -0500 | [diff] [blame] | 89 | # Add file name and correcponding command needed for RHEL Linux |
| 90 | FFDC_OS_IBM_POWERKVM_FILE = { |
| 91 | 'OS FILES': |
| 92 | { |
| 93 | # File Name Command |
| 94 | 'OS_secure': 'cat /var/log/secure', |
| 95 | 'OS_syslog': 'tail -n 200000 /var/log/messages', |
| 96 | 'OS_info': 'lsb_release -a; uname -a; rpm -qa', |
| 97 | }, |
| 98 | } |
George Keishing | f77ea87 | 2017-09-01 08:02:21 -0500 | [diff] [blame] | 99 | OPENBMC_BASE = '/xyz/openbmc_project/' |
George Keishing | ba00038 | 2017-09-19 13:25:29 -0500 | [diff] [blame] | 100 | OPENPOWER_BASE = '/org/open_power/' |
George Keishing | fe5724d | 2016-11-23 09:25:36 -0600 | [diff] [blame] | 101 | ENUMERATE_SENSORS = OPENBMC_BASE + 'sensors/enumerate' |
George Keishing | f77ea87 | 2017-09-01 08:02:21 -0500 | [diff] [blame] | 102 | ENUMERATE_INVENTORY = OPENBMC_BASE + 'inventory/enumerate' |
| 103 | ENUMERATE_ELOG = OPENBMC_BASE + 'logging/entry/enumerate' |
| 104 | ENUMERATE_LED = OPENBMC_BASE + 'led/enumerate' |
| 105 | ENUMERATE_SW = OPENBMC_BASE + 'software/enumerate' |
| 106 | ENUMERATE_CONTROL = OPENBMC_BASE + 'control/enumerate' |
George Keishing | 9be77cd | 2017-11-13 07:52:08 -0600 | [diff] [blame] | 107 | ENUMERATE_STATE = OPENBMC_BASE + 'state/enumerate' |
George Keishing | ba00038 | 2017-09-19 13:25:29 -0500 | [diff] [blame] | 108 | ENUMERATE_OCC = OPENPOWER_BASE + 'control/enumerate' |
Sweta Potthuri | a82efd6 | 2017-10-18 05:34:59 -0500 | [diff] [blame] | 109 | ENUMERATE_DUMPS = OPENBMC_BASE + 'dumps/enumerate' |
| 110 | |
Gunnar Mills | a812e0f | 2016-09-29 20:30:03 -0500 | [diff] [blame] | 111 | # Add file name and correcponding Get Request |
| 112 | FFDC_GET_REQUEST = { |
| 113 | 'GET REQUESTS': |
| 114 | { |
| 115 | # File Name Command |
George Keishing | f77ea87 | 2017-09-01 08:02:21 -0500 | [diff] [blame] | 116 | 'FIRMWARE_list': ENUMERATE_SW, |
George Keishing | fe5724d | 2016-11-23 09:25:36 -0600 | [diff] [blame] | 117 | 'BMC_sensor_list': ENUMERATE_SENSORS, |
George Keishing | 49e24a7 | 2017-08-09 11:37:42 -0500 | [diff] [blame] | 118 | 'BMC_control_list': ENUMERATE_CONTROL, |
George Keishing | f77ea87 | 2017-09-01 08:02:21 -0500 | [diff] [blame] | 119 | 'BMC_inventory': ENUMERATE_INVENTORY, |
George Keishing | c06fc99 | 2017-02-22 09:01:08 -0600 | [diff] [blame] | 120 | 'BMC_elog': ENUMERATE_ELOG, |
George Keishing | f77ea87 | 2017-09-01 08:02:21 -0500 | [diff] [blame] | 121 | 'BMC_led': ENUMERATE_LED, |
George Keishing | 9be77cd | 2017-11-13 07:52:08 -0600 | [diff] [blame] | 122 | 'BMC_state': ENUMERATE_STATE, |
George Keishing | ba00038 | 2017-09-19 13:25:29 -0500 | [diff] [blame] | 123 | 'OCC_state': ENUMERATE_OCC, |
Sweta Potthuri | a82efd6 | 2017-10-18 05:34:59 -0500 | [diff] [blame] | 124 | 'BMC_dumps': ENUMERATE_DUMPS, |
Gunnar Mills | a812e0f | 2016-09-29 20:30:03 -0500 | [diff] [blame] | 125 | }, |
| 126 | } |
George Keishing | 69e6f71 | 2016-09-12 06:30:09 -0500 | [diff] [blame] | 127 | # Define your keywords in method/utils and call here |
| 128 | FFDC_METHOD_CALL = { |
Gunnar Mills | a812e0f | 2016-09-29 20:30:03 -0500 | [diff] [blame] | 129 | 'BMC LOGS': |
| 130 | { |
| 131 | # Description Keyword name |
| 132 | 'FFDC Generic Report': 'BMC FFDC Manifest', |
| 133 | 'BMC Specific Files': 'BMC FFDC Files', |
| 134 | 'Get Request FFDC': 'BMC FFDC Get Requests', |
Gunnar Mills | 7e2cda2 | 2016-10-11 15:37:34 -0500 | [diff] [blame] | 135 | 'OS FFDC': 'OS FFDC Files', |
George Keishing | 7a52022 | 2017-02-27 09:44:30 -0600 | [diff] [blame] | 136 | 'Core Files': 'SCP Coredump Files', |
George Keishing | eb7b4bc | 2017-03-13 12:04:28 -0500 | [diff] [blame] | 137 | 'SEL Log': 'Collect eSEL Log', |
Steven Sombar | 96de573 | 2017-08-17 09:04:52 -0500 | [diff] [blame] | 138 | 'Sys Inventory Files': 'System Inventory Files', |
Sweta Potthuri | a82efd6 | 2017-10-18 05:34:59 -0500 | [diff] [blame] | 139 | 'Dump Log': 'Collect Dump Log', |
| 140 | 'Dump Files': 'SCP Dump Files' |
Gunnar Mills | a812e0f | 2016-09-29 20:30:03 -0500 | [diff] [blame] | 141 | }, |
| 142 | } |
Gunnar Mills | a812e0f | 2016-09-29 20:30:03 -0500 | [diff] [blame] | 143 | # ----------------------------------------------------------------- |
George Keishing | 4346a41 | 2016-07-19 11:26:49 -0500 | [diff] [blame] | 144 | # base class for FFDC default list |
Gunnar Mills | 096cd56 | 2018-03-26 10:19:12 -0500 | [diff] [blame] | 145 | |
| 146 | |
George Keishing | 4346a41 | 2016-07-19 11:26:49 -0500 | [diff] [blame] | 147 | class openbmc_ffdc_list(): |
Gunnar Mills | a812e0f | 2016-09-29 20:30:03 -0500 | [diff] [blame] | 148 | def get_ffdc_bmc_cmd(self, i_type): |
| 149 | r""" |
| 150 | ######################################################################## |
| 151 | # @brief This method returns the list from the dictionary for cmds |
| 152 | # @param i_type: @type string: string index lookup |
| 153 | # @return List of key pair from the dictionary |
| 154 | ######################################################################## |
| 155 | """ |
George Keishing | 69e6f71 | 2016-09-12 06:30:09 -0500 | [diff] [blame] | 156 | return FFDC_BMC_CMD[i_type].items() |
Gunnar Mills | 096cd56 | 2018-03-26 10:19:12 -0500 | [diff] [blame] | 157 | |
Gunnar Mills | a812e0f | 2016-09-29 20:30:03 -0500 | [diff] [blame] | 158 | def get_ffdc_bmc_file(self, i_type): |
| 159 | r""" |
| 160 | ######################################################################## |
| 161 | # @brief This method returns the list from the dictionary for scp |
| 162 | # @param i_type: @type string: string index lookup |
| 163 | # @return List of key pair from the dictionary |
| 164 | ######################################################################## |
| 165 | """ |
George Keishing | 69e6f71 | 2016-09-12 06:30:09 -0500 | [diff] [blame] | 166 | return FFDC_BMC_FILE[i_type].items() |
Gunnar Mills | 096cd56 | 2018-03-26 10:19:12 -0500 | [diff] [blame] | 167 | |
Gunnar Mills | a812e0f | 2016-09-29 20:30:03 -0500 | [diff] [blame] | 168 | def get_ffdc_get_request(self, i_type): |
| 169 | r""" |
| 170 | ######################################################################## |
| 171 | # @brief This method returns the list from the dictionary for scp |
| 172 | # @param i_type: @type string: string index lookup |
| 173 | # @return List of key pair from the dictionary |
| 174 | ######################################################################## |
| 175 | """ |
| 176 | return FFDC_GET_REQUEST[i_type].items() |
Gunnar Mills | 096cd56 | 2018-03-26 10:19:12 -0500 | [diff] [blame] | 177 | |
George Keishing | 69e6f71 | 2016-09-12 06:30:09 -0500 | [diff] [blame] | 178 | def get_ffdc_cmd_index(self): |
Gunnar Mills | a812e0f | 2016-09-29 20:30:03 -0500 | [diff] [blame] | 179 | r""" |
| 180 | ######################################################################## |
| 181 | # @brief This method returns the list index from dictionary |
| 182 | # @return List of index to the dictionary |
| 183 | ######################################################################## |
| 184 | """ |
George Keishing | 69e6f71 | 2016-09-12 06:30:09 -0500 | [diff] [blame] | 185 | return FFDC_BMC_CMD.keys() |
Gunnar Mills | 096cd56 | 2018-03-26 10:19:12 -0500 | [diff] [blame] | 186 | |
Gunnar Mills | a812e0f | 2016-09-29 20:30:03 -0500 | [diff] [blame] | 187 | def get_ffdc_get_request_index(self): |
| 188 | r""" |
| 189 | ######################################################################## |
| 190 | # @brief This method returns the list index from dictionary |
| 191 | # @return List of index to the dictionary |
| 192 | ######################################################################## |
| 193 | """ |
| 194 | return FFDC_GET_REQUEST.keys() |
Gunnar Mills | 096cd56 | 2018-03-26 10:19:12 -0500 | [diff] [blame] | 195 | |
George Keishing | 69e6f71 | 2016-09-12 06:30:09 -0500 | [diff] [blame] | 196 | def get_ffdc_file_index(self): |
Gunnar Mills | a812e0f | 2016-09-29 20:30:03 -0500 | [diff] [blame] | 197 | r""" |
| 198 | ######################################################################## |
| 199 | # @brief This method returns the list index from dictionary |
| 200 | # @return List of index to the dictionary |
| 201 | ######################################################################## |
| 202 | """ |
George Keishing | 69e6f71 | 2016-09-12 06:30:09 -0500 | [diff] [blame] | 203 | return FFDC_BMC_FILE.keys() |
Gunnar Mills | 096cd56 | 2018-03-26 10:19:12 -0500 | [diff] [blame] | 204 | |
George Keishing | 69e6f71 | 2016-09-12 06:30:09 -0500 | [diff] [blame] | 205 | def get_ffdc_method_index(self): |
Gunnar Mills | a812e0f | 2016-09-29 20:30:03 -0500 | [diff] [blame] | 206 | r""" |
| 207 | ######################################################################## |
| 208 | # @brief This method returns the key pair from the dictionary |
| 209 | # @return Index of the method dictionary |
| 210 | ######################################################################## |
| 211 | """ |
George Keishing | 69e6f71 | 2016-09-12 06:30:09 -0500 | [diff] [blame] | 212 | return FFDC_METHOD_CALL.keys() |
Gunnar Mills | 096cd56 | 2018-03-26 10:19:12 -0500 | [diff] [blame] | 213 | |
Michael Walsh | e844e9a | 2017-04-20 16:51:10 -0500 | [diff] [blame] | 214 | def get_ffdc_method_desc(self, |
| 215 | index): |
| 216 | r""" |
| 217 | ######################################################################## |
| 218 | # @brief This method returns the just the keys from the dictionary. |
| 219 | # @return List of ffdc descriptions. |
| 220 | ######################################################################## |
| 221 | """ |
| 222 | return FFDC_METHOD_CALL[index].keys() |
Gunnar Mills | 096cd56 | 2018-03-26 10:19:12 -0500 | [diff] [blame] | 223 | |
Gunnar Mills | a812e0f | 2016-09-29 20:30:03 -0500 | [diff] [blame] | 224 | def get_ffdc_method_call(self, i_type): |
| 225 | r""" |
| 226 | ######################################################################## |
| 227 | # @brief This method returns the key pair from the dictionary |
| 228 | # @return List of key pair keywords |
| 229 | ######################################################################## |
| 230 | """ |
George Keishing | 69e6f71 | 2016-09-12 06:30:09 -0500 | [diff] [blame] | 231 | return FFDC_METHOD_CALL[i_type].items() |
Gunnar Mills | 096cd56 | 2018-03-26 10:19:12 -0500 | [diff] [blame] | 232 | |
Gunnar Mills | 7e2cda2 | 2016-10-11 15:37:34 -0500 | [diff] [blame] | 233 | def get_ffdc_os_all_distros_index(self): |
| 234 | r""" |
| 235 | ######################################################################## |
| 236 | # @brief This method returns the key pair from the dictionary |
| 237 | # @return Index of the method dictionary |
| 238 | ######################################################################## |
| 239 | """ |
| 240 | return FFDC_OS_ALL_DISTROS_FILE.keys() |
Gunnar Mills | 096cd56 | 2018-03-26 10:19:12 -0500 | [diff] [blame] | 241 | |
Gunnar Mills | 7e2cda2 | 2016-10-11 15:37:34 -0500 | [diff] [blame] | 242 | def get_ffdc_os_all_distros_call(self, i_type): |
| 243 | r""" |
| 244 | ######################################################################## |
| 245 | # @brief This method returns the key pair from the dictionary |
| 246 | # @return List of key pair keywords |
| 247 | ######################################################################## |
| 248 | """ |
| 249 | return FFDC_OS_ALL_DISTROS_FILE[i_type].items() |
Gunnar Mills | 096cd56 | 2018-03-26 10:19:12 -0500 | [diff] [blame] | 250 | |
Gunnar Mills | cce185d | 2016-10-17 17:04:15 -0500 | [diff] [blame] | 251 | def get_ffdc_os_distro_index(self, distro): |
| 252 | r""" |
| 253 | ######################################################################## |
| 254 | # @brief This method returns the key pair from the dictionary |
| 255 | # @return Index of the method dictionary |
| 256 | ######################################################################## |
| 257 | """ |
| 258 | distro_file = "FFDC_OS_" + str(distro).upper() + "_FILE" |
| 259 | return eval(distro_file).keys() |
Gunnar Mills | 096cd56 | 2018-03-26 10:19:12 -0500 | [diff] [blame] | 260 | |
Gunnar Mills | cce185d | 2016-10-17 17:04:15 -0500 | [diff] [blame] | 261 | def get_ffdc_os_distro_call(self, i_type, distro): |
| 262 | r""" |
| 263 | ######################################################################## |
| 264 | # @brief This method returns the key pair from the dictionary |
| 265 | # @return List of key pair keywords |
| 266 | ######################################################################## |
| 267 | """ |
| 268 | distro_file = "FFDC_OS_" + str(distro).upper() + "_FILE" |
| 269 | return eval(distro_file)[i_type].items() |
Gunnar Mills | 096cd56 | 2018-03-26 10:19:12 -0500 | [diff] [blame] | 270 | |
George Keishing | 4346a41 | 2016-07-19 11:26:49 -0500 | [diff] [blame] | 271 | def get_strip_string(self, i_str): |
Gunnar Mills | a812e0f | 2016-09-29 20:30:03 -0500 | [diff] [blame] | 272 | r""" |
| 273 | ######################################################################## |
| 274 | # @brief Returns the stripped strings |
| 275 | # @param i_str: @type string: string name |
| 276 | # @return Remove all special chars and return the string |
| 277 | ######################################################################## |
| 278 | """ |
George Keishing | 4346a41 | 2016-07-19 11:26:49 -0500 | [diff] [blame] | 279 | return ''.join(e for e in i_str if e.isalnum()) |
Gunnar Mills | 096cd56 | 2018-03-26 10:19:12 -0500 | [diff] [blame] | 280 | |
George Keishing | 28da948 | 2017-07-27 13:38:54 -0500 | [diff] [blame] | 281 | def get_esel_index(self, esel_list): |
| 282 | r""" |
| 283 | ####################################################################### |
| 284 | # @brief Returns the eSEL binary index. |
| 285 | # @param esel_ist: @type list: eSEL list. |
| 286 | # @return Index of "ESEL=" in the list. |
| 287 | ####################################################################### |
| 288 | """ |
| 289 | index = [i for i, str in enumerate(esel_list) if 'ESEL=' in str] |
| 290 | return index[0] |
Sweta Potthuri | a82efd6 | 2017-10-18 05:34:59 -0500 | [diff] [blame] | 291 | |
| 292 | def get_dump_index(self, dump_list): |
| 293 | r""" |
| 294 | ####################################################################### |
| 295 | # @brief Returns the eSEL binary index. |
| 296 | # @param esel_ist: @type list: eSEL list. |
| 297 | # @return Index of "ESEL=" in the list. |
| 298 | ####################################################################### |
| 299 | """ |
| 300 | index = [i for i, str in enumerate(dump_list) if 'DUMP=' in str] |
| 301 | return index[0] |