Fix this on 5.0. It isn't enough to "echo -n" to /compat/linux/dev/vmnet1,

but you also need to do this with /dev/vmnet1 in days of devfs.  This has
been in my tree for months now.
This commit is contained in:
Alexander Langer 2003-02-11 21:10:04 +00:00
parent d0241d8617
commit 2c79ac7fa4
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=75316
2 changed files with 4 additions and 0 deletions

View file

@ -46,6 +46,8 @@ exec >/dev/null
case $1 in
start)
kldstat -v | grep vmmon >/dev/null || kldload ${vmware_libdir}/modules/vmmon_${suffix}.ko
echo -n > /dev/vmnet1
echo -n > /dev/vmnet1
if [ $networking -eq 1 ]; then
kldstat -v | grep if_tap >/dev/null || kldload if_tap.ko
if [ ! -e $dev_vmnet1 ]; then

View file

@ -46,6 +46,8 @@ exec >/dev/null
case $1 in
start)
kldstat -v | grep vmmon >/dev/null || kldload ${vmware_libdir}/modules/vmmon_${suffix}.ko
echo -n > /dev/vmnet1
echo -n > /dev/vmnet1
if [ $networking -eq 1 ]; then
kldstat -v | grep if_tap >/dev/null || kldload if_tap.ko
if [ ! -e $dev_vmnet1 ]; then