diff options
author | xtraeme <xtraeme@pkgsrc.org> | 2006-01-01 13:48:45 +0000 |
---|---|---|
committer | xtraeme <xtraeme@pkgsrc.org> | 2006-01-01 13:48:45 +0000 |
commit | 43051cec68afbe088c24eab310f2e59eadb2a471 (patch) | |
tree | 300a2bd6b63409bf5ba094a712959dff9b4703df /emulators/qemu/files | |
parent | e1acc8c98f1937af8ad501db9b848314f2a3203d (diff) | |
download | pkgsrc-43051cec68afbe088c24eab310f2e59eadb2a471.tar.gz |
Update to 0.8.0 (update provided by Hubert Feyrer, thanks :-)
* Support for ARM Integrator/CP board system emulation.
* Support for MIPS R4K system emulation.
* Initial SMP support on x86 (up to 255 CPUs !).
* Many new audio emulation features.
* Initial USB support.
* New networking options for VLAN support between several QEMU instances.
Diffstat (limited to 'emulators/qemu/files')
-rw-r--r-- | emulators/qemu/files/Makefile.multinode-NetBSD | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/emulators/qemu/files/Makefile.multinode-NetBSD b/emulators/qemu/files/Makefile.multinode-NetBSD index 54dafd9d315..60a45a0bdaf 100644 --- a/emulators/qemu/files/Makefile.multinode-NetBSD +++ b/emulators/qemu/files/Makefile.multinode-NetBSD @@ -1,4 +1,4 @@ -# $Id: Makefile.multinode-NetBSD,v 1.1 2005/10/01 04:12:32 hubertf Exp $ +# $Id: Makefile.multinode-NetBSD,v 1.2 2006/01/01 13:48:45 xtraeme Exp $ # Source: http://mail-index.netbsd.org/netbsd-help/2005/03/25/0005.html # # Starts up two qemu instances and networks bridges them to the local @@ -32,8 +32,8 @@ netbsd1: bridge -m ${QEMU_RAM} \ ${NETBSD_NOGFX} \ -boot c \ - -tun-fd 3 3<>/dev/tap1 \ - -macaddr de:ad:be:ef:00:01 \ + -net tap,fd=3,ifname=tap1 3<>/dev/tap1 \ + -net nic,macaddr=de:ad:be:ef:00:01 \ ${DISK1} brconfig bridge0 delete tap1 ifconfig tap1 destroy @@ -47,8 +47,8 @@ netbsd2: bridge -m ${QEMU_RAM} \ ${NETBSD_NOGFX} \ -boot c \ - -tun-fd 3 3<>/dev/tap2 \ - -macaddr de:ad:be:ef:00:02 \ + -net tap,fd=3,ifname=tap2 3<>/dev/tap2 \ + -net nic,macaddr=de:ad:be:ef:00:02 \ ${DISK2} brconfig bridge0 delete tap2 ifconfig tap2 destroy |