blob: 3aef63ed94c979984e0212a8c54970e28e1e172a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
|
#!/bin/sh
# Amount of physical memory
RAM=1024
# Number of processors. Keep this below the number of physical processors
# because the kernel doesn't replace spinning with sleeping from within
# a virtual machine, which causes performance to collapse.
NR_CPUS=4
# QEMU system emulator
QEMU_EXE=qemu-system-i386
QEMU_EXE=qemu-system-x86_64
# KVM options
KVM=
KVM="-enable-kvm -cpu host"
# Don't change from here unless you know what you're doing
X15=$PWD/x15
TMPDIR=$(mktemp -d)
objcopy -O elf32-i386 $X15 $TMPDIR/x15
$QEMU_EXE $KVM \
-ctrl-grab \
-gdb tcp::1234 \
-m $RAM \
-smp $NR_CPUS \
-monitor stdio \
-kernel $TMPDIR/x15 \
-append "console=atcons"
rm -rf $TMPDIR
|