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-2011 Oracle Corporation
|
---|
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 |
|
---|
19 | #
|
---|
20 | # First, figure out which architecture we're targeting and the build type.
|
---|
21 | # (We have to support basic cross building (ARCH=i386|x86_64).)
|
---|
22 | # While at it, warn about BUILD_* vars found to help with user problems.
|
---|
23 | #
|
---|
24 | ifeq ($(filter-out x86_64 amd64 AMD64,$(shell uname -m)),)
|
---|
25 | BUILD_TARGET_ARCH_DEF := amd64
|
---|
26 | else
|
---|
27 | BUILD_TARGET_ARCH_DEF := x86
|
---|
28 | endif
|
---|
29 | ifneq ($(filter-out amd64 x86,$(BUILD_TARGET_ARCH)),)
|
---|
30 | $(warning Ignoring unknown BUILD_TARGET_ARCH value '$(BUILD_TARGET_ARCH)'.)
|
---|
31 | BUILD_TARGET_ARCH :=
|
---|
32 | endif
|
---|
33 | ifeq ($(BUILD_TARGET_ARCH),)
|
---|
34 | ifeq ($(ARCH),x86_64)
|
---|
35 | BUILD_TARGET_ARCH := amd64
|
---|
36 | else
|
---|
37 | ifeq ($(ARCH),i386)
|
---|
38 | BUILD_TARGET_ARCH := x86
|
---|
39 | else
|
---|
40 | BUILD_TARGET_ARCH := $(BUILD_TARGET_ARCH_DEF)
|
---|
41 | endif
|
---|
42 | endif
|
---|
43 | else
|
---|
44 | ifneq ($(BUILD_TARGET_ARCH),$(BUILD_TARGET_ARCH_DEF))
|
---|
45 | $(warning Using BUILD_TARGET_ARCH='$(BUILD_TARGET_ARCH)' from the $(origin BUILD_TARGET_ARCH).)
|
---|
46 | endif
|
---|
47 | endif
|
---|
48 |
|
---|
49 | ifneq ($(filter-out release profile debug strict,$(BUILD_TYPE)),)
|
---|
50 | $(warning Ignoring unknown BUILD_TYPE value '$(BUILD_TYPE)'.)
|
---|
51 | BUILD_TYPE :=
|
---|
52 | endif
|
---|
53 | ifeq ($(BUILD_TYPE),)
|
---|
54 | BUILD_TYPE := release
|
---|
55 | else
|
---|
56 | ifneq ($(BUILD_TYPE),release)
|
---|
57 | $(warning Using BUILD_TYPE='$(BUILD_TYPE)' from the $(origin BUILD_TYPE).)
|
---|
58 | endif
|
---|
59 | endif
|
---|
60 |
|
---|
61 | # override is required by the Debian guys
|
---|
62 | override MODULE = vboxnetadp
|
---|
63 | OBJS = \
|
---|
64 | linux/VBoxNetAdp-linux.o \
|
---|
65 | VBoxNetAdp.o
|
---|
66 | ifeq ($(BUILD_TARGET_ARCH),x86)
|
---|
67 | OBJS += math/gcc/divdi3.o \
|
---|
68 | math/gcc/moddi3.o \
|
---|
69 | math/gcc/qdivrem.o \
|
---|
70 | math/gcc/udivdi3.o \
|
---|
71 | math/gcc/divdi3.o \
|
---|
72 | math/gcc/umoddi3.o
|
---|
73 | endif
|
---|
74 |
|
---|
75 | ifneq ($(MAKECMDGOALS),clean)
|
---|
76 |
|
---|
77 | ifeq ($(KERNELRELEASE),)
|
---|
78 |
|
---|
79 | #
|
---|
80 | # building from this directory
|
---|
81 | #
|
---|
82 |
|
---|
83 | # kernel base directory
|
---|
84 | ifndef KERN_DIR
|
---|
85 | # build for the current kernel, version check
|
---|
86 | KERN_DIR := /lib/modules/$(shell uname -r)/build
|
---|
87 | ifneq ($(shell if test -d $(KERN_DIR); then echo yes; fi),yes)
|
---|
88 | KERN_DIR := /usr/src/linux
|
---|
89 | ifneq ($(shell if test -d $(KERN_DIR); then echo yes; fi),yes)
|
---|
90 | $(error Error: unable to find the sources of your current Linux kernel. \
|
---|
91 | Specify KERN_DIR=<directory> and run Make again)
|
---|
92 | endif
|
---|
93 | $(warning Warning: using /usr/src/linux as the source directory of your \
|
---|
94 | Linux kernel. If this is not correct, specify \
|
---|
95 | KERN_DIR=<directory> and run Make again.)
|
---|
96 | endif
|
---|
97 | else
|
---|
98 | ifneq ($(shell if test -d $(KERN_DIR); then echo yes; fi),yes)
|
---|
99 | $(error Error: KERN_DIR does not point to a directory)
|
---|
100 | endif
|
---|
101 | endif
|
---|
102 |
|
---|
103 | # includes
|
---|
104 | ifndef KERN_INCL
|
---|
105 | KERN_INCL = $(KERN_DIR)/include
|
---|
106 | endif
|
---|
107 | ifneq ($(shell if test -d $(KERN_INCL); then echo yes; fi),yes)
|
---|
108 | $(error Error: unable to find the include directory for your current Linux \
|
---|
109 | kernel. Specify KERN_INCL=<directory> and run Make again)
|
---|
110 | endif
|
---|
111 |
|
---|
112 | # module install dir, only for current kernel
|
---|
113 | ifneq ($(filter install install_rpm,$(MAKECMDGOALS)),)
|
---|
114 | ifndef MODULE_DIR
|
---|
115 | MODULE_DIR_TST := /lib/modules/$(shell uname -r)
|
---|
116 | ifeq ($(shell if test -d $(MODULE_DIR_TST); then echo yes; fi),yes)
|
---|
117 | MODULE_DIR := $(MODULE_DIR_TST)/misc
|
---|
118 | else
|
---|
119 | $(error Unable to find the folder to install the support driver to)
|
---|
120 | endif
|
---|
121 | endif # MODULE_DIR unspecified
|
---|
122 | endif
|
---|
123 |
|
---|
124 | else # neq($(KERNELRELEASE),)
|
---|
125 |
|
---|
126 | #
|
---|
127 | # building from kbuild (make -C <kernel_directory> M=`pwd`)
|
---|
128 | #
|
---|
129 |
|
---|
130 | endif # neq($(KERNELRELEASE),)
|
---|
131 |
|
---|
132 | # debug - show guesses.
|
---|
133 | ifdef DEBUG
|
---|
134 | $(warning dbg: KERN_DIR = $(KERN_DIR))
|
---|
135 | $(warning dbg: KERN_INCL = $(KERN_INCL))
|
---|
136 | $(warning dbg: MODULE_DIR = $(MODULE_DIR))
|
---|
137 | endif
|
---|
138 |
|
---|
139 | KBUILD_VERBOSE ?= 1
|
---|
140 |
|
---|
141 | #
|
---|
142 | # Compiler options
|
---|
143 | #
|
---|
144 | ifndef INCL
|
---|
145 | INCL := $(addprefix -I,$(KERN_INCL) $(EXTRA_INCL))
|
---|
146 | ifndef KBUILD_EXTMOD
|
---|
147 | KBUILD_EXTMOD := $(shell pwd)
|
---|
148 | endif
|
---|
149 | INCL += $(addprefix -I$(KBUILD_EXTMOD),/ /include /r0drv/linux)
|
---|
150 | INCL += $(addprefix -I$(KBUILD_EXTMOD)/vboxnetadp,/ /include /r0drv/linux)
|
---|
151 | export INCL
|
---|
152 | endif
|
---|
153 | ifneq ($(wildcard $(KBUILD_EXTMOD)/vboxnetadp),)
|
---|
154 | MANGLING := $(KBUILD_EXTMOD)/vboxnetadp/include/VBox/SUPDrvMangling.h
|
---|
155 | else
|
---|
156 | MANGLING := $(KBUILD_EXTMOD)/include/VBox/SUPDrvMangling.h
|
---|
157 | endif
|
---|
158 | KFLAGS := -D__KERNEL__ -DMODULE -DRT_OS_LINUX -DIN_RING0 -DIN_RT_R0 \
|
---|
159 | -DIN_SUP_R0 -DVBOX -DRT_WITH_VBOX -DVBOX_WITH_HARDENING \
|
---|
160 | -Wno-declaration-after-statement
|
---|
161 | ifdef VBOX_REDHAT_KABI
|
---|
162 | KFLAGS += -DVBOX_REDHAT_KABI
|
---|
163 | endif
|
---|
164 | ifeq ($(BUILD_TARGET_ARCH),amd64)
|
---|
165 | KFLAGS += -DRT_ARCH_AMD64
|
---|
166 | else
|
---|
167 | KFLAGS += -DRT_ARCH_X86
|
---|
168 | endif
|
---|
169 | # must be consistent with Config.kmk!
|
---|
170 | KFLAGS += -DVBOX_WITH_64_BITS_GUESTS
|
---|
171 | ifeq ($(BUILD_TYPE),debug)
|
---|
172 | KFLAGS += -DDEBUG -DDEBUG_$(USER) -g
|
---|
173 | # IPRT_DEBUG_SEMS indicates thread wrt sems state via the comm field.
|
---|
174 | #KFLAGS += -DIPRT_DEBUG_SEMS
|
---|
175 | endif
|
---|
176 |
|
---|
177 | # By default we use remap_pfn_range() kernel API to make kernel pages
|
---|
178 | # visible for userland. Unfortunately, it leads to situation that
|
---|
179 | # during debug session all structures on that page (such as PVM pointer)
|
---|
180 | # are not accessible to the debugger (see #3214).
|
---|
181 | # This code enables experimental support
|
---|
182 | # for vm_insert_page() kernel API, allowing to export kernel pages
|
---|
183 | # to the userland in more debugger-friendly way. Due to stability
|
---|
184 | # concerns, not enabled by default yet.
|
---|
185 | ifdef VBOX_USE_INSERT_PAGE
|
---|
186 | KFLAGS += -DVBOX_USE_INSERT_PAGE
|
---|
187 | endif
|
---|
188 |
|
---|
189 | MODULE_EXT := ko
|
---|
190 | $(MODULE)-y := $(OBJS)
|
---|
191 |
|
---|
192 | # build defs
|
---|
193 | EXTRA_CFLAGS += -include $(MANGLING) $(INCL) $(KFLAGS) $(KDEBUG)
|
---|
194 |
|
---|
195 | all: $(MODULE)
|
---|
196 |
|
---|
197 | obj-m += $(MODULE).o
|
---|
198 |
|
---|
199 | # OL/UEK: disable module signing for external modules -- we don't have any private key
|
---|
200 | $(MODULE):
|
---|
201 | $(MAKE) KBUILD_VERBOSE=$(KBUILD_VERBOSE) SUBDIRS=$(CURDIR) SRCROOT=$(CURDIR) CONFIG_MODULE_SIG= -C $(KERN_DIR) modules
|
---|
202 |
|
---|
203 | install: $(MODULE)
|
---|
204 | @mkdir -p $(MODULE_DIR); \
|
---|
205 | install -m 0664 -o root -g root $(MODULE).$(MODULE_EXT) $(MODULE_DIR); \
|
---|
206 | PATH="$(PATH):/bin:/sbin" depmod -a; \
|
---|
207 | rm -f /etc/vbox/module_not_compiled
|
---|
208 |
|
---|
209 | install_rpm: $(MODULE)
|
---|
210 | @mkdir -p $(MODULE_DIR); \
|
---|
211 | install -m 0664 $(MODULE).$(MODULE_EXT) $(MODULE_DIR)
|
---|
212 |
|
---|
213 | else # eq ($(MAKECMDGOALS),clean)
|
---|
214 |
|
---|
215 | ifndef KERN_DIR
|
---|
216 | KERN_DIR := /lib/modules/$(shell uname -r)/build
|
---|
217 | ifeq ($(wildcard $(KERN_DIR)/Makefile),)
|
---|
218 | KERN_DIR := /usr/src/linux
|
---|
219 | endif
|
---|
220 | endif
|
---|
221 | ifeq ($(wildcard $(KERN_DIR)/Makefile),)
|
---|
222 |
|
---|
223 | clean:
|
---|
224 | find . \( -name \*.o -o -name \*.cmd \) -print0 | xargs -0 rm -f
|
---|
225 | rm -rf .tmp_ver* $(MODULE).* Module.symvers Modules.symvers modules.order
|
---|
226 |
|
---|
227 | else
|
---|
228 |
|
---|
229 | clean:
|
---|
230 | $(MAKE) KBUILD_VERBOSE=$(KBUILD_VERBOSE) SUBDIRS=$(CURDIR) SRCROOT=$(CURDIR) -C $(KERN_DIR) clean
|
---|
231 |
|
---|
232 | endif
|
---|
233 |
|
---|
234 | endif # eq($(MAKECMDGOALS),clean)
|
---|