VirtualBox

source: vbox/trunk/src/VBox/HostDrivers/VBoxNetAdp/linux/Makefile@ 25800

Last change on this file since 25800 was 25097, checked in by vboxsync, 15 years ago

Linux installer: depmod -ae => depmod -a (the latter is sufficient and prevents a warning on recent Linux distributions)

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 6.8 KB
Line 
1#
2# Makefile for the VirtualBox Linux Host Virtual Network Adapter Driver.
3# (For 2.6.x this file must be called 'Makefile'!)
4#
5
6#
7#
8# Copyright (C) 2006-2007 Sun Microsystems, Inc.
9#
10# This file is part of VirtualBox Open Source Edition (OSE), as
11# available from http://www.virtualbox.org. This file is free software;
12# you can redistribute it and/or modify it under the terms of the GNU
13# General Public License (GPL) as published by the Free Software
14# Foundation, in version 2 as it comes in the "COPYING" file of the
15# VirtualBox OSE distribution. VirtualBox OSE is distributed in the
16# hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
17#
18# Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa
19# Clara, CA 95054 USA or visit http://www.sun.com if you need
20# additional information or have any questions.
21#
22
23#
24# First, figure out which architecture we're targeting and the build type.
25# (We have to support basic cross building (ARCH=i386|x86_64).)
26# While at it, warn about BUILD_* vars found to help with user problems.
27#
28ifeq ($(filter-out x86_64 amd64 AMD64,$(shell uname -m)),)
29 BUILD_TARGET_ARCH_DEF := amd64
30else
31 BUILD_TARGET_ARCH_DEF := x86
32endif
33ifneq ($(filter-out amd64 x86,$(BUILD_TARGET_ARCH)),)
34 $(warning Ignoring unknown BUILD_TARGET_ARCH value '$(BUILD_TARGET_ARCH)'.)
35 BUILD_TARGET_ARCH :=
36endif
37ifeq ($(BUILD_TARGET_ARCH),)
38 ifeq ($(ARCH),x86_64)
39 BUILD_TARGET_ARCH := amd64
40 else
41 ifeq ($(ARCH),i386)
42 BUILD_TARGET_ARCH := x86
43 else
44 BUILD_TARGET_ARCH := $(BUILD_TARGET_ARCH_DEF)
45 endif
46 endif
47else
48 ifneq ($(BUILD_TARGET_ARCH),$(BUILD_TARGET_ARCH_DEF))
49 $(warning Using BUILD_TARGET_ARCH='$(BUILD_TARGET_ARCH)' from the $(origin BUILD_TARGET_ARCH).)
50 endif
51endif
52
53ifneq ($(filter-out release profile debug strict,$(BUILD_TYPE)),)
54 $(warning Ignoring unknown BUILD_TYPE value '$(BUILD_TYPE)'.)
55 BUILD_TYPE :=
56endif
57ifeq ($(BUILD_TYPE),)
58 BUILD_TYPE := release
59else
60 ifneq ($(BUILD_TYPE),release)
61 $(warning Using BUILD_TYPE='$(BUILD_TYPE)' from the $(origin BUILD_TYPE).)
62 endif
63endif
64
65# override is required by the Debian guys
66override MODULE = vboxnetadp
67OBJS = \
68 linux/VBoxNetAdp-linux.o \
69 VBoxNetAdp.o
70ifeq ($(BUILD_TARGET_ARCH),x86)
71OBJS += math/gcc/divdi3.o \
72 math/gcc/moddi3.o \
73 math/gcc/qdivrem.o \
74 math/gcc/udivdi3.o \
75 math/gcc/divdi3.o \
76 math/gcc/umoddi3.o
77endif
78
79ifneq ($(MAKECMDGOALS),clean)
80
81ifeq ($(KERNELRELEASE),)
82
83 #
84 # building from this directory
85 #
86
87 # kernel base directory
88 ifndef KERN_DIR
89 # build for the current kernel, version check
90 KERN_DIR := /lib/modules/$(shell uname -r)/build
91 ifneq ($(shell if test -d $(KERN_DIR); then echo yes; fi),yes)
92 KERN_DIR := /usr/src/linux
93 ifneq ($(shell if test -d $(KERN_DIR); then echo yes; fi),yes)
94 $(error Error: unable to find the sources of your current Linux kernel. \
95 Specify KERN_DIR=<directory> and run Make again)
96 endif
97 $(warning Warning: using /usr/src/linux as the source directory of your \
98 Linux kernel. If this is not correct, specify \
99 KERN_DIR=<directory> and run Make again.)
100 endif
101 # check if versions match -- works only for later 2.6 kernels
102 VBOX_KERN_VER := $(shell $(MAKE) -sC $(KERN_DIR) --no-print-directory kernelrelease 2> /dev/null || true)
103 ifneq ($(VBOX_KERN_VER),)
104 ifneq ($(VBOX_KERN_VER),$(shell uname -r))
105 $(error Error: /usr/src/linux (version $(VBOX_KERN_VER)) does not match \
106 the current kernel (version $(shell uname -r)))
107 endif
108 endif
109 else
110 # build for a dedicated kernel, no version check
111 ifneq ($(shell if test -d $(KERN_DIR); then echo yes; fi),yes)
112 $(error Error: KERN_DIR does not point to a directory)
113 endif
114 endif
115
116 # includes
117 ifndef KERN_INCL
118 KERN_INCL = $(KERN_DIR)/include
119 endif
120 ifneq ($(shell if test -d $(KERN_INCL); then echo yes; fi),yes)
121 $(error Error: unable to find the include directory for your current Linux \
122 kernel. Specify KERN_INCL=<directory> and run Make again)
123 endif
124
125 # module install dir, only for current kernel
126 ifneq ($(filter install install_rpm,$(MAKECMDGOALS)),)
127 ifndef MODULE_DIR
128 MODULE_DIR_TST := /lib/modules/$(shell uname -r)
129 ifeq ($(shell if test -d $(MODULE_DIR_TST); then echo yes; fi),yes)
130 MODULE_DIR := $(MODULE_DIR_TST)/misc
131 else
132 $(error Unable to find the folder to install the support driver to)
133 endif
134 endif # MODULE_DIR unspecified
135 endif
136
137else # neq($(KERNELRELEASE),)
138
139 #
140 # building from kbuild (make -C <kernel_directory> M=`pwd`)
141 #
142
143endif # neq($(KERNELRELEASE),)
144
145# debug - show guesses.
146ifdef DEBUG
147$(warning dbg: KERN_DIR = $(KERN_DIR))
148$(warning dbg: KERN_INCL = $(KERN_INCL))
149$(warning dbg: MODULE_DIR = $(MODULE_DIR))
150endif
151
152KBUILD_VERBOSE ?= 1
153
154#
155# Compiler options
156#
157ifndef INCL
158 INCL := $(addprefix -I,$(KERN_INCL) $(EXTRA_INCL))
159 ifndef KBUILD_EXTMOD
160 KBUILD_EXTMOD := $(shell pwd)
161 endif
162 INCL += $(addprefix -I$(KBUILD_EXTMOD),/ /include /r0drv/linux)
163 export INCL
164endif
165KFLAGS := -D__KERNEL__ -DMODULE -DRT_OS_LINUX -DIN_RING0 -DIN_RT_R0 -DIN_SUP_R0 -DVBOX -DRT_WITH_VBOX -DVBOX_WITH_HARDENING
166ifdef VBOX_REDHAT_KABI
167 KFLAGS += -DVBOX_REDHAT_KABI
168endif
169ifeq ($(BUILD_TARGET_ARCH),amd64)
170 KFLAGS += -DRT_ARCH_AMD64
171else
172 KFLAGS += -DRT_ARCH_X86
173endif
174# must be consistent with Config.kmk!
175KFLAGS += -DVBOX_WITH_64_BITS_GUESTS
176ifeq ($(BUILD_TYPE),debug)
177 KFLAGS += -DDEBUG -DDEBUG_$(USER) -g
178 # IPRT_DEBUG_SEMS indicates thread wrt sems state via the comm field.
179 KFLAGS += -DIPRT_DEBUG_SEMS
180endif
181
182# By default we use remap_pfn_range() kernel API to make kernel pages
183# visible for userland. Unfortuately, it leads to situation that
184# during debug session all structures on that page (such as PVM pointer)
185# are not accessible to the debugger (see #3214).
186# This code enables experimental support
187# for vm_insert_page() kernel API, allowing to export kernel pages
188# to the userland in more debugger-friendly way. Due to stability
189# concerns, not enabled by default yet.
190ifdef VBOX_USE_INSERT_PAGE
191 KFLAGS += -DVBOX_USE_INSERT_PAGE
192endif
193
194MODULE_EXT := ko
195$(MODULE)-y := $(OBJS)
196
197# build defs
198EXTRA_CFLAGS += $(INCL) $(KFLAGS) $(KDEBUG)
199
200all: $(MODULE)
201
202obj-m += $(MODULE).o
203
204$(MODULE):
205 $(MAKE) KBUILD_VERBOSE=$(KBUILD_VERBOSE) -C $(KERN_DIR) SUBDIRS=$(CURDIR) SRCROOT=$(CURDIR) modules
206
207install: $(MODULE)
208 @mkdir -p $(MODULE_DIR); \
209 install -m 0664 -o root -g root $(MODULE).$(MODULE_EXT) $(MODULE_DIR); \
210 PATH="$(PATH):/bin:/sbin" depmod -a; \
211 rm -f /etc/vbox/module_not_compiled
212
213install_rpm: $(MODULE)
214 @mkdir -p $(MODULE_DIR); \
215 install -m 0664 $(MODULE).$(MODULE_EXT) $(MODULE_DIR)
216
217endif # eq($(MAKECMDGOALS),clean)
218
219# important: Don't remove Module.symvers! DKMS does 'make clean' before building ...
220clean:
221 for f in . linux r0drv r0drv/linux VBox common/err common/string common/log generic math/gcc; \
222 do rm -f $$f/*.o $$f/.*.cmd $$f/.*.flags; done
223 rm -rf .vboxnetadp* .tmp_ver* vboxnetadp.* Modules.symvers modules.order
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