Blame view

Documentation/kbuild/modules.txt 16.9 KB
efdf02cf0   matt mooney   Documentation/kbu...
1
  Building External Modules
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
2

5793210cb   matt mooney   Documentation/kbu...
3
  This document describes how to build an out-of-tree kernel module.
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
4
5
6
7
  
  === Table of Contents
  
  	=== 1 Introduction
5793210cb   matt mooney   Documentation/kbu...
8
  	=== 2 How to Build External Modules
efdf02cf0   matt mooney   Documentation/kbu...
9
10
11
12
13
14
15
16
17
  	   --- 2.1 Command Syntax
  	   --- 2.2 Options
  	   --- 2.3 Targets
  	   --- 2.4 Building Separate Files
  	=== 3. Creating a Kbuild File for an External Module
  	   --- 3.1 Shared Makefile
  	   --- 3.2 Separate Kbuild file and Makefile
  	   --- 3.3 Binary Blobs
  	   --- 3.4 Building Multiple Modules
9f02186c2   matt mooney   Documentation/kbu...
18
19
20
21
22
  	=== 4. Include Files
  	   --- 4.1 Kernel Includes
  	   --- 4.2 Single Subdirectory
  	   --- 4.3 Several Subdirectories
  	=== 5. Module Installation
efdf02cf0   matt mooney   Documentation/kbu...
23
24
  	   --- 5.1 INSTALL_MOD_PATH
  	   --- 5.2 INSTALL_MOD_DIR
9f02186c2   matt mooney   Documentation/kbu...
25
26
27
28
  	=== 6. Module Versioning
  	   --- 6.1 Symbols From the Kernel (vmlinux + modules)
  	   --- 6.2 Symbols and External Modules
  	   --- 6.3 Symbols From Another External Module
efdf02cf0   matt mooney   Documentation/kbu...
29
30
  	=== 7. Tips & Tricks
  	   --- 7.1 Testing for CONFIG_FOO_BAR
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
31
32
33
34
  
  
  
  === 1. Introduction
efdf02cf0   matt mooney   Documentation/kbu...
35
36
37
38
39
40
  "kbuild" is the build system used by the Linux kernel. Modules must use
  kbuild to stay compatible with changes in the build infrastructure and
  to pick up the right flags to "gcc." Functionality for building modules
  both in-tree and out-of-tree is provided. The method for building
  either is similar, and all modules are initially developed and built
  out-of-tree.
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
41

efdf02cf0   matt mooney   Documentation/kbu...
42
43
44
45
46
47
  Covered in this document is information aimed at developers interested
  in building out-of-tree (or "external") modules. The author of an
  external module should supply a makefile that hides most of the
  complexity, so one only has to type "make" to build the module. This is
  easily accomplished, and a complete example will be presented in
  section 3.
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
48

5793210cb   matt mooney   Documentation/kbu...
49
  === 2. How to Build External Modules
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
50

5793210cb   matt mooney   Documentation/kbu...
51
  To build external modules, you must have a prebuilt kernel available
efdf02cf0   matt mooney   Documentation/kbu...
52
53
54
55
  that contains the configuration and header files used in the build.
  Also, the kernel must have been built with modules enabled. If you are
  using a distribution kernel, there will be a package for the kernel you
  are running provided by your distribution.
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
56

efdf02cf0   matt mooney   Documentation/kbu...
57
58
59
60
  An alternative is to use the "make" target "modules_prepare." This will
  make sure the kernel contains the information required. The target
  exists solely as a simple way to prepare a kernel source tree for
  building external modules.
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
61

efdf02cf0   matt mooney   Documentation/kbu...
62
63
64
  NOTE: "modules_prepare" will not build Module.symvers even if
  CONFIG_MODVERSIONS is set; therefore, a full kernel build needs to be
  executed to make module versioning work.
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
65

efdf02cf0   matt mooney   Documentation/kbu...
66
  --- 2.1 Command Syntax
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
67

efdf02cf0   matt mooney   Documentation/kbu...
68
  	The command to build an external module is:
99c8b9477   Robert P. J. Day   kbuild: trivial d...
69

5793210cb   matt mooney   Documentation/kbu...
70
  		$ make -C <path_to_kernel_src> M=$PWD
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
71

efdf02cf0   matt mooney   Documentation/kbu...
72
73
  	The kbuild system knows that an external module is being built
  	due to the "M=<dir>" option given in the command.
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
74

efdf02cf0   matt mooney   Documentation/kbu...
75
  	To build against the running kernel use:
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
76

5793210cb   matt mooney   Documentation/kbu...
77
  		$ make -C /lib/modules/`uname -r`/build M=$PWD
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
78

efdf02cf0   matt mooney   Documentation/kbu...
79
80
  	Then to install the module(s) just built, add the target
  	"modules_install" to the command:
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
81

5793210cb   matt mooney   Documentation/kbu...
82
  		$ make -C /lib/modules/`uname -r`/build M=$PWD modules_install
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
83

efdf02cf0   matt mooney   Documentation/kbu...
84
  --- 2.2 Options
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
85

efdf02cf0   matt mooney   Documentation/kbu...
86
  	($KDIR refers to the path of the kernel source directory.)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
87

efdf02cf0   matt mooney   Documentation/kbu...
88
  	make -C $KDIR M=$PWD
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
89

efdf02cf0   matt mooney   Documentation/kbu...
90
91
92
93
  	-C $KDIR
  		The directory where the kernel source is located.
  		"make" will actually change to the specified directory
  		when executing and will change back when finished.
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
94

efdf02cf0   matt mooney   Documentation/kbu...
95
96
97
98
99
  	M=$PWD
  		Informs kbuild that an external module is being built.
  		The value given to "M" is the absolute path of the
  		directory where the external module (kbuild file) is
  		located.
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
100

efdf02cf0   matt mooney   Documentation/kbu...
101
  --- 2.3 Targets
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
102

efdf02cf0   matt mooney   Documentation/kbu...
103
104
  	When building an external module, only a subset of the "make"
  	targets are available.
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
105

efdf02cf0   matt mooney   Documentation/kbu...
106
  	make -C $KDIR M=$PWD [target]
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
107

efdf02cf0   matt mooney   Documentation/kbu...
108
109
110
111
112
113
  	The default will build the module(s) located in the current
  	directory, so a target does not need to be specified. All
  	output files will also be generated in this directory. No
  	attempts are made to update the kernel source, and it is a
  	precondition that a successful "make" has been executed for the
  	kernel.
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
114

efdf02cf0   matt mooney   Documentation/kbu...
115
116
117
118
  	modules
  		The default target for external modules. It has the
  		same functionality as if no target was specified. See
  		description above.
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
119

efdf02cf0   matt mooney   Documentation/kbu...
120
121
  	modules_install
  		Install the external module(s). The default location is
5793210cb   matt mooney   Documentation/kbu...
122
  		/lib/modules/<kernel_release>/extra/, but a prefix may
efdf02cf0   matt mooney   Documentation/kbu...
123
  		be added with INSTALL_MOD_PATH (discussed in section 5).
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
124

efdf02cf0   matt mooney   Documentation/kbu...
125
126
  	clean
  		Remove all generated files in the module directory only.
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
127

efdf02cf0   matt mooney   Documentation/kbu...
128
129
  	help
  		List the available targets for external modules.
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
130

efdf02cf0   matt mooney   Documentation/kbu...
131
  --- 2.4 Building Separate Files
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
132

efdf02cf0   matt mooney   Documentation/kbu...
133
134
135
  	It is possible to build single files that are part of a module.
  	This works equally well for the kernel, a module, and even for
  	external modules.
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
136

efdf02cf0   matt mooney   Documentation/kbu...
137
138
139
140
141
  	Example (The module foo.ko, consist of bar.o and baz.o):
  		make -C $KDIR M=$PWD bar.lst
  		make -C $KDIR M=$PWD baz.o
  		make -C $KDIR M=$PWD foo.ko
  		make -C $KDIR M=$PWD /
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
142

1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
143

efdf02cf0   matt mooney   Documentation/kbu...
144
  === 3. Creating a Kbuild File for an External Module
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
145

efdf02cf0   matt mooney   Documentation/kbu...
146
147
148
149
150
  In the last section we saw the command to build a module for the
  running kernel. The module is not actually built, however, because a
  build file is required. Contained in this file will be the name of
  the module(s) being built, along with the list of requisite source
  files. The file may be as simple as a single line:
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
151

efdf02cf0   matt mooney   Documentation/kbu...
152
  	obj-m := <module_name>.o
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
153

efdf02cf0   matt mooney   Documentation/kbu...
154
155
156
157
158
  The kbuild system will build <module_name>.o from <module_name>.c,
  and, after linking, will result in the kernel module <module_name>.ko.
  The above line can be put in either a "Kbuild" file or a "Makefile."
  When the module is built from multiple sources, an additional line is
  needed listing the files:
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
159

efdf02cf0   matt mooney   Documentation/kbu...
160
  	<module_name>-y := <src1>.o <src2>.o ...
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
161

efdf02cf0   matt mooney   Documentation/kbu...
162
163
  NOTE: Further documentation describing the syntax used by kbuild is
  located in Documentation/kbuild/makefiles.txt.
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
164

5793210cb   matt mooney   Documentation/kbu...
165
  The examples below demonstrate how to create a build file for the
efdf02cf0   matt mooney   Documentation/kbu...
166
  module 8123.ko, which is built from the following files:
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
167

1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
168
169
170
171
  	8123_if.c
  	8123_if.h
  	8123_pci.c
  	8123_bin.o_shipped	<= Binary blob
efdf02cf0   matt mooney   Documentation/kbu...
172
  --- 3.1 Shared Makefile
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
173

efdf02cf0   matt mooney   Documentation/kbu...
174
175
176
177
178
179
  	An external module always includes a wrapper makefile that
  	supports building the module using "make" with no arguments.
  	This target is not used by kbuild; it is only for convenience.
  	Additional functionality, such as test targets, can be included
  	but should be filtered out from kbuild due to possible name
  	clashes.
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
180
181
182
183
184
185
186
187
188
  
  	Example 1:
  		--> filename: Makefile
  		ifneq ($(KERNELRELEASE),)
  		# kbuild part of makefile
  		obj-m  := 8123.o
  		8123-y := 8123_if.o 8123_pci.o 8123_bin.o
  
  		else
efdf02cf0   matt mooney   Documentation/kbu...
189
190
  		# normal makefile
  		KDIR ?= /lib/modules/`uname -r`/build
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
191

efdf02cf0   matt mooney   Documentation/kbu...
192
193
  		default:
  			$(MAKE) -C $(KDIR) M=$$PWD
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
194
195
196
  
  		# Module specific targets
  		genbin:
98a1e4441   Brian Strand   kbuild: patch to ...
197
  			echo "X" > 8123_bin.o_shipped
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
198
199
  
  		endif
efdf02cf0   matt mooney   Documentation/kbu...
200
201
202
203
  	The check for KERNELRELEASE is used to separate the two parts
  	of the makefile. In the example, kbuild will only see the two
  	assignments, whereas "make" will see everything except these
  	two assignments. This is due to two passes made on the file:
5793210cb   matt mooney   Documentation/kbu...
204
205
  	the first pass is by the "make" instance run on the command
  	line; the second pass is by the kbuild system, which is
efdf02cf0   matt mooney   Documentation/kbu...
206
  	initiated by the parameterized "make" in the default target.
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
207

efdf02cf0   matt mooney   Documentation/kbu...
208
209
210
  --- 3.2 Separate Kbuild File and Makefile
  
  	In newer versions of the kernel, kbuild will first look for a
5793210cb   matt mooney   Documentation/kbu...
211
  	file named "Kbuild," and only if that is not found, will it
efdf02cf0   matt mooney   Documentation/kbu...
212
213
  	then look for a makefile. Utilizing a "Kbuild" file allows us
  	to split up the makefile from example 1 into two files:
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
214
215
216
217
218
219
220
  
  	Example 2:
  		--> filename: Kbuild
  		obj-m  := 8123.o
  		8123-y := 8123_if.o 8123_pci.o 8123_bin.o
  
  		--> filename: Makefile
efdf02cf0   matt mooney   Documentation/kbu...
221
222
223
224
  		KDIR ?= /lib/modules/`uname -r`/build
  
  		default:
  			$(MAKE) -C $(KDIR) M=$$PWD
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
225
226
227
  
  		# Module specific targets
  		genbin:
baa91878a   Wolfram Sang   kbuild: fix typos...
228
  			echo "X" > 8123_bin.o_shipped
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
229

efdf02cf0   matt mooney   Documentation/kbu...
230
231
232
233
  	The split in example 2 is questionable due to the simplicity of
  	each file; however, some external modules use makefiles
  	consisting of several hundred lines, and here it really pays
  	off to separate the kbuild part from the rest.
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
234

efdf02cf0   matt mooney   Documentation/kbu...
235
  	The next example shows a backward compatible version.
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
236
237
238
239
240
241
242
243
  
  	Example 3:
  		--> filename: Kbuild
  		obj-m  := 8123.o
  		8123-y := 8123_if.o 8123_pci.o 8123_bin.o
  
  		--> filename: Makefile
  		ifneq ($(KERNELRELEASE),)
efdf02cf0   matt mooney   Documentation/kbu...
244
  		# kbuild part of makefile
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
245
  		include Kbuild
efdf02cf0   matt mooney   Documentation/kbu...
246

1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
247
  		else
efdf02cf0   matt mooney   Documentation/kbu...
248
249
  		# normal makefile
  		KDIR ?= /lib/modules/`uname -r`/build
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
250

efdf02cf0   matt mooney   Documentation/kbu...
251
252
  		default:
  			$(MAKE) -C $(KDIR) M=$$PWD
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
253
254
255
  
  		# Module specific targets
  		genbin:
baa91878a   Wolfram Sang   kbuild: fix typos...
256
  			echo "X" > 8123_bin.o_shipped
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
257
258
  
  		endif
efdf02cf0   matt mooney   Documentation/kbu...
259
260
261
262
  	Here the "Kbuild" file is included from the makefile. This
  	allows an older version of kbuild, which only knows of
  	makefiles, to be used when the "make" and kbuild parts are
  	split into separate files.
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
263

efdf02cf0   matt mooney   Documentation/kbu...
264
  --- 3.3 Binary Blobs
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
265

efdf02cf0   matt mooney   Documentation/kbu...
266
267
268
269
270
271
272
273
274
275
  	Some external modules need to include an object file as a blob.
  	kbuild has support for this, but requires the blob file to be
  	named <filename>_shipped. When the kbuild rules kick in, a copy
  	of <filename>_shipped is created with _shipped stripped off,
  	giving us <filename>. This shortened filename can be used in
  	the assignment to the module.
  
  	Throughout this section, 8123_bin.o_shipped has been used to
  	build the kernel module 8123.ko; it has been included as
  	8123_bin.o.
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
276

1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
277
  		8123-y := 8123_if.o 8123_pci.o 8123_bin.o
efdf02cf0   matt mooney   Documentation/kbu...
278
279
280
281
282
283
284
  	Although there is no distinction between the ordinary source
  	files and the binary file, kbuild will pick up different rules
  	when creating the object file for the module.
  
  --- 3.4 Building Multiple Modules
  
  	kbuild supports building multiple modules with a single build
5793210cb   matt mooney   Documentation/kbu...
285
286
  	file. For example, if you wanted to build two modules, foo.ko
  	and bar.ko, the kbuild lines would be:
efdf02cf0   matt mooney   Documentation/kbu...
287
288
289
290
291
292
  
  		obj-m := foo.o bar.o
  		foo-y := <foo_srcs>
  		bar-y := <bar_srcs>
  
  	It is that simple!
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
293

9f02186c2   matt mooney   Documentation/kbu...
294
  === 4. Include Files
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
295

9f02186c2   matt mooney   Documentation/kbu...
296
297
  Within the kernel, header files are kept in standard locations
  according to the following rule:
d9a7ff664   Jan Engelhardt   kbuild: linguisti...
298

9f02186c2   matt mooney   Documentation/kbu...
299
300
301
302
303
304
  	* If the header file only describes the internal interface of a
  	  module, then the file is placed in the same directory as the
  	  source files.
  	* If the header file describes an interface used by other parts
  	  of the kernel that are located in different directories, then
  	  the file is placed in include/linux/.
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
305

9f02186c2   matt mooney   Documentation/kbu...
306
307
308
309
  	  NOTE: There are two notable exceptions to this rule: larger
  	  subsystems have their own directory under include/, such as
  	  include/scsi; and architecture specific headers are located
  	  under arch/$(ARCH)/include/.
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
310

9f02186c2   matt mooney   Documentation/kbu...
311
  --- 4.1 Kernel Includes
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
312

9f02186c2   matt mooney   Documentation/kbu...
313
314
  	To include a header file located under include/linux/, simply
  	use:
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
315

5793210cb   matt mooney   Documentation/kbu...
316
  		#include <linux/module.h>
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
317

9f02186c2   matt mooney   Documentation/kbu...
318
319
  	kbuild will add options to "gcc" so the relevant directories
  	are searched.
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
320

9f02186c2   matt mooney   Documentation/kbu...
321
  --- 4.2 Single Subdirectory
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
322

9f02186c2   matt mooney   Documentation/kbu...
323
324
325
  	External modules tend to place header files in a separate
  	include/ directory where their source is located, although this
  	is not the usual kernel style. To inform kbuild of the
5793210cb   matt mooney   Documentation/kbu...
326
  	directory, use either ccflags-y or CFLAGS_<filename>.o.
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
327

9f02186c2   matt mooney   Documentation/kbu...
328
329
330
  	Using the example from section 3, if we moved 8123_if.h to a
  	subdirectory named include, the resulting kbuild file would
  	look like:
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
331
332
  
  		--> filename: Kbuild
9f02186c2   matt mooney   Documentation/kbu...
333
  		obj-m := 8123.o
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
334

9f02186c2   matt mooney   Documentation/kbu...
335
  		ccflags-y := -Iinclude
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
336
  		8123-y := 8123_if.o 8123_pci.o 8123_bin.o
9f02186c2   matt mooney   Documentation/kbu...
337
338
339
  	Note that in the assignment there is no space between -I and
  	the path. This is a limitation of kbuild: there must be no
  	space present.
253dfa6e4   Sam Ravnborg   kbuild: document ...
340

9f02186c2   matt mooney   Documentation/kbu...
341
  --- 4.3 Several Subdirectories
253dfa6e4   Sam Ravnborg   kbuild: document ...
342

9f02186c2   matt mooney   Documentation/kbu...
343
  	kbuild can handle files that are spread over several directories.
253dfa6e4   Sam Ravnborg   kbuild: document ...
344
  	Consider the following example:
2e99f3190   Robert P. J. Day   kbuild: fixup Doc...
345

9f02186c2   matt mooney   Documentation/kbu...
346
347
348
349
350
351
352
353
354
355
356
  	.
  	|__ src
  	|   |__ complex_main.c
  	|   |__ hal
  	|	|__ hardwareif.c
  	|	|__ include
  	|	    |__ hardwareif.h
  	|__ include
  	    |__ complex.h
  
  	To build the module complex.ko, we then need the following
253dfa6e4   Sam Ravnborg   kbuild: document ...
357
  	kbuild file:
9f02186c2   matt mooney   Documentation/kbu...
358
  		--> filename: Kbuild
253dfa6e4   Sam Ravnborg   kbuild: document ...
359
360
361
  		obj-m := complex.o
  		complex-y := src/complex_main.o
  		complex-y += src/hal/hardwareif.o
9f02186c2   matt mooney   Documentation/kbu...
362
363
  		ccflags-y := -I$(src)/include
  		ccflags-y += -I$(src)/src/hal/include
253dfa6e4   Sam Ravnborg   kbuild: document ...
364

9f02186c2   matt mooney   Documentation/kbu...
365
366
367
368
  	As you can see, kbuild knows how to handle object files located
  	in other directories. The trick is to specify the directory
  	relative to the kbuild file's location. That being said, this
  	is NOT recommended practice.
253dfa6e4   Sam Ravnborg   kbuild: document ...
369

9f02186c2   matt mooney   Documentation/kbu...
370
371
372
373
374
375
  	For the header files, kbuild must be explicitly told where to
  	look. When kbuild executes, the current directory is always the
  	root of the kernel tree (the argument to "-C") and therefore an
  	absolute path is needed. $(src) provides the absolute path by
  	pointing to the directory where the currently executing kbuild
  	file is located.
253dfa6e4   Sam Ravnborg   kbuild: document ...
376

1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
377

9f02186c2   matt mooney   Documentation/kbu...
378
  === 5. Module Installation
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
379

9f02186c2   matt mooney   Documentation/kbu...
380
381
  Modules which are included in the kernel are installed in the
  directory:
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
382

5793210cb   matt mooney   Documentation/kbu...
383
  	/lib/modules/$(KERNELRELEASE)/kernel/
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
384

9f02186c2   matt mooney   Documentation/kbu...
385
  And external modules are installed in:
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
386

5793210cb   matt mooney   Documentation/kbu...
387
  	/lib/modules/$(KERNELRELEASE)/extra/
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
388

9f02186c2   matt mooney   Documentation/kbu...
389
  --- 5.1 INSTALL_MOD_PATH
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
390

9f02186c2   matt mooney   Documentation/kbu...
391
392
393
  	Above are the default directories but as always some level of
  	customization is possible. A prefix can be added to the
  	installation path using the variable INSTALL_MOD_PATH:
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
394
395
  
  		$ make INSTALL_MOD_PATH=/frodo modules_install
5793210cb   matt mooney   Documentation/kbu...
396
  		=> Install dir: /frodo/lib/modules/$(KERNELRELEASE)/kernel/
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
397

9f02186c2   matt mooney   Documentation/kbu...
398
399
400
401
  	INSTALL_MOD_PATH may be set as an ordinary shell variable or,
  	as shown above, can be specified on the command line when
  	calling "make." This has effect when installing both in-tree
  	and out-of-tree modules.
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
402

9f02186c2   matt mooney   Documentation/kbu...
403
  --- 5.2 INSTALL_MOD_DIR
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
404

9f02186c2   matt mooney   Documentation/kbu...
405
  	External modules are by default installed to a directory under
5793210cb   matt mooney   Documentation/kbu...
406
407
408
409
  	/lib/modules/$(KERNELRELEASE)/extra/, but you may wish to
  	locate modules for a specific functionality in a separate
  	directory. For this purpose, use INSTALL_MOD_DIR to specify an
  	alternative name to "extra."
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
410

9f02186c2   matt mooney   Documentation/kbu...
411
412
  		$ make INSTALL_MOD_DIR=gandalf -C $KDIR \
  		       M=$PWD modules_install
5793210cb   matt mooney   Documentation/kbu...
413
  		=> Install dir: /lib/modules/$(KERNELRELEASE)/gandalf/
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
414

9f02186c2   matt mooney   Documentation/kbu...
415
  === 6. Module Versioning
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
416

9f02186c2   matt mooney   Documentation/kbu...
417
418
419
420
421
422
  Module versioning is enabled by the CONFIG_MODVERSIONS tag, and is used
  as a simple ABI consistency check. A CRC value of the full prototype
  for an exported symbol is created. When a module is loaded/used, the
  CRC values contained in the kernel are compared with similar values in
  the module; if they are not equal, the kernel refuses to load the
  module.
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
423

9f02186c2   matt mooney   Documentation/kbu...
424
425
  Module.symvers contains a list of all exported symbols from a kernel
  build.
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
426

9f02186c2   matt mooney   Documentation/kbu...
427
  --- 6.1 Symbols From the Kernel (vmlinux + modules)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
428

9f02186c2   matt mooney   Documentation/kbu...
429
430
431
432
  	During a kernel build, a file named Module.symvers will be
  	generated. Module.symvers contains all exported symbols from
  	the kernel and compiled modules. For each symbol, the
  	corresponding CRC value is also stored.
040fcc819   Sam Ravnborg   kbuild: improved ...
433
434
  
  	The syntax of the Module.symvers file is:
9f02186c2   matt mooney   Documentation/kbu...
435
  		<CRC>	    <Symbol>	       <module>
040fcc819   Sam Ravnborg   kbuild: improved ...
436
  		0x2d036834  scsi_remove_host   drivers/scsi/scsi_mod
9f02186c2   matt mooney   Documentation/kbu...
437
438
  	For a kernel build without CONFIG_MODVERSIONS enabled, the CRC
  	would read 0x00000000.
040fcc819   Sam Ravnborg   kbuild: improved ...
439

d9a7ff664   Jan Engelhardt   kbuild: linguisti...
440
  	Module.symvers serves two purposes:
9f02186c2   matt mooney   Documentation/kbu...
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
  	1) It lists all exported symbols from vmlinux and all modules.
  	2) It lists the CRC if CONFIG_MODVERSIONS is enabled.
  
  --- 6.2 Symbols and External Modules
  
  	When building an external module, the build system needs access
  	to the symbols from the kernel to check if all external symbols
  	are defined. This is done in the MODPOST step. modpost obtains
  	the symbols by reading Module.symvers from the kernel source
  	tree. If a Module.symvers file is present in the directory
  	where the external module is being built, this file will be
  	read too. During the MODPOST step, a new Module.symvers file
  	will be written containing all exported symbols that were not
  	defined in the kernel.
  
  --- 6.3 Symbols From Another External Module
  
  	Sometimes, an external module uses exported symbols from
  	another external module. kbuild needs to have full knowledge of
  	all symbols to avoid spitting out warnings about undefined
  	symbols. Three solutions exist for this situation.
  
  	NOTE: The method with a top-level kbuild file is recommended
  	but may be impractical in certain situations.
  
  	Use a top-level kbuild file
  		If you have two modules, foo.ko and bar.ko, where
5793210cb   matt mooney   Documentation/kbu...
468
  		foo.ko needs symbols from bar.ko, you can use a
9f02186c2   matt mooney   Documentation/kbu...
469
  		common top-level kbuild file so both modules are
5793210cb   matt mooney   Documentation/kbu...
470
  		compiled in the same build. Consider the following
9f02186c2   matt mooney   Documentation/kbu...
471
472
473
474
475
476
477
478
  		directory layout:
  
  		./foo/ <= contains foo.ko
  		./bar/ <= contains bar.ko
  
  		The top-level kbuild file would then look like:
  
  		#./Kbuild (or ./Makefile):
040fcc819   Sam Ravnborg   kbuild: improved ...
479
  			obj-y := foo/ bar/
5793210cb   matt mooney   Documentation/kbu...
480
  		And executing
9f02186c2   matt mooney   Documentation/kbu...
481
  			$ make -C $KDIR M=$PWD
040fcc819   Sam Ravnborg   kbuild: improved ...
482

5793210cb   matt mooney   Documentation/kbu...
483
  		will then do the expected and compile both modules with
9f02186c2   matt mooney   Documentation/kbu...
484
  		full knowledge of symbols from either module.
040fcc819   Sam Ravnborg   kbuild: improved ...
485
486
  
  	Use an extra Module.symvers file
9f02186c2   matt mooney   Documentation/kbu...
487
488
489
490
491
492
493
494
495
496
497
498
499
500
  		When an external module is built, a Module.symvers file
  		is generated containing all exported symbols which are
  		not defined in the kernel. To get access to symbols
  		from bar.ko, copy the Module.symvers file from the
  		compilation of bar.ko to the directory where foo.ko is
  		built. During the module build, kbuild will read the
  		Module.symvers file in the directory of the external
  		module, and when the build is finished, a new
  		Module.symvers file is created containing the sum of
  		all symbols defined and not part of the kernel.
  
  	Use "make" variable KBUILD_EXTRA_SYMBOLS
  		If it is impractical to copy Module.symvers from
  		another module, you can assign a space separated list
5793210cb   matt mooney   Documentation/kbu...
501
502
  		of files to KBUILD_EXTRA_SYMBOLS in your build file.
  		These files will be loaded by modpost during the
9f02186c2   matt mooney   Documentation/kbu...
503
  		initialization of its symbol tables.
5793210cb   matt mooney   Documentation/kbu...
504

9f02186c2   matt mooney   Documentation/kbu...
505
506
507
508
509
510
511
512
  === 7. Tips & Tricks
  
  --- 7.1 Testing for CONFIG_FOO_BAR
  
  	Modules often need to check for certain CONFIG_ options to
  	decide if a specific feature is included in the module. In
  	kbuild this is done by referencing the CONFIG_ variable
  	directly.
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
513
514
515
516
517
518
  
  		#fs/ext2/Makefile
  		obj-$(CONFIG_EXT2_FS) += ext2.o
  
  		ext2-y := balloc.o bitmap.o dir.o
  		ext2-$(CONFIG_EXT2_FS_XATTR) += xattr.o
9f02186c2   matt mooney   Documentation/kbu...
519
520
521
522
523
  	External modules have traditionally used "grep" to check for
  	specific CONFIG_ settings directly in .config. This usage is
  	broken. As introduced before, external modules should use
  	kbuild for building and can therefore use the same methods as
  	in-tree modules when testing for CONFIG_ definitions.
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
524