You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
316 B
16 lines
316 B
#!/bin/bash
|
|
# Run QEMU emulating a 486, booting from a floppy specified as first parameter
|
|
set -e
|
|
|
|
if [ ! -e "/sys/class/net/vmbr-lan" ]; then
|
|
ip link add vmbr-lan type bridge
|
|
fi
|
|
|
|
qemu-system-i386 \
|
|
-m 16m \
|
|
-fda "${1}" \
|
|
-nographic \
|
|
-nic user,model=rtl8139 \
|
|
-nic bridge,br=vmbr-lan,model=rtl8139
|
|
tput reset
|