1 | #
|
---|
2 | # Makefile for the VirtualBox Linux Host Virtual Network Adapter Driver.
|
---|
3 | #
|
---|
4 |
|
---|
5 | #
|
---|
6 | # Copyright (C) 2006-2019 Oracle Corporation
|
---|
7 | #
|
---|
8 | # This file is part of VirtualBox Open Source Edition (OSE), as
|
---|
9 | # available from http://www.virtualbox.org. This file is free software;
|
---|
10 | # you can redistribute it and/or modify it under the terms of the GNU
|
---|
11 | # General Public License (GPL) as published by the Free Software
|
---|
12 | # Foundation, in version 2 as it comes in the "COPYING" file of the
|
---|
13 | # VirtualBox OSE distribution. VirtualBox OSE is distributed in the
|
---|
14 | # hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
|
---|
15 | #
|
---|
16 | # The contents of this file may alternatively be used under the terms
|
---|
17 | # of the Common Development and Distribution License Version 1.0
|
---|
18 | # (CDDL) only, as it comes in the "COPYING.CDDL" file of the
|
---|
19 | # VirtualBox OSE distribution, in which case the provisions of the
|
---|
20 | # CDDL are applicable instead of those of the GPL.
|
---|
21 | #
|
---|
22 | # You may elect to license modified versions of this file under the
|
---|
23 | # terms and conditions of either the GPL or the CDDL or both.
|
---|
24 | #
|
---|
25 |
|
---|
26 | # Linux kbuild sets this to our source directory if we are called from there
|
---|
27 | obj ?= $(CURDIR)
|
---|
28 | include $(obj)/Makefile.include.header
|
---|
29 |
|
---|
30 | # override is required by the Debian guys
|
---|
31 | MOD_NAME = vboxnetadp
|
---|
32 | MOD_OBJS = \
|
---|
33 | linux/VBoxNetAdp-linux.o \
|
---|
34 | VBoxNetAdp.o
|
---|
35 | ifeq ($(BUILD_TARGET_ARCH),x86)
|
---|
36 | MOD_OBJS += math/gcc/divdi3.o \
|
---|
37 | math/gcc/moddi3.o \
|
---|
38 | math/gcc/qdivrem.o \
|
---|
39 | math/gcc/udivdi3.o \
|
---|
40 | math/gcc/udivmoddi4.o \
|
---|
41 | math/gcc/divdi3.o \
|
---|
42 | math/gcc/umoddi3.o
|
---|
43 | endif
|
---|
44 |
|
---|
45 | MOD_INCL = $(addprefix -I$(KBUILD_EXTMOD),/ /include /r0drv/linux)
|
---|
46 | MOD_DEFS = -DRT_OS_LINUX -DIN_RING0 -DIN_RT_R0 -DIN_SUP_R0 -DVBOX \
|
---|
47 | -DRT_WITH_VBOX -DVBOX_WITH_HARDENING \
|
---|
48 | -Wno-declaration-after-statement
|
---|
49 | ifeq ($(BUILD_TARGET_ARCH),amd64)
|
---|
50 | MOD_DEFS += -DRT_ARCH_AMD64
|
---|
51 | else
|
---|
52 | MOD_DEFS += -DRT_ARCH_X86
|
---|
53 | endif
|
---|
54 | # must be consistent with Config.kmk!
|
---|
55 | MOD_DEFS += -DVBOX_WITH_64_BITS_GUESTS
|
---|
56 |
|
---|
57 | # By default we use remap_pfn_range() kernel API to make kernel pages
|
---|
58 | # visible for userland. Unfortunately, it leads to situation that
|
---|
59 | # during debug session all structures on that page (such as PVM pointer)
|
---|
60 | # are not accessible to the debugger (see #3214).
|
---|
61 | # This code enables experimental support
|
---|
62 | # for vm_insert_page() kernel API, allowing to export kernel pages
|
---|
63 | # to the userland in more debugger-friendly way. Due to stability
|
---|
64 | # concerns, not enabled by default yet.
|
---|
65 | ifdef VBOX_USE_INSERT_PAGE
|
---|
66 | KFLAGS += -DVBOX_USE_INSERT_PAGE
|
---|
67 | endif
|
---|
68 |
|
---|
69 | # build defs
|
---|
70 | MOD_CFLAGS = -include $(KBUILD_EXTMOD)/include/VBox/SUPDrvMangling.h -fno-pie
|
---|
71 |
|
---|
72 | include $(obj)/Makefile.include.footer
|
---|