diff options
author | cvs2svn <cvs2svn@FreeBSD.org> | 2000-06-18 10:00:08 +0000 |
---|---|---|
committer | cvs2svn <cvs2svn@FreeBSD.org> | 2000-06-18 10:00:08 +0000 |
commit | e497906508084a5501f27a53a8ec0f23aa446e5b (patch) | |
tree | 152d32d807e92b14ac8ade604a4d650b637b1e93 /emulators/vmware3/scripts/pre-install | |
parent | A new index, with 3,403 ports, which is a nice number, being 41 times (diff) |
This commit was manufactured by cvs2svn to create tag 'RELEASE_3_5_0'.release/3.5.0
Diffstat (limited to 'emulators/vmware3/scripts/pre-install')
-rw-r--r-- | emulators/vmware3/scripts/pre-install | 27 |
1 files changed, 0 insertions, 27 deletions
diff --git a/emulators/vmware3/scripts/pre-install b/emulators/vmware3/scripts/pre-install deleted file mode 100644 index 2ac0bc85a983..000000000000 --- a/emulators/vmware3/scripts/pre-install +++ /dev/null @@ -1,27 +0,0 @@ -#!/bin/sh - -echo Setup Linux compatible /dev directory -linux_dev=${LINUX_DIR}/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 -s /dev/ttyva ${linux_dev}/tty11 -ln -s /dev/ttyvb ${linux_dev}/tty12 -ln -s ${linux_dev}/tty1 ${linux_dev}/tty0 -mknod ${linux_dev}/null c 2 2 -chmod 666 ${linux_dev}/null -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 |