VirtualBox

source: vbox/trunk/src/VBox/HostDrivers/Support/Makefile.kmk@ 32189

Last change on this file since 32189 was 32183, checked in by vboxsync, 14 years ago

Linux Installer/Additions: attempt to properly register the host/guest kernel modules at DKMS and use the setup function of the service script to compile the modules instead of doing this separately in the installer scripts

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 12.9 KB
Line 
1# $Id: Makefile.kmk 32183 2010-09-01 15:53:42Z vboxsync $
2## @file
3# Sub-Makefile for the support library and the drivers/modules/kexts it uses.
4#
5
6#
7# Copyright (C) 2006-2010 Oracle Corporation
8#
9# This file is part of VirtualBox Open Source Edition (OSE), as
10# available from http://www.virtualbox.org. This file is free software;
11# you can redistribute it and/or modify it under the terms of the GNU
12# General Public License (GPL) as published by the Free Software
13# Foundation, in version 2 as it comes in the "COPYING" file of the
14# VirtualBox OSE distribution. VirtualBox OSE is distributed in the
15# hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
16#
17# The contents of this file may alternatively be used under the terms
18# of the Common Development and Distribution License Version 1.0
19# (CDDL) only, as it comes in the "COPYING.CDDL" file of the
20# VirtualBox OSE distribution, in which case the provisions of the
21# CDDL are applicable instead of those of the GPL.
22#
23# You may elect to license modified versions of this file under the
24# terms and conditions of either the GPL or the CDDL or both.
25#
26
27SUB_DEPTH = ../../../..
28include $(KBUILD_PATH)/subheader.kmk
29
30#
31# Targets
32#
33LIBRARIES += SUPR3 SUPR3Static SUPR3HardenedStatic
34ifndef VBOX_ONLY_DOCS
35 if1of ($(VBOX_LDR_FMT), pe lx)
36 LIBRARIES += SUPR0
37 endif
38endif
39if !defined(VBOX_ONLY_DOCS) && !defined(VBOX_ONLY_TESTSUITE)
40 ifdef VBOX_WITH_SUPSVC
41 PROGRAMS += VBoxSupSvc
42 endif
43 ifdef VBOX_WITH_VBOXDRV
44 LIBRARIES += SUPR0IdcClient
45 SYSMODS.freebsd += vboxdrv
46 SYSMODS.linux += vboxdrv
47 SYSMODS.win += VBoxDrv
48 SYSMODS.os2 += VBoxDrv
49 SYSMODS.solaris += vboxdrv
50 endif
51 INSTALLS.linux += vboxdrv-mod vboxdrv-sh vboxdrv-dkms
52 INSTALLS.freebsd += vboxdrv-mod vboxdrv-sh
53
54 #
55 # Include sub-makefile(s).
56 #
57 include $(PATH_SUB_CURRENT)/testcase/Makefile.kmk
58
59 #
60 # Populate FILES_VBOXDRV_NOBIN and FILES_VBOXDRV_BIN
61 #
62 ifeq ($(KBUILD_TARGET),linux)
63 include $(PATH_SUB_CURRENT)/linux/files_vboxdrv
64 endif
65 ifeq ($(KBUILD_TARGET),freebsd)
66 include $(PATH_SUB_CURRENT)/freebsd/files_vboxdrv
67 endif
68endif # !defined(VBOX_ONLY_DOCS) && !defined(VBOX_ONLY_TESTSUITE)
69
70
71#
72# The Ring-3 Support Library (this is linked into the IPRT dll, VBoxRT).
73#
74ifneq ($(filter l4%,$(KBUILD_TARGET) $(BUILD_TARGET_SUB)),)
75 # L4 has trouble with -pedantic. It also make trouble when inlining is not enabled.
76 SUPR3_TEMPLATE = VBOXR3NP
77else
78 SUPR3_TEMPLATE = VBOXR3
79endif
80SUPR3_DEFS = \
81 IN_SUP_R3 IN_RT_R3 \
82 $(if $(VBOX_WITH_SUPSVC),VBOX_WITH_SUPSVC) \
83 $(if $(VBOX_WITH_MAIN),VBOX_WITH_MAIN,)
84SUPR3_INCS := $(PATH_SUB_CURRENT)
85SUPR3_INCS.l4 = $(L4_INCDIR)
86SUPR3_SOURCES = \
87 SUPLib.cpp \
88 SUPLibSem.cpp \
89 SUPR3HardenedIPRT.cpp \
90 SUPR3HardenedVerify.cpp \
91 $(KBUILD_TARGET)/SUPLib-$(KBUILD_TARGET).cpp
92
93#
94# Static version of SUPR3.
95#
96SUPR3Static_TEMPLATE = VBOXR3STATIC
97SUPR3Static_EXTENDS = SUPR3
98
99#
100# The static part of the hardened support library (ring-3).
101#
102SUPR3HardenedStatic_TEMPLATE = VBOXR3HARDENEDLIB
103SUPR3HardenedStatic_DEFS = IN_SUP_HARDENED_R3
104SUPR3HardenedStatic_DEFS += \
105 $(if $(VBOX_WITH_SUPSVC),VBOX_WITH_SUPSVC,) \
106 $(if $(VBOX_WITH_MAIN),VBOX_WITH_MAIN,)
107SUPR3HardenedStatic_INCS = .
108SUPR3HardenedStatic_SOURCES = \
109 SUPR3HardenedMain.cpp \
110 SUPR3HardenedVerify.cpp \
111 $(KBUILD_TARGET)/SUPLib-$(KBUILD_TARGET).cpp
112
113#
114# VBoxSupSvc - The system wide service/daemon.
115#
116VBoxSupSvc_TEMPLATE = VBOXR3EXE
117VBoxSupSvc_SOURCES = \
118 SUPSvc.cpp \
119 SUPSvcGlobal.cpp \
120 $(KBUILD_TARGET)/SUPSvc-$(KBUILD_TARGET).cpp
121if1of ($(KBUILD_TARGET), win)
122 VBoxSupSvc_SOURCES += \
123 SUPSvcGrant.cpp
124endif
125ifn1of ($(KBUILD_TARGET), win)
126 VBoxSupSvc_SOURCES += \
127 SUPSvcMain-posix.cpp
128endif
129VBoxSupSvc_LIBS = \
130 $(LIB_RUNTIME)
131
132
133#
134# SUPR0 - The Ring-0 Import / Thunk library.
135#
136SUPR0_TEMPLATE = VBoxR0
137ifeq ($(VBOX_LDR_FMT),pe)
138 SUPR0_SOURCES += SUPR0.def
139endif
140ifeq ($(VBOX_LDR_FMT),lx)
141SUPR0_SOURCES += $$(PATH_SUPR0)/SUPR0.def
142$$(PATH_SUPR0)/SUPR0.def: $(PATH_SUB_CURRENT)/SUPR0.def | $$(dir $$@)
143 $(SED) \
144 -e 's/^[ \t][ \t]*\([gA-Z]\)/ _\1/' \
145 -e 's/[ \t]DATA[ \t]*/ /' \
146 -e 's/g_pSUPGlobalInfoPage/g_SUPGlobalInfoPage/' \
147 --output $@.tmp\
148 $<
149 $(MV) -f $@.tmp $@
150endif
151
152
153#
154# SUPR0IdcClient - The Ring-0 IDC client driver library.
155#
156SUPR0IdcClient_TEMPLATE = VBOXR0DRV
157SUPR0IdcClient_DEFS = IN_RT_R0 IN_SUP_R0 IN_SUP_STATIC
158SUPR0IdcClient_SDKS.win = W2K3DDK WINPSDKINCS
159SUPR0IdcClient_SOURCES.$(KBUILD_TARGET) = \
160 $(KBUILD_TARGET)/SUPR0IdcClient-$(KBUILD_TARGET).c
161SUPR0IdcClient_SOURCES = \
162 SUPR0IdcClient.c \
163 SUPR0IdcClientComponent.c \
164 SUPR0IdcClientStubs.c
165
166
167if !defined(VBOX_ONLY_DOCS) && !defined(VBOX_ONLY_TESTSUITE)
168
169#
170# VBoxDrv.sys - The Windows driver.
171#
172## @todo consoliate all the targets into a single mess.
173ifeq ($(KBUILD_TARGET),win)
174VBoxDrv_TEMPLATE = VBOXR0DRV
175ifdef VBOX_SIGNING_MODE
176 VBoxDrv_NOINST = true
177endif
178VBoxDrv_DEFS = IN_RT_R0 IN_SUP_R0 SUPDRV_WITH_RELEASE_LOGGER
179ifdef VBOX_WITHOUT_NATIVE_R0_LOADER
180 VBoxDrv_DEFS += VBOX_WITHOUT_NATIVE_R0_LOADER
181endif
182ifdef VBOX_WITH_VMMR0_DISABLE_PREEMPTION
183VBoxDrv_DEFS += VBOX_WITH_VMMR0_DISABLE_PREEMPTION
184endif
185VBoxDrv_SDKS = W2K3DDK WINPSDKINCS
186VBoxDrv_INCS := $(PATH_SUB_CURRENT)
187VBoxDrv_SOURCES = \
188 win/SUPDrv-win.cpp \
189 win/SUPDrvA-win.asm \
190 SUPDrv.c \
191 SUPDrvSem.c \
192 win/VBoxDrv.rc
193VBoxDrv_LDFLAGS.x86 = -Entry:DriverEntry@8
194VBoxDrv_LDFLAGS.amd64 = -Entry:DriverEntry
195VBoxDrv_LIBS = \
196 $(PATH_SDK_W2K3DDK_LIB)/ntoskrnl.lib \
197 $(PATH_SDK_W2K3DDK_LIB)/hal.lib \
198 $(PATH_LIB)/RuntimeR0Drv$(VBOX_SUFF_LIB)
199
200
201INSTALLS += VBoxDrv-inf
202VBoxDrv-inf_INST = $(INST_BIN)
203VBoxDrv-inf_MODE = a+r,u+w
204VBoxDrv-inf_SOURCES = \
205 $(PATH_TARGET)/VBoxDrvCat.dir/VBoxDrv.inf
206VBoxDrv-inf_CLEAN = $(VBoxDrv-inf_SOURCES)
207VBoxDrv-inf_BLDDIRS = $(PATH_TARGET)/VBoxDrvCat.dir
208
209$(PATH_TARGET)/VBoxDrvCat.dir/VBoxDrv.inf: $(PATH_SUB_CURRENT)/win/VBoxDrv.inf $(MAKEFILE_CURRENT) | $$(call DIRDEP,$$(@D))
210 $(call MSG_GENERATE,VBoxDrv-inf,$@,$<)
211 $(call VBOX_EDIT_INF_FN,$<,$@)
212
213 ifdef VBOX_SIGNING_MODE
214VBoxDrv-inf_SOURCES += \
215 $(PATH_TARGET)/VBoxDrvCat.dir/VBoxDrv.sys \
216 $(PATH_TARGET)/VBoxDrvCat.dir/VBoxDrv.cat
217
218$(PATH_TARGET)/VBoxDrvCat.dir/VBoxDrv.sys: $$(TARGET_VBoxDrv) | $$(call DIRDEP,$$(@D))
219 $(INSTALL) -m 644 $< $(@D)
220
221$(PATH_TARGET)/VBoxDrvCat.dir/VBoxDrv.cat: \
222 $(PATH_TARGET)/VBoxDrvCat.dir/VBoxDrv.inf \
223 $(PATH_TARGET)/VBoxDrvCat.dir/VBoxDrv.sys
224 $(call MSG_TOOL,Inf2Cat,VBoxDrv-inf,$@,$<)
225 $(call VBOX_MAKE_CAT_FN, $(@D),$@)
226 endif # signing
227endif # win
228
229
230#
231# vboxdrv.ko - The Linux Kernel Module (syntax check only).
232#
233ifeq ($(KBUILD_TARGET),linux)
234vboxdrv_TEMPLATE = VBOXR0DRV
235vboxdrv_NOINST = true
236vboxdrv_DEFS = KBUILD_MODNAME=KBUILD_STR\(vboxdrv\) KBUILD_BASENAME=KBUILD_STR\(vboxdrv\) MODULE IN_RT_R0 IN_SUP_R0 CONFIG_VBOXDRV_AS_MISC
237ifdef VBOX_LINUX_VERSION_2_4
238vboxdrv_DEFS += EXPORT_SYMTAB
239endif
240vboxdrv_INCS := \
241 $(PATH_SUB_CURRENT) \
242 $(PATH_ROOT)/src/VBox/Runtime/r0drv/linux
243vboxdrv_LIBS = $(PATH_LIB)/RuntimeR0Drv$(VBOX_SUFF_LIB)
244vboxdrv_LIBS.debug = $(vboxdrv_LIBS) $(VBOX_GCC_LIBGCC)
245vboxdrv_SOURCES = \
246 $(KBUILD_TARGET)/SUPDrv-$(KBUILD_TARGET).c \
247 SUPDrv.c \
248 SUPDrvSem.c
249ifndef VBOX_LINUX_VERSION_2_4
250vboxdrv_SOURCES += \
251 $(KBUILD_TARGET)/SUPDrv-$(KBUILD_TARGET).mod.c
252endif
253
254
255#
256# Targets for installing the linux sources.
257#
258vboxdrv-mod_INST = bin/src/vboxdrv/
259vboxdrv-mod_MODE = a+r,u+w
260vboxdrv-mod_SOURCES = $(subst ",,$(FILES_VBOXDRV_NOBIN)) #"
261vboxdrv-mod_SOURCES += \
262 $(PATH_vboxdrv-mod)/Makefile
263vboxdrv-mod_CLEAN = \
264 $(PATH_vboxdrv-mod)/Makefile
265
266vboxdrv-sh_INST = bin/src/vboxdrv
267vboxdrv-sh_MODE = a+rx,u+w
268vboxdrv-sh_SOURCES = $(subst ",,$(FILES_VBOXDRV_BIN)) #"
269vboxdrv-sh_SOURCES += \
270 $(PATH_vboxdrv-sh)/build_in_tmp \
271 $(PATH_ROOT)/src/VBox/HostDrivers/linux/do_Module.symvers
272vboxdrv-sh_CLEAN = \
273 $(PATH_TARGET)/vboxdrv-sh-1.dep \
274 $(PATH_vboxdrv-sh)/build_in_tmp
275
276# Scripts needed for building the kernel modules
277
278$$(PATH_vboxdrv-sh)/build_in_tmp: \
279 $(PATH_ROOT)/src/VBox/HostDrivers/linux/build_in_tmp \
280 $(VBOX_VERSION_STAMP) \
281 | $$(dir $$@)
282 $(call MSG_TOOL,Creating,,$@)
283 $(QUIET)$(SED) \
284 -e "s;_VERSION_;${VBOX_VERSION_STRING};g" \
285 -e "s;_MODULE_;vboxdrv;g" \
286 -e "s;_BUILDTYPE_;${KBUILD_TYPE};g" --output $@ $<
287 $(QUIET)chmod 0755 $@
288
289includedep $(PATH_TARGET)/vboxdrv-sh-1.dep
290$$(PATH_vboxdrv-mod)/Makefile: \
291 $(PATH_SUB_CURRENT)/linux/Makefile \
292 $$(if $$(eq $$(Support/linux/Makefile_VBOX_HARDENED),$$(VBOX_WITH_HARDENING)),,FORCE) \
293 | $$(dir $$@)
294 $(call MSG_TOOL,Creating,,$@)
295 ifndef VBOX_WITH_HARDENING
296 $(QUIET)$(SED) -e "s;-DVBOX_WITH_HARDENING;;g" --output $@ $<
297 else
298 $(QUIET)$(CP) -f $< $@
299 endif
300 %$(QUIET2)$(RM) -f -- $(PATH_TARGET)/vboxdrv-sh-1.dep
301 %$(QUIET2)$(APPEND) '$(PATH_TARGET)/vboxdrv-sh-1.dep' 'Support/linux/Makefile_VBOX_HARDENED=$(VBOX_WITH_HARDENING)'
302
303endif # real linux
304
305
306
307#
308# VBoxDrv.kext - The Darwin Kernel Extension.
309#
310ifeq ($(KBUILD_TARGET),darwin)
311# Leopard (x86) and Snow Leopard (x86/amd64)
312SYSMODS += VBoxDrv
313VBoxDrv_TEMPLATE = VBOXR0DRV
314VBoxDrv_INST = $(INST_VBOXDRV)Contents/MacOS/
315VBoxDrv_DEFS := VBOX_WITH_HOST_VMX IN_RT_R0 IN_SUP_R0 SUPDRV_WITH_RELEASE_LOGGER VBOX_SVN_REV=$(VBOX_SVN_REV)
316VBoxDrv_DEFS.debug = DEBUG_DARWIN_GIP
317VBoxDrv_INCS = .
318VBoxDrv_LIBS = $(PATH_LIB)/RuntimeR0Drv$(VBOX_SUFF_LIB)
319#VBoxDrv_LDFLAGS = -v -Wl,-whyload -Wl,-v -Wl,-whatsloaded
320VBoxDrv_SOURCES = \
321 SUPDrv.c \
322 SUPDrvSem.c \
323 $(KBUILD_TARGET)/SUPDrv-$(KBUILD_TARGET).cpp
324
325INSTALLS += VBoxDrv.kext
326VBoxDrv.kext_INST = $(INST_VBOXDRV)Contents/
327VBoxDrv.kext_SOURCES = $(PATH_VBoxDrv.kext)/Info.plist
328VBoxDrv.kext_CLEAN = $(PATH_VBoxDrv.kext)/Info.plist
329
330$$(PATH_VBoxDrv.kext)/Info.plist: \
331 $(PATH_SUB_CURRENT)/darwin/Info.plist \
332 $(VBOX_VERSION_MK) | $$(dir $$@)
333 $(call MSG_GENERATE,VBoxDrv,$@,$<)
334 $(QUIET)$(RM) -f $@
335 $(QUIET)$(SED) \
336 -e 's/@VBOX_VERSION_STRING@/$(VBOX_VERSION_STRING)/g' \
337 -e 's/@VBOX_VERSION_MAJOR@/$(VBOX_VERSION_MAJOR)/g' \
338 -e 's/@VBOX_VERSION_MINOR@/$(VBOX_VERSION_MINOR)/g' \
339 -e 's/@VBOX_VERSION_BUILD@/$(VBOX_VERSION_BUILD)/g' \
340 -e 's/@VBOX_VENDOR@/$(VBOX_VENDOR)/g' \
341 -e 's/@VBOX_PRODUCT@/$(VBOX_PRODUCT)/g' \
342 -e 's/@VBOX_C_YEAR@/$(VBOX_C_YEAR)/g' \
343 --output $@ \
344 $<
345
346# Common manual loader script.
347INSTALLS += Scripts
348Scripts_INST = $(INST_DIST)
349Scripts_SOURCES = \
350 darwin/load.sh
351
352endif # darwin
353ifeq ($(KBUILD_TARGET),os2)
354
355#
356# VBoxDrv.sys - The OS/2 driver.
357#
358VBoxDrv_TEMPLATE = VBOXR0DRV
359VBoxDrv_DEFS = IN_RT_R0 IN_SUP_R0
360VBoxDrv_INCS := $(PATH_SUB_CURRENT)
361#VBoxDrv_LDFLAGS = -s -t -v
362VBoxDrv_SOURCES = \
363 os2/SUPDrvA-os2.asm \
364 os2/SUPDrv-os2.def
365VBoxDrv_LIBS = \
366 $(TARGET_VBoxDrvLib) \
367 $(PATH_LIB)/RuntimeR0Drv$(VBOX_SUFF_LIB) \
368 $(VBOX_GCC_LIBGCC) \
369 end
370
371# temp hack to ensure that SUPDrvA-os2.asm is first in the link.
372LIBRARIES += VBoxDrvLib
373VBoxDrvLib_TEMPLATE = VBOXR0DRV
374VBoxDrvLib_NOINST = 1
375VBoxDrvLib_DEFS = IN_RT_R0 IN_SUP_R0
376VBoxDrvLib_INCS := \
377 . \
378 $(PATH_ROOT)/src/VBox/Runtime/include
379VBoxDrvLib_SOURCES = \
380 os2/SUPDrv-os2.cpp \
381 SUPDrv.c \
382 SUPDrvSem.c
383
384endif # os2
385ifeq ($(KBUILD_TARGET),freebsd)
386
387#
388# vboxdrv.ko - The FreeBSD Kernel Module.
389#
390vboxdrv_TEMPLATE = VBOXR0DRV
391vboxdrv_DEFS = IN_RT_R0 IN_SUP_R0 SUPDRV_WITH_RELEASE_LOGGER VBOX_SVN_REV=$(VBOX_SVN_REV)
392vboxdrv_INCS := $(PATH_SUB_CURRENT)
393vboxdrv_LIBS = $(PATH_LIB)/RuntimeR0Drv$(VBOX_SUFF_LIB)
394vboxdrv_SOURCES := \
395 $(KBUILD_TARGET)/SUPDrv-$(KBUILD_TARGET).c \
396 $(PATH_SUB_CURRENT)/$(KBUILD_TARGET)/SUPDrv-$(KBUILD_TARGET).def \
397 SUPDrv.c \
398 SUPDrvSem.c
399## @todo the SUPDrv-freebsd.def is most probably gonna break it and require build system hacking...
400
401#
402# Targets for installing the freebsd sources.
403#
404vboxdrv-mod_INST = bin/src/vboxdrv/
405vboxdrv-mod_MODE = a+r,u+w
406vboxdrv-mod_SOURCES = $(subst ",,$(FILES_VBOXDRV_NOBIN)) #"
407vboxdrv-mod_SOURCES += \
408 $(PATH_vboxdrv-mod)/Makefile
409vboxdrv-mod_CLEAN = \
410 $(PATH_vboxdrv-mod)/Makefile
411
412$$(PATH_vboxdrv-mod)/Makefile: \
413 $(PATH_SUB_CURRENT)/freebsd/Makefile \
414 $$(if $$(eq $$(Support/freebsd/Makefile_VBOX_HARDENED),$$(VBOX_WITH_HARDENING)),,FORCE) \
415 | $$(dir $$@)
416 $(call MSG_TOOL,Creating,,$@)
417 ifndef VBOX_WITH_HARDENING
418 $(QUIET)$(SED) -e "s;-DVBOX_WITH_HARDENING;;g" --output $@ $<
419 else
420 $(QUIET)$(CP) -f $< $@
421 endif
422
423endif # freebsd
424ifeq ($(KBUILD_TARGET),solaris)
425
426#
427# vboxdrv.o - The Solaris Kernel Module.
428#
429vboxdrv_TEMPLATE = VBOXR0DRV
430vboxdrv_DEFS = IN_RT_R0 IN_SUP_R0 SUPDRV_WITH_RELEASE_LOGGER
431ifdef VBOX_WITH_NETFLT
432 vboxdrv_DEFS += VBOX_WITH_NETFLT
433endif
434vboxdrv_DEFS += VBOX_SVN_REV=$(VBOX_SVN_REV)
435vboxdrv_DEPS += $(VBOX_SVN_REV_KMK)
436vboxdrv_INCS := $(PATH_SUB_CURRENT)
437vboxdrv_LIBS = $(PATH_LIB)/RuntimeR0Drv$(VBOX_SUFF_LIB)
438vboxdrv_SOURCES = \
439 $(KBUILD_TARGET)/SUPDrv-$(KBUILD_TARGET).c \
440 SUPDrv.c \
441 SUPDrvSem.c
442
443endif # solaris
444
445#
446# SUPDrv.c needs the VBOX_SVN_REV.
447#
448SUPDrv.c_DEFS += VBOX_SVN_REV=$(VBOX_SVN_REV)
449
450
451endif # !defined(VBOX_ONLY_DOCS) && !defined(VBOX_ONLY_TESTSUITE)
452include $(KBUILD_PATH)/subfooter.kmk
453
Note: See TracBrowser for help on using the repository browser.

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