VirtualBox

Changeset 86291 in vbox for trunk/src/VBox/Installer/darwin


Ignore:
Timestamp:
Sep 25, 2020 1:04:18 PM (4 years ago)
Author:
vboxsync
Message:

Installer/darwin/VBoxKEXTs/postflight: Don't fail the installation when loading the KEXTs fails on BigSur, this is expected and the user has to reboot in order to get the drivers loaded, bugref:9836

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/Installer/darwin/VBoxKEXTs/postflight

    r82968 r86291  
    7878
    7979#
    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.
    8182#
     83MACOS_VERS=$(sw_vers -productVersion)
    8284sync
    83 set -e
     85if [[ ${MACOS_VERS} != 11.0* ]]; then
     86    set -e
     87fi
    8488kextload    '/Library/Application Support/VirtualBox/VBoxDrv.kext'
    8589kextload -d '/Library/Application Support/VirtualBox/VBoxDrv.kext'  '/Library/Application Support/VirtualBox/VBoxUSB.kext'
Note: See TracChangeset for help on using the changeset viewer.

© 2024 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette