diff options
author | Akinori MUSHA <knu@FreeBSD.org> | 2000-09-22 17:22:24 +0000 |
---|---|---|
committer | Akinori MUSHA <knu@FreeBSD.org> | 2000-09-22 17:22:24 +0000 |
commit | 8b3cd773ff016fff7057a1a40ce23df371e5fbbe (patch) | |
tree | 8ea908c5ea8d4ab894559c97b5aae2897bb1a4fd /emulators/vmware3/files | |
parent | (null-commit) (diff) |
Use LINUXBASE/USE_LINUX variables.
This is only a cosmetic change, so there's no need to reinstall your
installation(s).
Notes
Notes:
svn path=/head/; revision=33019
Diffstat (limited to 'emulators/vmware3/files')
-rw-r--r-- | emulators/vmware3/files/vmware | 4 | ||||
-rw-r--r-- | emulators/vmware3/files/vmware.sh | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/emulators/vmware3/files/vmware b/emulators/vmware3/files/vmware index bb98527690c2..6693fad91f09 100644 --- a/emulators/vmware3/files/vmware +++ b/emulators/vmware3/files/vmware @@ -4,9 +4,9 @@ # # $FreeBSD$ -if [ ! -e @@LINUX_DIR@@/proc/cpuinfo ]; then +if [ ! -e @@LINUXBASE@@/proc/cpuinfo ]; then echo "************************************************************" - echo "It seems Linux procfs is not mounted on @@LINUX_DIR@@/proc." + echo "It seems Linux procfs is not mounted on @@LINUXBASE@@/proc." echo "VMware does not work without Linux procfs mounted." echo echo "For details, see linprocfs(5) manpage." diff --git a/emulators/vmware3/files/vmware.sh b/emulators/vmware3/files/vmware.sh index e375434044a4..93c8c4e33be8 100644 --- a/emulators/vmware3/files/vmware.sh +++ b/emulators/vmware3/files/vmware.sh @@ -25,7 +25,7 @@ start) if [ $networking -eq 1 ]; then sysctl net.link.ether.bridge_refresh && bridge="_bridge" kldload if_tap.ko - echo -n >@@LINUX_DIR@@/dev/vmnet1 + echo -n >@@LINUXBASE@@/dev/vmnet1 ifconfig vmnet1 $host_ip netmask $netmask if [ _$bridge != _ ]; then sysctl -w net.link.ether.bridge_refresh=1 |