Changeset 86291 in vbox for trunk/src/VBox/Installer/darwin
- Timestamp:
- Sep 25, 2020 1:04:18 PM (4 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Installer/darwin/VBoxKEXTs/postflight
r82968 r86291 78 78 79 79 # 80 # Load the extension, exit on first error. 80 # Load the extension, exit on first error except on BigSur onwards as an error 81 # is expected there and the user has to reboot. 81 82 # 83 MACOS_VERS=$(sw_vers -productVersion) 82 84 sync 83 set -e 85 if [[ ${MACOS_VERS} != 11.0* ]]; then 86 set -e 87 fi 84 88 kextload '/Library/Application Support/VirtualBox/VBoxDrv.kext' 85 89 kextload -d '/Library/Application Support/VirtualBox/VBoxDrv.kext' '/Library/Application Support/VirtualBox/VBoxUSB.kext'
Note:
See TracChangeset
for help on using the changeset viewer.