summaryrefslogtreecommitdiff
path: root/tools/qemu.sh
blob: 1e1990ba14140e1f41dddbd0d2dd621ff368ef23 (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
38
39
40
41
42
43
44
45
46
47
#!/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)
CDROOT=$TMPDIR/cdroot

mkdir -p $CDROOT/boot/grub
cp $X15 $CDROOT/boot
cat > $CDROOT/boot/grub/grub.cfg << EOF
set timeout=1

menuentry "X15" --class os {
        multiboot (hd96)/boot/x15 root=device:hd1s8
}
EOF
grub-mkrescue -o $TMPDIR/grub.iso $CDROOT

$QEMU_EXE $KVM \
          -ctrl-grab \
          -gdb tcp::1234 \
          -m $RAM \
          -smp $NR_CPUS \
          -monitor stdio \
          -cdrom $TMPDIR/grub.iso \
          -boot d

rm -rf $TMPDIR