VirtualBox

Changeset 29844 in vbox for trunk/src


Ignore:
Timestamp:
May 27, 2010 11:25:52 AM (15 years ago)
Author:
vboxsync
Message:

HostDrivers-OSX: removed Tiger support

Location:
trunk/src/VBox/HostDrivers
Files:
1 deleted
4 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/HostDrivers/Support/Makefile.kmk

    r29826 r29844  
    319319#
    320320ifeq ($(KBUILD_TARGET),darwin)
    321 # The Tiger variant.
    322 SYSMODS.x86 += VBoxDrvTiger
    323 VBoxDrvTiger_TEMPLATE    = VBOXR0DRV
    324 VBoxDrvTiger_INST        = $(INST_VBOXDRV_TIGER)Contents/MacOS/
    325 VBoxDrvTiger_DEFS       := IN_RT_R0 IN_SUP_R0 SUPDRV_WITH_RELEASE_LOGGER VBOX_SVN_REV=$(VBOX_SVN_REV)
    326 VBoxDrvTiger_DEFS.debug += DEBUG_DARWIN_GIP
    327 VBoxDrvTiger_INCS        = .
    328 VBoxDrvTiger_LIBS        = $(PATH_LIB)/RuntimeR0Drv$(VBOX_SUFF_LIB)
    329 #VBoxDrvTiger_LDFLAGS     = -v -Wl,-whyload -Wl,-v -Wl,-whatsloaded
    330 VBoxDrvTiger_SOURCES     = \
     321# Leopard (x86) and Snow Leopard (x86/amd64)
     322SYSMODS += VBoxDrv
     323VBoxDrv_TEMPLATE    = VBOXR0DRV$(if-expr "$(KBUILD_TARGET_ARCH)" == "x86",OSX105,)
     324VBoxDrv_INST        = $(INST_VBOXDRV)Contents/MacOS/
     325VBoxDrv_DEFS       := VBOX_WITH_HOST_VMX IN_RT_R0 IN_SUP_R0 SUPDRV_WITH_RELEASE_LOGGER VBOX_SVN_REV=$(VBOX_SVN_REV)
     326VBoxDrv_DEFS.debug  = DEBUG_DARWIN_GIP
     327VBoxDrv_INCS        = .
     328VBoxDrv_LIBS        = $(PATH_LIB)/RuntimeR0Drv$(VBOX_SUFF_LIB)
     329#VBoxDrv_LDFLAGS     = -v -Wl,-whyload -Wl,-v -Wl,-whatsloaded
     330VBoxDrv_SOURCES     = \
    331331        SUPDrv.c \
    332332        SUPDrvSem.c \
    333333        $(KBUILD_TARGET)/SUPDrv-$(KBUILD_TARGET).cpp
    334 
    335 INSTALLS += VBoxDrvTiger.kext
    336 VBoxDrvTiger.kext_INST     = $(INST_VBOXDRV_TIGER)Contents/
    337 VBoxDrvTiger.kext_SOURCES  = $(PATH_VBoxDrvTiger.kext)/Info.plist
    338 VBoxDrvTiger.kext_CLEAN    = $(PATH_VBoxDrvTiger.kext)/Info.plist
    339 
    340 $$(PATH_VBoxDrvTiger.kext)/Info.plist: $(PATH_SUB_CURRENT)/darwin/Info-Tiger.plist $(VBOX_VERSION_MK) | $$(dir $$@)
    341         $(call MSG_GENERATE,VBoxDrvTiger,$@,$<)
    342         $(QUIET)$(RM) -f $@
    343         $(QUIET)$(SED) \
    344                 -e 's/@VBOX_VERSION_STRING@/$(VBOX_VERSION_STRING)/g' \
    345                 -e 's/@VBOX_VERSION_MAJOR@/$(VBOX_VERSION_MAJOR)/g' \
    346                 -e 's/@VBOX_VERSION_MINOR@/$(VBOX_VERSION_MINOR)/g' \
    347                 -e 's/@VBOX_VERSION_BUILD@/$(VBOX_VERSION_BUILD)/g' \
    348                 --output $@ \
    349                 $<
    350 
    351 # The Leopard variant.
    352 SYSMODS += VBoxDrv
    353 VBoxDrv_EXTENDS    = VBoxDrvTiger
    354 VBoxDrv_EXTENDS_BY = appending
    355 VBoxDrv_TEMPLATE   = VBOXR0DRV$(if-expr "$(KBUILD_TARGET_ARCH)" == "x86",OSX105,)
    356 VBoxDrv_INST       = $(INST_VBOXDRV)Contents/MacOS/
    357 VBoxDrv_DEFS       = VBOX_WITH_HOST_VMX
    358334
    359335INSTALLS += VBoxDrv.kext
  • trunk/src/VBox/HostDrivers/Support/darwin/load.sh

    r28800 r29844  
    66
    77#
    8 # Copyright (C) 2006-2007 Oracle Corporation
     8# Copyright (C) 2006-2010 Oracle Corporation
    99#
    1010# This file is part of VirtualBox Open Source Edition (OSE), as
     
    2727
    2828XNU_VERSION=`LC_ALL=C uname -r | LC_ALL=C cut -d . -f 1`
    29 if [ "$XNU_VERSION" -ge "9" ]; then
    30   DRVNAME="VBoxDrv.kext"
    31 else
    32   DRVNAME="VBoxDrvTiger.kext"
    33 fi
     29DRVNAME="VBoxDrv.kext"
    3430BUNDLE="org.virtualbox.kext.VBoxDrv"
    3531
  • trunk/src/VBox/HostDrivers/VBoxNetAdp/darwin/loadnetadp.sh

    r28800 r29844  
    55
    66#
    7 # Copyright (C) 2006-2008 Oracle Corporation
     7# Copyright (C) 2006-2010 Oracle Corporation
    88#
    99# This file is part of VirtualBox Open Source Edition (OSE), as
     
    2222BUNDLE="org.virtualbox.kext.VBoxNetAdp"
    2323
    24 if [ "$XNU_VERSION" -ge "9" ]; then
    25     DEP_DRVNAME="VBoxDrv.kext"
    26 else
    27     DEP_DRVNAME="VBoxDrvTiger.kext"
    28 fi
     24DEP_DRVNAME="VBoxDrv.kext"
    2925DEP_BUNDLE="org.virtualbox.kext.VBoxDrv"
    3026
  • trunk/src/VBox/HostDrivers/VBoxNetFlt/darwin/loadnetflt.sh

    r28800 r29844  
    55
    66#
    7 # Copyright (C) 2006-2008 Oracle Corporation
     7# Copyright (C) 2006-2010 Oracle Corporation
    88#
    99# This file is part of VirtualBox Open Source Edition (OSE), as
     
    2222BUNDLE="org.virtualbox.kext.VBoxNetFlt"
    2323
    24 if [ "$XNU_VERSION" -ge "9" ]; then
    25     DEP_DRVNAME="VBoxDrv.kext"
    26 else
    27     DEP_DRVNAME="VBoxDrvTiger.kext"
    28 fi
     24DEP_DRVNAME="VBoxDrv.kext"
    2925DEP_BUNDLE="org.virtualbox.kext.VBoxDrv"
    3026
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