summaryrefslogtreecommitdiff
path: root/emulators/vmware-module3/INSTALL
diff options
context:
space:
mode:
authorbad <bad@pkgsrc.org>2003-02-16 19:43:36 +0000
committerbad <bad@pkgsrc.org>2003-02-16 19:43:36 +0000
commitaf754316ddcdf10b23bc641ab5745ec8da449c05 (patch)
tree5e48351b5293e7f69d0be40bbebb9e80173bbce7 /emulators/vmware-module3/INSTALL
parentcf97bd6dcca49cc22abf979cb77a633b5a5bb673 (diff)
downloadpkgsrc-af754316ddcdf10b23bc641ab5745ec8da449c05.tar.gz
Initial import of vmware-module3, the NetBSD kernel modules for
VMWare Workstation 3.2. (3.0/3.1 should work, too.) Tested on 1.6.1_RC1 only.
Diffstat (limited to 'emulators/vmware-module3/INSTALL')
-rw-r--r--emulators/vmware-module3/INSTALL37
1 files changed, 37 insertions, 0 deletions
diff --git a/emulators/vmware-module3/INSTALL b/emulators/vmware-module3/INSTALL
new file mode 100644
index 00000000000..75ecd3ef18d
--- /dev/null
+++ b/emulators/vmware-module3/INSTALL
@@ -0,0 +1,37 @@
+#!/bin/sh
+#
+# $NetBSD: INSTALL,v 1.1.1.1 2003/02/16 19:43:36 bad Exp $
+
+case $2 in
+PRE-INSTALL)
+ ;;
+POST-INSTALL)
+ /bin/cat << EOF
+===========================================================================
+Copy the following files from ${PKG_PREFIX}/etc/rc.d to /etc/rc.d:
+
+linuxrtc vmmon vmnet vmnetif
+
+and append the content of ${PKG_PREFIX}/etc/rc.conf.d/vmware to /etc/rc.conf:
+
+vmware_prefix=${PKG_PREFIX}
+vmmon=YES
+vmnet=YES
+linuxrtc=NO
+# XXX should cater for multiple interfaces
+vmnetif=YES
+vmnetifname=vmnet1
+vmnetdev=/dev/vmnet1
+vmnetifconfig="inet 172.16.212.1 netmask 0xffffff00"
+vmnetif_use_dhcpd=NO
+
+Then, reboot your system.
+===========================================================================
+EOF
+ ;;
+*)
+ echo "Unexpected argument: $2"
+ exit 1
+ ;;
+esac
+exit 0