1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
#!/bin/bash
#(cd hda-contents; rm memtest_log; echo -n -e '\x00' >> memtest_log)
#OVMF=/usr/share/ovmf/OVMF.fd
OVMF=/home/koenigr/Memtest/git/memtest86/test_code/OVMF.fd
sudo kvm -bios $OVMF \
--drive file=fat:rw:hda-contents,index=0,media=disk,format=raw \
--drive file=fat:rw:hdb-contents,index=1,media=disk,format=raw \
-net none \
-cpu host \
-D ./qemu_log.txt \
-d guest_errors,nochain,exec,in_asm,out_asm,op,op_opt,op_ind,int,cpu,mmu,pcall,cpu_reset,unimp,page \
--trace "memory_region*" \
-monitor stdio
#-drive file=vm-disk-2G,format=raw,index=3,media=disk
#-nographic
#-no-reboot
|