Skip to content

Commit

Permalink
Add bios none option
Browse files Browse the repository at this point in the history
  • Loading branch information
jiegec committed Sep 15, 2020
1 parent 070fe20 commit 4bc805a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions kernel/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -76,10 +76,10 @@ show-utest: $(TARGET)
@$(GCCPREFIX)objdump -D $< | grep "^[0-9a-f]\{8,16\} <UTEST_" | grep -n --color=auto 'UTEST_'

sim: checkdirs $(TARGET)
$(QEMU) -M virt -m 32M -kernel $(TARGET) -nographic -monitor none -serial tcp::6666,server -s
$(QEMU) -M virt -m 32M -kernel $(TARGET) -nographic -monitor none -serial tcp::6666,server -s -bios none

debug: checkdirs $(TARGET)
$(QEMU) -M virt -m 32M -kernel $(TARGET) -nographic -monitor stdio -serial tcp::6666,server -S -s
$(QEMU) -M virt -m 32M -kernel $(TARGET) -nographic -monitor stdio -serial tcp::6666,server -S -s -bios none

inst: checkdirs $(TARGET)
@$(GCCPREFIX)objdump -d $(TARGET) -M no-aliases | awk '{print $$3}' | sort | uniq | grep -v section | grep -v format
Expand Down

0 comments on commit 4bc805a

Please sign in to comment.