~xnox/ubuntu/focal/apport/apport-on-powerpc-crashes-subiquity-during-crash-reporting

« back to all changes in this revision

Viewing changes to apport/hookutils.py

  • Committer: Brian Murray
  • Date: 2020-04-06 18:22:58 UTC
  • Revision ID: brian@canonical.com-20200406182258-09ifqz2vyndujob5
apport/hookutils.py: Add in "lspci -vt" output for the HWE team.

Show diffs side-by-side

added added

removed removed

Lines of Context:
233
233
    - /proc/cmdline
234
234
    - /proc/modules
235
235
    - lspci -vvnn
 
236
    - lscpi -vt
236
237
    - lsusb
237
238
    - lsusb -v
238
239
    - lsusb -t
249
250
 
250
251
    if os.path.exists('/sys/bus/pci'):
251
252
        report['Lspci'] = command_output(['lspci', '-vvnn'])
 
253
        report['Lspci-vt'] = command_output(['lspci', '-vt'])
252
254
    report['Lsusb'] = command_output(['lsusb'])
253
255
    report['Lsusb-v'] = command_output(['lsusb', '-v'])
254
256
    report['Lsusb-t'] = command_output(['lsusb', '-t'])