aboutsummaryrefslogtreecommitdiff
path: root/emulators/vmware3/scripts/pre-install
diff options
context:
space:
mode:
authorMartin Wilke <miwi@FreeBSD.org>2011-07-02 13:45:43 +0000
committerMartin Wilke <miwi@FreeBSD.org>2011-07-02 13:45:43 +0000
commit6586357830397d1654dd2511bf08428388f0ab62 (patch)
treef38bcb5be75228dccd866e614ce050055694e036 /emulators/vmware3/scripts/pre-install
parentf9f82e036f6af54308c8f4219e6736e8a4d6548a (diff)
Notes
Diffstat (limited to 'emulators/vmware3/scripts/pre-install')
-rw-r--r--emulators/vmware3/scripts/pre-install29
1 files changed, 0 insertions, 29 deletions
diff --git a/emulators/vmware3/scripts/pre-install b/emulators/vmware3/scripts/pre-install
deleted file mode 100644
index f4cb4d7ebd83..000000000000
--- a/emulators/vmware3/scripts/pre-install
+++ /dev/null
@@ -1,29 +0,0 @@
-#!/bin/sh
-
-echo Setup Linux compatible /dev directory
-linux_dev=${LINUXBASE}/dev
-if [ ! -d $linux_dev ]; then
- echo Creating $linux_dev
- mkdir $linux_dev
- chown root:wheel $linux_dev
- chmod 755 $linux_dev
-fi
-echo Creating $linux_dev/tty\?
-for n in 0 1 2 3 4 5 6 7 8 9; do
- ln -s /dev/ttyv$n $linux_dev/tty`expr 1 + $n`;
-done
-ln -fs /dev/ttyva ${linux_dev}/tty11
-ln -fs /dev/ttyvb ${linux_dev}/tty12
-ln -fs ${linux_dev}/tty1 ${linux_dev}/tty0
-echo Creating vmmon node
-mknod /dev/vmmon c 200 0
-echo Creating vmnet1 node
-mknod /dev/vmnet1 c 149 ${VMNET1_MINOR}
-echo Creating $linux_dev/hd\?
-mknod ${linux_dev}/hda b 0 0x00010002
-mknod ${linux_dev}/hdb b 0 0x0001000a
-# Do not enable below, because vmware-wizard is locked when
-# doing something like access("/dev/hdc"...)
-#mknod ${linux_dev}/hdc b 0 0x00010012
-#mknod ${linux_dev}/hdd b 0 0x0001001a
-echo Done