14 lines
218 B
Bash
14 lines
218 B
Bash
|
#!/bin/sh
|
||
|
MEM_SIZE_MB=25
|
||
|
|
||
|
#run qemu with sss as BIOS and uart redirected to stdin
|
||
|
qemu-system-i386 \
|
||
|
-m ${MEM_SIZE_MB}M \
|
||
|
-machine q35 \
|
||
|
-bios sss \
|
||
|
-serial stdio \
|
||
|
-nographic \
|
||
|
-monitor none
|
||
|
|
||
|
|