- Timestamp:
- Feb 19, 2015 4:15:38 PM (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/HostDrivers/Support/solaris/load.sh
r48952 r54300 6 6 7 7 # 8 # Copyright (C) 2006-201 2Oracle Corporation8 # Copyright (C) 2006-2015 Oracle Corporation 9 9 # 10 10 # This file is part of VirtualBox Open Source Edition (OSE), as … … 45 45 46 46 # Disable the zone access service. 47 $SUDO svcadm disable svc:/application/virtualbox/zoneaccess:default 47 servicefound=`svcs -H "virtualbox/zoneaccess" 2>/dev/null | grep '^online'` 48 if test ! -z "$servicefound"; then 49 $SUDO svcadm disable svc:/application/virtualbox/zoneaccess:default 50 fi 48 51 49 52 # Unload driver that may depend on the driver we're going to (re-)load … … 92 95 modinfo | grep -w "$DRVNAME" 93 96 MY_RC=0 97 if test ! -h "/dev/vboxdrv"; then 98 $SUDO ln -sf "/devices/pseudo/vboxdrv@0:vboxdrv" /dev/vboxdrv 99 $SUDO chmod 0666 /dev/vboxdrv 100 fi 94 101 else 95 102 dmesg | tail
Note:
See TracChangeset
for help on using the changeset viewer.