mirror of
https://git.freebsd.org/ports.git
synced 2025-07-17 09:19:15 -04:00
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:
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
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
Loading…
Add table
Reference in a new issue