VirtualBox

source: vbox/trunk/src/VBox/Installer/linux/Makefile.include.header@ 77151

Last change on this file since 77151 was 77059, checked in by vboxsync, 6 years ago

Installer/linux/Makefile.include.header: Shut up makefile warnings. (Related to previous Config.kmk change.) bugref:9172

  • Property svn:eol-style set to LF
  • Property svn:keywords set to Author Date Id Revision
File size: 4.8 KB
Line 
1# $Id: Makefile.include.header 77059 2019-01-30 18:07:01Z vboxsync $
2## @file
3# VirtualBox Guest Additions kernel module Makefile, common parts.
4#
5# (For 2.6.x, the main file must be called 'Makefile'!)
6#
7
8#
9# Copyright (C) 2006-2019 Oracle Corporation
10#
11# This file is part of VirtualBox Open Source Edition (OSE), as
12# available from http://www.virtualbox.org. This file is free software;
13# you can redistribute it and/or modify it under the terms of the GNU
14# General Public License (GPL) as published by the Free Software
15# Foundation, in version 2 as it comes in the "COPYING" file of the
16# VirtualBox OSE distribution. VirtualBox OSE is distributed in the
17# hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
18#
19
20# Testing:
21# * Building with KERN_DIR set uses the value specified and
22# the default value for the unspecified one if any.
23
24#
25# These file should be included by the Makefiles for any kernel modules we
26# build as part of the Guest Additions. The intended way of doing this is as
27# follows:
28#
29# # Linux kbuild sets this to our source directory if we are called from
30# # there
31# obj ?= $(CURDIR)
32# include $(obj)/Makefile.include.header
33# MOD_NAME = <name of the module to be built, without extension>
34# MOD_OBJS = <list of object files which should be included>
35# MOD_DEFS = <any additional defines which this module needs>
36# MOD_INCL = <any additional include paths which this module needs>
37# MOD_CFLAGS = <any additional CFLAGS which this module needs>
38# include $(obj)/Makefile.include.footer
39#
40# The kmk kBuild define KBUILD_TARGET_ARCH is available.
41#
42
43
44#
45# First, figure out which architecture we're targeting and the build type.
46# (We have to support basic cross building (ARCH=i386|x86_64).)
47# While at it, warn about BUILD_* vars found to help with user problems.
48#
49ifeq ($(filter-out x86_64 amd64 AMD64,$(shell uname -m)),)
50 BUILD_TARGET_ARCH_DEF := amd64
51else
52 BUILD_TARGET_ARCH_DEF := x86
53endif
54ifneq ($(filter-out amd64 x86,$(BUILD_TARGET_ARCH)),)
55 $(warning Ignoring unknown BUILD_TARGET_ARCH value '$(BUILD_TARGET_ARCH)'.)
56 BUILD_TARGET_ARCH :=
57endif
58ifeq ($(BUILD_TARGET_ARCH),)
59 ifeq ($(ARCH),x86_64)
60 BUILD_TARGET_ARCH := amd64
61 else
62 ifeq ($(ARCH),i386)
63 BUILD_TARGET_ARCH := x86
64 else
65 BUILD_TARGET_ARCH := $(BUILD_TARGET_ARCH_DEF)
66 endif
67 endif
68else
69 ifneq ($(BUILD_TARGET_ARCH),$(BUILD_TARGET_ARCH_DEF))
70 $(warning Using BUILD_TARGET_ARCH='$(BUILD_TARGET_ARCH)' from the $(origin BUILD_TARGET_ARCH).)
71 endif
72endif
73
74ifneq ($(filter-out release profile debug strict,$(BUILD_TYPE)),)
75 $(warning Ignoring unknown BUILD_TYPE value '$(BUILD_TYPE)'.)
76 BUILD_TYPE :=
77endif
78ifeq ($(BUILD_TYPE),)
79 BUILD_TYPE := release
80else
81 ifneq ($(BUILD_TYPE),release)
82 ifndef VBOX_KERN_QUIET
83 $(warning Using BUILD_TYPE='$(BUILD_TYPE)' from the $(origin BUILD_TYPE).)
84 endif
85 endif
86endif
87ifeq ($(USERNAME),)
88 USERNAME := noname
89endif
90
91ifeq ($(KERNELRELEASE),)
92
93 #
94 # building from this directory
95 #
96
97 # kernel base directory
98 ifdef KERN_DIR
99 ifndef KERN_VER
100 ifeq ($(filter %/build,$(KERN_DIR)),)
101 $(error The variable KERN_DIR must be a kernel build folder and end with /build without a trailing slash, or KERN_VER must be set)
102 endif
103 endif
104 endif
105
106 ifndef KERN_VER
107 ifdef KERN_DIR
108 KERN_VER = $(notdir $(patsubst %/build,%,$(KERN_DIR)))
109 ifeq ($(shell expr $(KERN_VER) : '[0-9]*\.[0-9]*.[0-9]*'),0)
110 $(error The kernel build folder path must end in <version>/build, or the variable KERN_VER must be set)
111 endif
112 endif
113 KERN_VER ?= $(shell uname -r)
114 endif
115
116 # guess kernel major version (24 or later)
117 ifeq ($(shell if grep '"2\.4\.' /lib/modules/$(KERN_VER)/build/include/linux/version.h > /dev/null 2>&1; then echo yes; fi),yes)
118 KERN_VERSION := 24
119 else
120 KERN_VERSION := 26
121 endif
122
123else # neq($(KERNELRELEASE),)
124
125 #
126 # building from kbuild (make -C <kernel_directory> M=`pwd`)
127 #
128
129 # guess kernel version (24 or 26)
130 ifeq ($(shell if echo "$(VERSION).$(PATCHLEVEL)." | grep '2\.4\.' > /dev/null; then echo yes; fi),yes)
131 KERN_VERSION := 24
132 else
133 KERN_VERSION := 26
134 endif
135
136 KERN_VER := $(KERNELRELEASE)
137
138endif # neq($(KERNELRELEASE),)
139
140# Kernel build folder
141ifeq ($(KERN_DIR),)
142 KERN_DIR := /lib/modules/$(KERN_VER)/build
143endif
144ifneq ($(shell if test -d $(KERN_DIR); then echo yes; fi),yes)
145 $(error Error: unable to find the headers of the Linux kernel to build against. \
146 Specify KERN_VER=<version> (currently $(KERN_VER)) and run Make again)
147endif
148# Kernel include folder
149KERN_INCL := $(KERN_DIR)/include
150# module install folder
151INSTALL_MOD_DIR ?= misc
152MODULE_DIR := $(INSTALL_MOD_PATH)/lib/modules/$(KERN_VER)/$(INSTALL_MOD_DIR)
153
154# debug - show guesses.
155ifdef DEBUG
156 ifndef VBOX_KERN_QUIET
157$(warning dbg: INSTALL_MOD_PATH = $(INSTALL_MOD_PATH))
158$(warning dbg: INSTALL_MOD_DIR = $(INSTALL_MOD_DIR))
159$(warning dbg: KERN_DIR = $(KERN_DIR))
160$(warning dbg: KERN_INCL = $(KERN_INCL))
161$(warning dbg: KERN_VERSION = $(KERN_VERSION))
162$(warning dbg: MODULE_DIR = $(MODULE_DIR))
163 endif
164endif
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