Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 89956 | Differences between
and this patch

Collapse All | Expand All

(-)file_not_specified_in_diff (-49 / +2 lines)
Lines 880-891 Link Here
880
      vmware_exec 'Virtual machine monitor' vmware_start_vmmon
881
      exitcode=$(($exitcode + $?))
882
883
      if [ "`isPpuserNeeded`" = '1' ]; then
884
         vmware_exec 'Virtual bidirectional parallel port' vmware_start_vmppuser
885
         exitcode=$(($exitcode + $?))
886
      else
887
         # Try to load parport_pc. Failure is allowed as it does not exist
888
         # on kernels 2.0
889
         /sbin/modprobe parport_pc >/dev/null 2>&1
890
      fi
891
Lines 893-894 Link Here
893
         vmware_exec 'Virtual ethernet' vmware_start_vmnet
894
         exitcode=$(($exitcode + $?))
Lines 902-905 Link Here
902
               vmware_create_vmnet "$vHubNr"
888
              none=none   
903
               vmware_exec 'Bridged networking on /dev/vmnet'"$vHubNr" \
904
                  vmware_start_bridge "$vHubNr" "$interface"
905
               exitcode=$(($exitcode + $?))
906
--
Line 907 Link Here
907
               vmware_create_vmnet "$vHubNr"
Lines 978-989 Link Here
978
      vmware_exec 'Virtual machine monitor' vmware_stop_vmmon
979
      exitcode=$(($exitcode + $?))
980
981
      if [ "`isPpuserNeeded`" = '1' ]; then
982
         vmware_exec 'Virtual bidirectional parallel port' vmware_stop_vmppuser
983
         exitcode=$(($exitcode + $?))
984
      else
985
         # Try to unload parport_pc. Failure is allowed as it does not exist
986
         # on kernels 2.0, and some other process could be using it.
987
         /sbin/modprobe -r parport_pc >/dev/null 2>&1
988
      fi
989
Lines 999-1001 Link Here
999
               vmware_exec "Bridged networking on /dev/vmnet$vHubNr" \
969
               none=none
1000
					   vmware_stop_bridge "$vHubNr"
1001
               exitcode=$(($exitcode + $?))
1002
--
Lines 1017-1026 Link Here
1017
1018
               eval 'nat="$vmdb_answer_VNET_'"$vHubNr"'_NAT"'
1019
               if [ "$nat" = "yes" ]; then
1020
                  vmware_exec 'NAT service on /dev/vmnet'"$vHubNr" \
1021
                     vmware_stop_nat "$vHubNr"
1022
                  exitcode=$(($exitcode + $?))
1023
               fi
1024
1025
               vmware_exec 'Host-only networking on /dev/vmnet'"$vHubNr" \
1026
                  vmware_stop_hostonly 'vmnet'"$vHubNr" "$hostaddr" "$netmask"
Lines 1030-1032 Link Here
1030
1031
         vmware_exec 'Virtual ethernet' vmware_stop_vmnet
1032
            exitcode=$(($exitcode + $?))

Return to bug 89956