- Timestamp:
- Nov 11, 2021 9:15:42 AM (3 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Installer/darwin/VBoxKEXTs/postflight
r86954 r92346 81 81 # is expected there and the user has to reboot. 82 82 # 83 MACOS_VERS =$(sw_vers -productVersion)83 MACOS_VERSION_MAJOR=$(sw_vers -productVersion | /usr/bin/sed -e 's/^\([0-9]*\).*$/\1/') 84 84 sync 85 if [[ ${MACOS_VERS } != 11.*]]; then85 if [[ ${MACOS_VERSION_MAJOR} -lt 11 ]]; then 86 86 set -e 87 87 kextload '/Library/Application Support/VirtualBox/VBoxDrv.kext'
Note:
See TracChangeset
for help on using the changeset viewer.