VirtualBox

Changeset 93183 in vbox for trunk


Ignore:
Timestamp:
Jan 11, 2022 11:34:31 AM (3 years ago)
Author:
vboxsync
Message:

ValidationKit/vboxinstaller.py: Temporary hack to skip installing the kernel drivers on testboxs running BigSur and later until the proper solution is ready, bugref:9044

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/ValidationKit/testdriver/vboxinstaller.py

    r93115 r93183  
    695695    def _installVBoxOnDarwin(self):
    696696        """ Installs VBox on Mac OS X."""
     697
     698        # TEMPORARY HACK - START
     699        # Don't install the kernel drivers on the testboxes with BigSur and later
     700        # Needs a more generic approach but that one needs more effort.
     701        sHostName = socket.getfqdn();
     702        if    sHostName.startswith('testboxmac10') \
     703           or sHostName.startswith('testboxmac11'):
     704            self._fKernelDrivers = False;
     705        # TEMPORARY HACK - END
     706
    697707        sDmg = self._findFile('^VirtualBox-.*\\.dmg$');
    698708        if sDmg is None:
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