summaryrefslogtreecommitdiff
path: root/scripts/run_qemu_direct.sh
blob: 974515ebe8b65ee9acb0600b9e0eba0e0f985b30 (plain)
1
2
3
4
5
6
7
8
9
10
11
#!/bin/oksh

qemu-nbd -f raw root.img -x ROOT &
sleep 2 && \
qemu-system-i386 -cpu 486 -m 24M -machine isapc \
 	-kernel bzImage -initrd ramdisk.img \
 	-append	"debug loglevel=7 earlycon=vga earlycon=uart8250,io,0x3f8,9600n8 console=tty0 console=ttyS0,9600n8 iommu=off init=/init vga=0x311" \
	-netdev user,id=net0,net=10.0.0.0/24,host=10.0.0.2,dhcpstart=10.0.0.16,hostfwd=tcp::2222-:22 \
	-vga std \
	-device ne2k_isa,iobase=0x300,irq=10,netdev=net0
pkill qemu-nbd