Skip to content

Commit

Permalink
Merge pull request #116 from nathanchance/fix-gdb-reference
Browse files Browse the repository at this point in the history
boot-qemu.py: Fix GDB check in QEMURunner
  • Loading branch information
nathanchance committed Feb 1, 2024
2 parents 2cba5d5 + f7f065e commit 767e014
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion boot-qemu.py
Original file line number Diff line number Diff line change
Expand Up @@ -283,7 +283,7 @@ def run(self):
] # yapf: disable

# Kernel options
if self.interactive or args.gdb:
if self.interactive or self.gdb:
self.cmdline.append('rdinit=/bin/sh')
if self.gdb:
self.cmdline.append('nokaslr')
Expand Down

0 comments on commit 767e014

Please sign in to comment.