Skip to content

Commit

Permalink
utils: Update camera-bug-report script for Bookworm
Browse files Browse the repository at this point in the history
- Point to the right config.txt and cmdline.txt files
- Replace vcdbg with vclog

Signed-off-by: Naushir Patuck <[email protected]>
  • Loading branch information
naushir committed Feb 27, 2024
1 parent 264d37d commit 4ffc10e
Showing 1 changed file with 4 additions and 5 deletions.
9 changes: 4 additions & 5 deletions utils/camera-bug-report
Original file line number Diff line number Diff line change
Expand Up @@ -102,15 +102,14 @@ if __name__ == '__main__':
reports.append(hwinfo)

config = Report('Configuration', file)
config.add_cmd('cat /boot/cmdline.txt')
config.add_cmd('cat /boot/config.txt')
config.add_cmd('cat /boot/firmware/cmdline.txt')
config.add_cmd('cat /boot/firmware/config.txt')
reports.append(config)

logs = Report('Logs', file)
logs.add_cmd('dmesg')
logs.add_cmd('sudo vcdbg log msg')
logs.add_cmd('sudo vcdbg log assert')
logs.add_cmd('sudo vcdbg log ex')
logs.add_cmd('sudo vclog log --msg')
logs.add_cmd('sudo vclog log --assert')
reports.append(logs)

mem = Report('Memory', file)
Expand Down

0 comments on commit 4ffc10e

Please sign in to comment.