(self)
| 1174 | @property |
| 1175 | @context.quietfunc |
| 1176 | def lastmsg(self): |
| 1177 | root() |
| 1178 | if 'last_kmsg' in listdir('/proc'): |
| 1179 | return read('/proc/last_kmsg') |
| 1180 | |
| 1181 | if 'console-ramoops' in listdir('/sys/fs/pstore/'): |
| 1182 | return read('/sys/fs/pstore/console-ramoops') |
| 1183 | |
| 1184 | def enable_uart(self): |
| 1185 | """Reboots the device with kernel logging to the UART enabled.""" |