1====================== 2Linux Kernel Makefiles 3====================== 4 5This document describes the Linux kernel Makefiles. 6 7Overview 8======== 9 10The Makefiles have five parts:: 11 12 Makefile the top Makefile. 13 .config the kernel configuration file. 14 arch/$(SRCARCH)/Makefile the arch Makefile. 15 scripts/Makefile.* common rules etc. for all kbuild Makefiles. 16 kbuild Makefiles exist in every subdirectory 17 18The top Makefile reads the .config file, which comes from the kernel 19configuration process. 20 21The top Makefile is responsible for building two major products: vmlinux 22(the resident kernel image) and modules (any module files). 23It builds these goals by recursively descending into the subdirectories of 24the kernel source tree. 25 26The list of subdirectories which are visited depends upon the kernel 27configuration. The top Makefile textually includes an arch Makefile 28with the name arch/$(SRCARCH)/Makefile. The arch Makefile supplies 29architecture-specific information to the top Makefile. 30 31Each subdirectory has a kbuild Makefile which carries out the commands 32passed down from above. The kbuild Makefile uses information from the 33.config file to construct various file lists used by kbuild to build 34any built-in or modular targets. 35 36scripts/Makefile.* contains all the definitions/rules etc. that 37are used to build the kernel based on the kbuild makefiles. 38 39Who does what 40============= 41 42People have four different relationships with the kernel Makefiles. 43 44*Users* are people who build kernels. These people type commands such as 45``make menuconfig`` or ``make``. They usually do not read or edit 46any kernel Makefiles (or any other source files). 47 48*Normal developers* are people who work on features such as device 49drivers, file systems, and network protocols. These people need to 50maintain the kbuild Makefiles for the subsystem they are 51working on. In order to do this effectively, they need some overall 52knowledge about the kernel Makefiles, plus detailed knowledge about the 53public interface for kbuild. 54 55*Arch developers* are people who work on an entire architecture, such 56as sparc or x86. Arch developers need to know about the arch Makefile 57as well as kbuild Makefiles. 58 59*Kbuild developers* are people who work on the kernel build system itself. 60These people need to know about all aspects of the kernel Makefiles. 61 62This document is aimed towards normal developers and arch developers. 63 64 65The kbuild files 66================ 67 68Most Makefiles within the kernel are kbuild Makefiles that use the 69kbuild infrastructure. This chapter introduces the syntax used in the 70kbuild makefiles. 71 72The preferred name for the kbuild files are ``Makefile`` but ``Kbuild`` can 73be used and if both a ``Makefile`` and a ``Kbuild`` file exists, then the ``Kbuild`` 74file will be used. 75 76Section `Goal definitions`_ is a quick intro; further chapters provide 77more details, with real examples. 78 79Goal definitions 80---------------- 81 82Goal definitions are the main part (heart) of the kbuild Makefile. 83These lines define the files to be built, any special compilation 84options, and any subdirectories to be entered recursively. 85 86The most simple kbuild makefile contains one line: 87 88Example:: 89 90 obj-y += foo.o 91 92This tells kbuild that there is one object in that directory, named 93foo.o. foo.o will be built from foo.c or foo.S. 94 95If foo.o shall be built as a module, the variable obj-m is used. 96Therefore the following pattern is often used: 97 98Example:: 99 100 obj-$(CONFIG_FOO) += foo.o 101 102$(CONFIG_FOO) evaluates to either y (for built-in) or m (for module). 103If CONFIG_FOO is neither y nor m, then the file will not be compiled 104nor linked. 105 106Built-in object goals - obj-y 107----------------------------- 108 109The kbuild Makefile specifies object files for vmlinux 110in the $(obj-y) lists. These lists depend on the kernel 111configuration. 112 113Kbuild compiles all the $(obj-y) files. It then calls 114``$(AR) rcSTP`` to merge these files into one built-in.a file. 115This is a thin archive without a symbol table. It will be later 116linked into vmlinux by scripts/link-vmlinux.sh 117 118The order of files in $(obj-y) is significant. Duplicates in 119the lists are allowed: the first instance will be linked into 120built-in.a and succeeding instances will be ignored. 121 122Link order is significant, because certain functions 123(module_init() / __initcall) will be called during boot in the 124order they appear. So keep in mind that changing the link 125order may e.g. change the order in which your SCSI 126controllers are detected, and thus your disks are renumbered. 127 128Example:: 129 130 #drivers/isdn/i4l/Makefile 131 # Makefile for the kernel ISDN subsystem and device drivers. 132 # Each configuration option enables a list of files. 133 obj-$(CONFIG_ISDN_I4L) += isdn.o 134 obj-$(CONFIG_ISDN_PPP_BSDCOMP) += isdn_bsdcomp.o 135 136Loadable module goals - obj-m 137----------------------------- 138 139$(obj-m) specifies object files which are built as loadable 140kernel modules. 141 142A module may be built from one source file or several source 143files. In the case of one source file, the kbuild makefile 144simply adds the file to $(obj-m). 145 146Example:: 147 148 #drivers/isdn/i4l/Makefile 149 obj-$(CONFIG_ISDN_PPP_BSDCOMP) += isdn_bsdcomp.o 150 151Note: In this example $(CONFIG_ISDN_PPP_BSDCOMP) evaluates to "m" 152 153If a kernel module is built from several source files, you specify 154that you want to build a module in the same way as above; however, 155kbuild needs to know which object files you want to build your 156module from, so you have to tell it by setting a $(<module_name>-y) 157variable. 158 159Example:: 160 161 #drivers/isdn/i4l/Makefile 162 obj-$(CONFIG_ISDN_I4L) += isdn.o 163 isdn-y := isdn_net_lib.o isdn_v110.o isdn_common.o 164 165In this example, the module name will be isdn.o. Kbuild will 166compile the objects listed in $(isdn-y) and then run 167``$(LD) -r`` on the list of these files to generate isdn.o. 168 169Due to kbuild recognizing $(<module_name>-y) for composite objects, 170you can use the value of a ``CONFIG_`` symbol to optionally include an 171object file as part of a composite object. 172 173Example:: 174 175 #fs/ext2/Makefile 176 obj-$(CONFIG_EXT2_FS) += ext2.o 177 ext2-y := balloc.o dir.o file.o ialloc.o inode.o ioctl.o \ 178 namei.o super.o symlink.o 179 ext2-$(CONFIG_EXT2_FS_XATTR) += xattr.o xattr_user.o \ 180 xattr_trusted.o 181 182In this example, xattr.o, xattr_user.o and xattr_trusted.o are only 183part of the composite object ext2.o if $(CONFIG_EXT2_FS_XATTR) 184evaluates to "y". 185 186Note: Of course, when you are building objects into the kernel, 187the syntax above will also work. So, if you have CONFIG_EXT2_FS=y, 188kbuild will build an ext2.o file for you out of the individual 189parts and then link this into built-in.a, as you would expect. 190 191Library file goals - lib-y 192-------------------------- 193 194Objects listed with obj-* are used for modules, or 195combined in a built-in.a for that specific directory. 196There is also the possibility to list objects that will 197be included in a library, lib.a. 198All objects listed with lib-y are combined in a single 199library for that directory. 200Objects that are listed in obj-y and additionally listed in 201lib-y will not be included in the library, since they will 202be accessible anyway. 203For consistency, objects listed in lib-m will be included in lib.a. 204 205Note that the same kbuild makefile may list files to be built-in 206and to be part of a library. Therefore the same directory 207may contain both a built-in.a and a lib.a file. 208 209Example:: 210 211 #arch/x86/lib/Makefile 212 lib-y := delay.o 213 214This will create a library lib.a based on delay.o. For kbuild to 215actually recognize that there is a lib.a being built, the directory 216shall be listed in libs-y. 217 218See also `List directories to visit when descending`_. 219 220Use of lib-y is normally restricted to ``lib/`` and ``arch/*/lib``. 221 222Descending down in directories 223------------------------------ 224 225A Makefile is only responsible for building objects in its own 226directory. Files in subdirectories should be taken care of by 227Makefiles in these subdirs. The build system will automatically 228invoke make recursively in subdirectories, provided you let it know of 229them. 230 231To do so, obj-y and obj-m are used. 232ext2 lives in a separate directory, and the Makefile present in fs/ 233tells kbuild to descend down using the following assignment. 234 235Example:: 236 237 #fs/Makefile 238 obj-$(CONFIG_EXT2_FS) += ext2/ 239 240If CONFIG_EXT2_FS is set to either "y" (built-in) or "m" (modular) 241the corresponding obj- variable will be set, and kbuild will descend 242down in the ext2 directory. 243 244Kbuild uses this information not only to decide that it needs to visit 245the directory, but also to decide whether or not to link objects from 246the directory into vmlinux. 247 248When Kbuild descends into the directory with "y", all built-in objects 249from that directory are combined into the built-in.a, which will be 250eventually linked into vmlinux. 251 252When Kbuild descends into the directory with "m", in contrast, nothing 253from that directory will be linked into vmlinux. If the Makefile in 254that directory specifies obj-y, those objects will be left orphan. 255It is very likely a bug of the Makefile or of dependencies in Kconfig. 256 257Kbuild also supports dedicated syntax, subdir-y and subdir-m, for 258descending into subdirectories. It is a good fit when you know they 259do not contain kernel-space objects at all. A typical usage is to let 260Kbuild descend into subdirectories to build tools. 261 262Examples:: 263 264 # scripts/Makefile 265 subdir-$(CONFIG_GCC_PLUGINS) += gcc-plugins 266 subdir-$(CONFIG_MODVERSIONS) += genksyms 267 subdir-$(CONFIG_SECURITY_SELINUX) += selinux 268 269Unlike obj-y/m, subdir-y/m does not need the trailing slash since this 270syntax is always used for directories. 271 272It is good practice to use a ``CONFIG_`` variable when assigning directory 273names. This allows kbuild to totally skip the directory if the 274corresponding ``CONFIG_`` option is neither "y" nor "m". 275 276Non-builtin vmlinux targets - extra-y 277------------------------------------- 278 279extra-y specifies targets which are needed for building vmlinux, 280but not combined into built-in.a. 281 282Examples are: 283 2841) vmlinux linker script 285 286 The linker script for vmlinux is located at 287 arch/$(SRCARCH)/kernel/vmlinux.lds 288 289Example:: 290 291 # arch/x86/kernel/Makefile 292 extra-y += vmlinux.lds 293 294$(extra-y) should only contain targets needed for vmlinux. 295 296Kbuild skips extra-y when vmlinux is apparently not a final goal. 297(e.g. ``make modules``, or building external modules) 298 299If you intend to build targets unconditionally, always-y (explained 300in the next section) is the correct syntax to use. 301 302Always built goals - always-y 303----------------------------- 304 305always-y specifies targets which are literally always built when 306Kbuild visits the Makefile. 307 308Example:: 309 310 # ./Kbuild 311 offsets-file := include/generated/asm-offsets.h 312 always-y += $(offsets-file) 313 314Compilation flags 315----------------- 316 317ccflags-y, asflags-y and ldflags-y 318 These three flags apply only to the kbuild makefile in which they 319 are assigned. They are used for all the normal cc, as and ld 320 invocations happening during a recursive build. 321 322 ccflags-y specifies options for compiling with $(CC). 323 324 Example:: 325 326 # drivers/acpi/acpica/Makefile 327 ccflags-y := -Os -D_LINUX -DBUILDING_ACPICA 328 ccflags-$(CONFIG_ACPI_DEBUG) += -DACPI_DEBUG_OUTPUT 329 330 This variable is necessary because the top Makefile owns the 331 variable $(KBUILD_CFLAGS) and uses it for compilation flags for the 332 entire tree. 333 334 asflags-y specifies assembler options. 335 336 Example:: 337 338 #arch/sparc/kernel/Makefile 339 asflags-y := -ansi 340 341 ldflags-y specifies options for linking with $(LD). 342 343 Example:: 344 345 #arch/cris/boot/compressed/Makefile 346 ldflags-y += -T $(src)/decompress_$(arch-y).lds 347 348subdir-ccflags-y, subdir-asflags-y 349 The two flags listed above are similar to ccflags-y and asflags-y. 350 The difference is that the subdir- variants have effect for the kbuild 351 file where they are present and all subdirectories. 352 Options specified using subdir-* are added to the commandline before 353 the options specified using the non-subdir variants. 354 355 Example:: 356 357 subdir-ccflags-y := -Werror 358 359ccflags-remove-y, asflags-remove-y 360 These flags are used to remove particular flags for the compiler, 361 assembler invocations. 362 363 Example:: 364 365 ccflags-remove-$(CONFIG_MCOUNT) += -pg 366 367CFLAGS_$@, AFLAGS_$@ 368 CFLAGS_$@ and AFLAGS_$@ only apply to commands in current 369 kbuild makefile. 370 371 $(CFLAGS_$@) specifies per-file options for $(CC). The $@ 372 part has a literal value which specifies the file that it is for. 373 374 CFLAGS_$@ has the higher priority than ccflags-remove-y; CFLAGS_$@ 375 can re-add compiler flags that were removed by ccflags-remove-y. 376 377 Example:: 378 379 # drivers/scsi/Makefile 380 CFLAGS_aha152x.o = -DAHA152X_STAT -DAUTOCONF 381 382 This line specify compilation flags for aha152x.o. 383 384 $(AFLAGS_$@) is a similar feature for source files in assembly 385 languages. 386 387 AFLAGS_$@ has the higher priority than asflags-remove-y; AFLAGS_$@ 388 can re-add assembler flags that were removed by asflags-remove-y. 389 390 Example:: 391 392 # arch/arm/kernel/Makefile 393 AFLAGS_head.o := -DTEXT_OFFSET=$(TEXT_OFFSET) 394 AFLAGS_crunch-bits.o := -Wa,-mcpu=ep9312 395 AFLAGS_iwmmxt.o := -Wa,-mcpu=iwmmxt 396 397Dependency tracking 398------------------- 399 400Kbuild tracks dependencies on the following: 401 4021) All prerequisite files (both ``*.c`` and ``*.h``) 4032) ``CONFIG_`` options used in all prerequisite files 4043) Command-line used to compile target 405 406Thus, if you change an option to $(CC) all affected files will 407be re-compiled. 408 409Custom Rules 410------------ 411 412Custom rules are used when the kbuild infrastructure does 413not provide the required support. A typical example is 414header files generated during the build process. 415Another example are the architecture-specific Makefiles which 416need custom rules to prepare boot images etc. 417 418Custom rules are written as normal Make rules. 419Kbuild is not executing in the directory where the Makefile is 420located, so all custom rules shall use a relative 421path to prerequisite files and target files. 422 423Two variables are used when defining custom rules: 424 425$(src) 426 $(src) is the directory where the Makefile is located. Always use $(src) when 427 referring to files located in the src tree. 428 429$(obj) 430 $(obj) is the directory where the target is saved. Always use $(obj) when 431 referring to generated files. Use $(obj) for pattern rules that need to work 432 for both generated files and real sources (VPATH will help to find the 433 prerequisites not only in the object tree but also in the source tree). 434 435 Example:: 436 437 #drivers/scsi/Makefile 438 $(obj)/53c8xx_d.h: $(src)/53c7,8xx.scr $(src)/script_asm.pl 439 $(CPP) -DCHIP=810 - < $< | ... $(src)/script_asm.pl 440 441 This is a custom rule, following the normal syntax 442 required by make. 443 444 The target file depends on two prerequisite files. References 445 to the target file are prefixed with $(obj), references 446 to prerequisites are referenced with $(src) (because they are not 447 generated files). 448 449$(srcroot) 450 $(srcroot) refers to the root of the source you are building, which can be 451 either the kernel source or the external modules source, depending on whether 452 KBUILD_EXTMOD is set. This can be either a relative or an absolute path, but 453 if KBUILD_ABS_SRCTREE=1 is set, it is always an absolute path. 454 455$(srctree) 456 $(srctree) refers to the root of the kernel source tree. When building the 457 kernel, this is the same as $(srcroot). 458 459$(objtree) 460 $(objtree) refers to the root of the kernel object tree. It is ``.`` when 461 building the kernel, but it is different when building external modules. 462 463$(kecho) 464 echoing information to user in a rule is often a good practice 465 but when execution ``make -s`` one does not expect to see any output 466 except for warnings/errors. 467 To support this kbuild defines $(kecho) which will echo out the 468 text following $(kecho) to stdout except if ``make -s`` is used. 469 470 Example:: 471 472 # arch/arm/Makefile 473 $(BOOT_TARGETS): vmlinux 474 $(Q)$(MAKE) $(build)=$(boot) MACHINE=$(MACHINE) $(boot)/$@ 475 @$(kecho) ' Kernel: $(boot)/$@ is ready' 476 477 When kbuild is executing with KBUILD_VERBOSE unset, then only a shorthand 478 of a command is normally displayed. 479 To enable this behaviour for custom commands kbuild requires 480 two variables to be set:: 481 482 quiet_cmd_<command> - what shall be echoed 483 cmd_<command> - the command to execute 484 485 Example:: 486 487 # lib/Makefile 488 quiet_cmd_crc32 = GEN $@ 489 cmd_crc32 = $< > $@ 490 491 $(obj)/crc32table.h: $(obj)/gen_crc32table 492 $(call cmd,crc32) 493 494 When updating the $(obj)/crc32table.h target, the line:: 495 496 GEN lib/crc32table.h 497 498 will be displayed with ``make KBUILD_VERBOSE=``. 499 500Command change detection 501------------------------ 502 503When the rule is evaluated, timestamps are compared between the target 504and its prerequisite files. GNU Make updates the target when any of the 505prerequisites is newer than that. 506 507The target should be rebuilt also when the command line has changed 508since the last invocation. This is not supported by Make itself, so 509Kbuild achieves this by a kind of meta-programming. 510 511if_changed is the macro used for this purpose, in the following form:: 512 513 quiet_cmd_<command> = ... 514 cmd_<command> = ... 515 516 <target>: <source(s)> FORCE 517 $(call if_changed,<command>) 518 519Any target that utilizes if_changed must be listed in $(targets), 520otherwise the command line check will fail, and the target will 521always be built. 522 523If the target is already listed in the recognized syntax such as 524obj-y/m, lib-y/m, extra-y/m, always-y/m, hostprogs, userprogs, Kbuild 525automatically adds it to $(targets). Otherwise, the target must be 526explicitly added to $(targets). 527 528Assignments to $(targets) are without $(obj)/ prefix. if_changed may be 529used in conjunction with custom rules as defined in `Custom Rules`_. 530 531Note: It is a typical mistake to forget the FORCE prerequisite. 532Another common pitfall is that whitespace is sometimes significant; for 533instance, the below will fail (note the extra space after the comma):: 534 535 target: source(s) FORCE 536 537**WRONG!** $(call if_changed, objcopy) 538 539Note: 540 if_changed should not be used more than once per target. 541 It stores the executed command in a corresponding .cmd 542 file and multiple calls would result in overwrites and 543 unwanted results when the target is up to date and only the 544 tests on changed commands trigger execution of commands. 545 546$(CC) support functions 547----------------------- 548 549The kernel may be built with several different versions of 550$(CC), each supporting a unique set of features and options. 551kbuild provides basic support to check for valid options for $(CC). 552$(CC) is usually the gcc compiler, but other alternatives are 553available. 554 555as-option 556 as-option is used to check if $(CC) -- when used to compile 557 assembler (``*.S``) files -- supports the given option. An optional 558 second option may be specified if the first option is not supported. 559 560 Example:: 561 562 #arch/sh/Makefile 563 cflags-y += $(call as-option,-Wa$(comma)-isa=$(isa-y),) 564 565 In the above example, cflags-y will be assigned the option 566 -Wa$(comma)-isa=$(isa-y) if it is supported by $(CC). 567 The second argument is optional, and if supplied will be used 568 if first argument is not supported. 569 570as-instr 571 as-instr checks if the assembler reports a specific instruction 572 and then outputs either option1 or option2 573 C escapes are supported in the test instruction 574 Note: as-instr-option uses KBUILD_AFLAGS for assembler options 575 576cc-option 577 cc-option is used to check if $(CC) supports a given option, and if 578 not supported to use an optional second option. 579 580 Example:: 581 582 #arch/x86/Makefile 583 cflags-y += $(call cc-option,-march=pentium-mmx,-march=i586) 584 585 In the above example, cflags-y will be assigned the option 586 -march=pentium-mmx if supported by $(CC), otherwise -march=i586. 587 The second argument to cc-option is optional, and if omitted, 588 cflags-y will be assigned no value if first option is not supported. 589 Note: cc-option uses KBUILD_CFLAGS for $(CC) options 590 591cc-option-yn 592 cc-option-yn is used to check if $(CC) supports a given option 593 and return "y" if supported, otherwise "n". 594 595 Example:: 596 597 #arch/ppc/Makefile 598 biarch := $(call cc-option-yn, -m32) 599 aflags-$(biarch) += -a32 600 cflags-$(biarch) += -m32 601 602 In the above example, $(biarch) is set to y if $(CC) supports the -m32 603 option. When $(biarch) equals "y", the expanded variables $(aflags-y) 604 and $(cflags-y) will be assigned the values -a32 and -m32, 605 respectively. 606 607 Note: cc-option-yn uses KBUILD_CFLAGS for $(CC) options 608 609cc-disable-warning 610 cc-disable-warning checks if $(CC) supports a given warning and returns 611 the commandline switch to disable it. This special function is needed, 612 because gcc 4.4 and later accept any unknown -Wno-* option and only 613 warn about it if there is another warning in the source file. 614 615 Example:: 616 617 KBUILD_CFLAGS += $(call cc-disable-warning, unused-but-set-variable) 618 619 In the above example, -Wno-unused-but-set-variable will be added to 620 KBUILD_CFLAGS only if $(CC) really accepts it. 621 622gcc-min-version 623 gcc-min-version tests if the value of $(CONFIG_GCC_VERSION) is greater than 624 or equal to the provided value and evaluates to y if so. 625 626 Example:: 627 628 cflags-$(call gcc-min-version, 70100) := -foo 629 630 In this example, cflags-y will be assigned the value -foo if $(CC) is gcc and 631 $(CONFIG_GCC_VERSION) is >= 7.1. 632 633clang-min-version 634 clang-min-version tests if the value of $(CONFIG_CLANG_VERSION) is greater 635 than or equal to the provided value and evaluates to y if so. 636 637 Example:: 638 639 cflags-$(call clang-min-version, 110000) := -foo 640 641 In this example, cflags-y will be assigned the value -foo if $(CC) is clang 642 and $(CONFIG_CLANG_VERSION) is >= 11.0.0. 643 644cc-cross-prefix 645 cc-cross-prefix is used to check if there exists a $(CC) in path with 646 one of the listed prefixes. The first prefix where there exist a 647 prefix$(CC) in the PATH is returned - and if no prefix$(CC) is found 648 then nothing is returned. 649 650 Additional prefixes are separated by a single space in the 651 call of cc-cross-prefix. 652 653 This functionality is useful for architecture Makefiles that try 654 to set CROSS_COMPILE to well-known values but may have several 655 values to select between. 656 657 It is recommended only to try to set CROSS_COMPILE if it is a cross 658 build (host arch is different from target arch). And if CROSS_COMPILE 659 is already set then leave it with the old value. 660 661 Example:: 662 663 #arch/m68k/Makefile 664 ifneq ($(SUBARCH),$(ARCH)) 665 ifeq ($(CROSS_COMPILE),) 666 CROSS_COMPILE := $(call cc-cross-prefix, m68k-linux-gnu-) 667 endif 668 endif 669 670$(RUSTC) support functions 671-------------------------- 672 673rustc-min-version 674 rustc-min-version tests if the value of $(CONFIG_RUSTC_VERSION) is greater 675 than or equal to the provided value and evaluates to y if so. 676 677 Example:: 678 679 rustflags-$(call rustc-min-version, 108500) := -Cfoo 680 681 In this example, rustflags-y will be assigned the value -Cfoo if 682 $(CONFIG_RUSTC_VERSION) is >= 1.85.0. 683 684$(LD) support functions 685----------------------- 686 687ld-option 688 ld-option is used to check if $(LD) supports the supplied option. 689 ld-option takes two options as arguments. 690 691 The second argument is an optional option that can be used if the 692 first option is not supported by $(LD). 693 694 Example:: 695 696 #Makefile 697 LDFLAGS_vmlinux += $(call ld-option, -X) 698 699Script invocation 700----------------- 701 702Make rules may invoke scripts to build the kernel. The rules shall 703always provide the appropriate interpreter to execute the script. They 704shall not rely on the execute bits being set, and shall not invoke the 705script directly. For the convenience of manual script invocation, such 706as invoking ./scripts/checkpatch.pl, it is recommended to set execute 707bits on the scripts nonetheless. 708 709Kbuild provides variables $(CONFIG_SHELL), $(AWK), $(PERL), 710and $(PYTHON3) to refer to interpreters for the respective 711scripts. 712 713Example:: 714 715 #Makefile 716 cmd_depmod = $(CONFIG_SHELL) $(srctree)/scripts/depmod.sh $(DEPMOD) \ 717 $(KERNELRELEASE) 718 719Host Program support 720==================== 721 722Kbuild supports building executables on the host for use during the 723compilation stage. 724 725Two steps are required in order to use a host executable. 726 727The first step is to tell kbuild that a host program exists. This is 728done utilising the variable ``hostprogs``. 729 730The second step is to add an explicit dependency to the executable. 731This can be done in two ways. Either add the dependency in a rule, 732or utilise the variable ``always-y``. 733Both possibilities are described in the following. 734 735Simple Host Program 736------------------- 737 738In some cases there is a need to compile and run a program on the 739computer where the build is running. 740 741The following line tells kbuild that the program bin2hex shall be 742built on the build host. 743 744Example:: 745 746 hostprogs := bin2hex 747 748Kbuild assumes in the above example that bin2hex is made from a single 749c-source file named bin2hex.c located in the same directory as 750the Makefile. 751 752Composite Host Programs 753----------------------- 754 755Host programs can be made up based on composite objects. 756The syntax used to define composite objects for host programs is 757similar to the syntax used for kernel objects. 758$(<executable>-objs) lists all objects used to link the final 759executable. 760 761Example:: 762 763 #scripts/lxdialog/Makefile 764 hostprogs := lxdialog 765 lxdialog-objs := checklist.o lxdialog.o 766 767Objects with extension .o are compiled from the corresponding .c 768files. In the above example, checklist.c is compiled to checklist.o 769and lxdialog.c is compiled to lxdialog.o. 770 771Finally, the two .o files are linked to the executable, lxdialog. 772Note: The syntax <executable>-y is not permitted for host-programs. 773 774Using C++ for host programs 775--------------------------- 776 777kbuild offers support for host programs written in C++. This was 778introduced solely to support kconfig, and is not recommended 779for general use. 780 781Example:: 782 783 #scripts/kconfig/Makefile 784 hostprogs := qconf 785 qconf-cxxobjs := qconf.o 786 787In the example above the executable is composed of the C++ file 788qconf.cc - identified by $(qconf-cxxobjs). 789 790If qconf is composed of a mixture of .c and .cc files, then an 791additional line can be used to identify this. 792 793Example:: 794 795 #scripts/kconfig/Makefile 796 hostprogs := qconf 797 qconf-cxxobjs := qconf.o 798 qconf-objs := check.o 799 800Using Rust for host programs 801---------------------------- 802 803Kbuild offers support for host programs written in Rust. However, 804since a Rust toolchain is not mandatory for kernel compilation, 805it may only be used in scenarios where Rust is required to be 806available (e.g. when ``CONFIG_RUST`` is enabled). 807 808Example:: 809 810 hostprogs := target 811 target-rust := y 812 813Kbuild will compile ``target`` using ``target.rs`` as the crate root, 814located in the same directory as the ``Makefile``. The crate may 815consist of several source files (see ``samples/rust/hostprogs``). 816 817Controlling compiler options for host programs 818---------------------------------------------- 819 820When compiling host programs, it is possible to set specific flags. 821The programs will always be compiled utilising $(HOSTCC) passed 822the options specified in $(KBUILD_HOSTCFLAGS). 823 824To set flags that will take effect for all host programs created 825in that Makefile, use the variable HOST_EXTRACFLAGS. 826 827Example:: 828 829 #scripts/lxdialog/Makefile 830 HOST_EXTRACFLAGS += -I/usr/include/ncurses 831 832To set specific flags for a single file the following construction 833is used: 834 835Example:: 836 837 #arch/ppc64/boot/Makefile 838 HOSTCFLAGS_piggyback.o := -DKERNELBASE=$(KERNELBASE) 839 840It is also possible to specify additional options to the linker. 841 842Example:: 843 844 #scripts/kconfig/Makefile 845 HOSTLDLIBS_qconf := -L$(QTDIR)/lib 846 847When linking qconf, it will be passed the extra option 848``-L$(QTDIR)/lib``. 849 850When host programs are actually built 851------------------------------------- 852 853Kbuild will only build host-programs when they are referenced 854as a prerequisite. 855 856This is possible in two ways: 857 858(1) List the prerequisite explicitly in a custom rule. 859 860 Example:: 861 862 #drivers/pci/Makefile 863 hostprogs := gen-devlist 864 $(obj)/devlist.h: $(src)/pci.ids $(obj)/gen-devlist 865 ( cd $(obj); ./gen-devlist ) < $< 866 867 The target $(obj)/devlist.h will not be built before 868 $(obj)/gen-devlist is updated. Note that references to 869 the host programs in custom rules must be prefixed with $(obj). 870 871(2) Use always-y 872 873 When there is no suitable custom rule, and the host program 874 shall be built when a makefile is entered, the always-y 875 variable shall be used. 876 877 Example:: 878 879 #scripts/lxdialog/Makefile 880 hostprogs := lxdialog 881 always-y := $(hostprogs) 882 883 Kbuild provides the following shorthand for this:: 884 885 hostprogs-always-y := lxdialog 886 887 This will tell kbuild to build lxdialog even if not referenced in 888 any rule. 889 890Userspace Program support 891========================= 892 893Just like host programs, Kbuild also supports building userspace executables 894for the target architecture (i.e. the same architecture as you are building 895the kernel for). 896 897The syntax is quite similar. The difference is to use ``userprogs`` instead of 898``hostprogs``. 899 900Simple Userspace Program 901------------------------ 902 903The following line tells kbuild that the program bpf-direct shall be 904built for the target architecture. 905 906Example:: 907 908 userprogs := bpf-direct 909 910Kbuild assumes in the above example that bpf-direct is made from a 911single C source file named bpf-direct.c located in the same directory 912as the Makefile. 913 914Composite Userspace Programs 915---------------------------- 916 917Userspace programs can be made up based on composite objects. 918The syntax used to define composite objects for userspace programs is 919similar to the syntax used for kernel objects. 920$(<executable>-objs) lists all objects used to link the final 921executable. 922 923Example:: 924 925 #samples/seccomp/Makefile 926 userprogs := bpf-fancy 927 bpf-fancy-objs := bpf-fancy.o bpf-helper.o 928 929Objects with extension .o are compiled from the corresponding .c 930files. In the above example, bpf-fancy.c is compiled to bpf-fancy.o 931and bpf-helper.c is compiled to bpf-helper.o. 932 933Finally, the two .o files are linked to the executable, bpf-fancy. 934Note: The syntax <executable>-y is not permitted for userspace programs. 935 936Controlling compiler options for userspace programs 937--------------------------------------------------- 938 939When compiling userspace programs, it is possible to set specific flags. 940The programs will always be compiled utilising $(CC) passed 941the options specified in $(KBUILD_USERCFLAGS). 942 943To set flags that will take effect for all userspace programs created 944in that Makefile, use the variable userccflags. 945 946Example:: 947 948 # samples/seccomp/Makefile 949 userccflags += -I usr/include 950 951To set specific flags for a single file the following construction 952is used: 953 954Example:: 955 956 bpf-helper-userccflags += -I user/include 957 958It is also possible to specify additional options to the linker. 959 960Example:: 961 962 # net/bpfilter/Makefile 963 bpfilter_umh-userldflags += -static 964 965To specify libraries linked to a userspace program, you can use 966``<executable>-userldlibs``. The ``userldlibs`` syntax specifies libraries 967linked to all userspace programs created in the current Makefile. 968 969When linking bpfilter_umh, it will be passed the extra option -static. 970 971From command line, :ref:`USERCFLAGS and USERLDFLAGS <userkbuildflags>` will also be used. 972 973When userspace programs are actually built 974------------------------------------------ 975 976Kbuild builds userspace programs only when told to do so. 977There are two ways to do this. 978 979(1) Add it as the prerequisite of another file 980 981 Example:: 982 983 #net/bpfilter/Makefile 984 userprogs := bpfilter_umh 985 $(obj)/bpfilter_umh_blob.o: $(obj)/bpfilter_umh 986 987 $(obj)/bpfilter_umh is built before $(obj)/bpfilter_umh_blob.o 988 989(2) Use always-y 990 991 Example:: 992 993 userprogs := binderfs_example 994 always-y := $(userprogs) 995 996 Kbuild provides the following shorthand for this:: 997 998 userprogs-always-y := binderfs_example 999 1000 This will tell Kbuild to build binderfs_example when it visits this 1001 Makefile. 1002 1003Kbuild clean infrastructure 1004=========================== 1005 1006``make clean`` deletes most generated files in the obj tree where the kernel 1007is compiled. This includes generated files such as host programs. 1008Kbuild knows targets listed in $(hostprogs), $(always-y), $(always-m), 1009$(always-), $(extra-y), $(extra-) and $(targets). They are all deleted 1010during ``make clean``. Files matching the patterns ``*.[oas]``, ``*.ko``, plus 1011some additional files generated by kbuild are deleted all over the kernel 1012source tree when ``make clean`` is executed. 1013 1014Additional files or directories can be specified in kbuild makefiles by use of 1015$(clean-files). 1016 1017Example:: 1018 1019 #lib/Makefile 1020 clean-files := crc32table.h 1021 1022When executing ``make clean``, the file ``crc32table.h`` will be deleted. 1023Kbuild will assume files to be in the same relative directory as the 1024Makefile. 1025 1026To exclude certain files or directories from make clean, use the 1027$(no-clean-files) variable. 1028 1029Usually kbuild descends down in subdirectories due to ``obj-* := dir/``, 1030but in the architecture makefiles where the kbuild infrastructure 1031is not sufficient this sometimes needs to be explicit. 1032 1033Example:: 1034 1035 #arch/x86/boot/Makefile 1036 subdir- := compressed 1037 1038The above assignment instructs kbuild to descend down in the 1039directory compressed/ when ``make clean`` is executed. 1040 1041Note 1: arch/$(SRCARCH)/Makefile cannot use ``subdir-``, because that file is 1042included in the top level makefile. Instead, arch/$(SRCARCH)/Kbuild can use 1043``subdir-``. 1044 1045Note 2: All directories listed in core-y, libs-y, drivers-y and net-y will 1046be visited during ``make clean``. 1047 1048Architecture Makefiles 1049====================== 1050 1051The top level Makefile sets up the environment and does the preparation, 1052before starting to descend down in the individual directories. 1053 1054The top level makefile contains the generic part, whereas 1055arch/$(SRCARCH)/Makefile contains what is required to set up kbuild 1056for said architecture. 1057 1058To do so, arch/$(SRCARCH)/Makefile sets up a number of variables and defines 1059a few targets. 1060 1061When kbuild executes, the following steps are followed (roughly): 1062 10631) Configuration of the kernel => produce .config 1064 10652) Store kernel version in include/linux/version.h 1066 10673) Updating all other prerequisites to the target prepare: 1068 1069 - Additional prerequisites are specified in arch/$(SRCARCH)/Makefile 1070 10714) Recursively descend down in all directories listed in 1072 init-* core* drivers-* net-* libs-* and build all targets. 1073 1074 - The values of the above variables are expanded in arch/$(SRCARCH)/Makefile. 1075 10765) All object files are then linked and the resulting file vmlinux is 1077 located at the root of the obj tree. 1078 The very first objects linked are listed in scripts/head-object-list.txt. 1079 10806) Finally, the architecture-specific part does any required post processing 1081 and builds the final bootimage. 1082 1083 - This includes building boot records 1084 - Preparing initrd images and the like 1085 1086Set variables to tweak the build to the architecture 1087---------------------------------------------------- 1088 1089KBUILD_LDFLAGS 1090 Generic $(LD) options 1091 1092 Flags used for all invocations of the linker. 1093 Often specifying the emulation is sufficient. 1094 1095 Example:: 1096 1097 #arch/s390/Makefile 1098 KBUILD_LDFLAGS := -m elf_s390 1099 1100 Note: ldflags-y can be used to further customise 1101 the flags used. See `Non-builtin vmlinux targets - extra-y`_. 1102 1103LDFLAGS_vmlinux 1104 Options for $(LD) when linking vmlinux 1105 1106 LDFLAGS_vmlinux is used to specify additional flags to pass to 1107 the linker when linking the final vmlinux image. 1108 1109 LDFLAGS_vmlinux uses the LDFLAGS_$@ support. 1110 1111 Example:: 1112 1113 #arch/x86/Makefile 1114 LDFLAGS_vmlinux := -e stext 1115 1116OBJCOPYFLAGS 1117 objcopy flags 1118 1119 When $(call if_changed,objcopy) is used to translate a .o file, 1120 the flags specified in OBJCOPYFLAGS will be used. 1121 1122 $(call if_changed,objcopy) is often used to generate raw binaries on 1123 vmlinux. 1124 1125 Example:: 1126 1127 #arch/s390/Makefile 1128 OBJCOPYFLAGS := -O binary 1129 1130 #arch/s390/boot/Makefile 1131 $(obj)/image: vmlinux FORCE 1132 $(call if_changed,objcopy) 1133 1134 In this example, the binary $(obj)/image is a binary version of 1135 vmlinux. The usage of $(call if_changed,xxx) will be described later. 1136 1137KBUILD_AFLAGS 1138 Assembler flags 1139 1140 Default value - see top level Makefile. 1141 1142 Append or modify as required per architecture. 1143 1144 Example:: 1145 1146 #arch/sparc64/Makefile 1147 KBUILD_AFLAGS += -m64 -mcpu=ultrasparc 1148 1149KBUILD_CFLAGS 1150 $(CC) compiler flags 1151 1152 Default value - see top level Makefile. 1153 1154 Append or modify as required per architecture. 1155 1156 Often, the KBUILD_CFLAGS variable depends on the configuration. 1157 1158 Example:: 1159 1160 #arch/x86/boot/compressed/Makefile 1161 cflags-$(CONFIG_X86_32) := -march=i386 1162 cflags-$(CONFIG_X86_64) := -mcmodel=small 1163 KBUILD_CFLAGS += $(cflags-y) 1164 1165 Many arch Makefiles dynamically run the target C compiler to 1166 probe supported options:: 1167 1168 #arch/x86/Makefile 1169 1170 ... 1171 cflags-$(CONFIG_MPENTIUMII) += $(call cc-option,\ 1172 -march=pentium2,-march=i686) 1173 ... 1174 # Disable unit-at-a-time mode ... 1175 KBUILD_CFLAGS += $(call cc-option,-fno-unit-at-a-time) 1176 ... 1177 1178 1179 The first example utilises the trick that a config option expands 1180 to "y" when selected. 1181 1182KBUILD_RUSTFLAGS 1183 $(RUSTC) compiler flags 1184 1185 Default value - see top level Makefile. 1186 1187 Append or modify as required per architecture. 1188 1189 Often, the KBUILD_RUSTFLAGS variable depends on the configuration. 1190 1191 Note that target specification file generation (for ``--target``) 1192 is handled in ``scripts/generate_rust_target.rs``. 1193 1194KBUILD_AFLAGS_KERNEL 1195 Assembler options specific for built-in 1196 1197 $(KBUILD_AFLAGS_KERNEL) contains extra C compiler flags used to compile 1198 resident kernel code. 1199 1200KBUILD_AFLAGS_MODULE 1201 Assembler options specific for modules 1202 1203 $(KBUILD_AFLAGS_MODULE) is used to add arch-specific options that 1204 are used for assembler. 1205 1206 From commandline AFLAGS_MODULE shall be used (see kbuild.rst). 1207 1208KBUILD_CFLAGS_KERNEL 1209 $(CC) options specific for built-in 1210 1211 $(KBUILD_CFLAGS_KERNEL) contains extra C compiler flags used to compile 1212 resident kernel code. 1213 1214KBUILD_CFLAGS_MODULE 1215 Options for $(CC) when building modules 1216 1217 $(KBUILD_CFLAGS_MODULE) is used to add arch-specific options that 1218 are used for $(CC). 1219 1220 From commandline CFLAGS_MODULE shall be used (see kbuild.rst). 1221 1222KBUILD_RUSTFLAGS_KERNEL 1223 $(RUSTC) options specific for built-in 1224 1225 $(KBUILD_RUSTFLAGS_KERNEL) contains extra Rust compiler flags used to 1226 compile resident kernel code. 1227 1228KBUILD_RUSTFLAGS_MODULE 1229 Options for $(RUSTC) when building modules 1230 1231 $(KBUILD_RUSTFLAGS_MODULE) is used to add arch-specific options that 1232 are used for $(RUSTC). 1233 1234 From commandline RUSTFLAGS_MODULE shall be used (see kbuild.rst). 1235 1236KBUILD_LDFLAGS_MODULE 1237 Options for $(LD) when linking modules 1238 1239 $(KBUILD_LDFLAGS_MODULE) is used to add arch-specific options 1240 used when linking modules. This is often a linker script. 1241 1242 From commandline LDFLAGS_MODULE shall be used (see kbuild.rst). 1243 1244KBUILD_LDS 1245 The linker script with full path. Assigned by the top-level Makefile. 1246 1247KBUILD_VMLINUX_OBJS 1248 All object files for vmlinux. They are linked to vmlinux in the same 1249 order as listed in KBUILD_VMLINUX_OBJS. 1250 1251 The objects listed in scripts/head-object-list.txt are exceptions; 1252 they are placed before the other objects. 1253 1254KBUILD_VMLINUX_LIBS 1255 All .a ``lib`` files for vmlinux. KBUILD_VMLINUX_OBJS and 1256 KBUILD_VMLINUX_LIBS together specify all the object files used to 1257 link vmlinux. 1258 1259Add prerequisites to archheaders 1260-------------------------------- 1261 1262The archheaders: rule is used to generate header files that 1263may be installed into user space by ``make header_install``. 1264 1265It is run before ``make archprepare`` when run on the 1266architecture itself. 1267 1268Add prerequisites to archprepare 1269-------------------------------- 1270 1271The archprepare: rule is used to list prerequisites that need to be 1272built before starting to descend down in the subdirectories. 1273 1274This is usually used for header files containing assembler constants. 1275 1276Example:: 1277 1278 #arch/arm/Makefile 1279 archprepare: maketools 1280 1281In this example, the file target maketools will be processed 1282before descending down in the subdirectories. 1283 1284See also chapter XXX-TODO that describes how kbuild supports 1285generating offset header files. 1286 1287List directories to visit when descending 1288----------------------------------------- 1289 1290An arch Makefile cooperates with the top Makefile to define variables 1291which specify how to build the vmlinux file. Note that there is no 1292corresponding arch-specific section for modules; the module-building 1293machinery is all architecture-independent. 1294 1295core-y, libs-y, drivers-y 1296 $(libs-y) lists directories where a lib.a archive can be located. 1297 1298 The rest list directories where a built-in.a object file can be 1299 located. 1300 1301 Then the rest follows in this order: 1302 1303 $(core-y), $(libs-y), $(drivers-y) 1304 1305 The top level Makefile defines values for all generic directories, 1306 and arch/$(SRCARCH)/Makefile only adds architecture-specific 1307 directories. 1308 1309 Example:: 1310 1311 # arch/sparc/Makefile 1312 core-y += arch/sparc/ 1313 1314 libs-y += arch/sparc/prom/ 1315 libs-y += arch/sparc/lib/ 1316 1317 drivers-$(CONFIG_PM) += arch/sparc/power/ 1318 1319Architecture-specific boot images 1320--------------------------------- 1321 1322An arch Makefile specifies goals that take the vmlinux file, compress 1323it, wrap it in bootstrapping code, and copy the resulting files 1324somewhere. This includes various kinds of installation commands. 1325The actual goals are not standardized across architectures. 1326 1327It is common to locate any additional processing in a boot/ 1328directory below arch/$(SRCARCH)/. 1329 1330Kbuild does not provide any smart way to support building a 1331target specified in boot/. Therefore arch/$(SRCARCH)/Makefile shall 1332call make manually to build a target in boot/. 1333 1334The recommended approach is to include shortcuts in 1335arch/$(SRCARCH)/Makefile, and use the full path when calling down 1336into the arch/$(SRCARCH)/boot/Makefile. 1337 1338Example:: 1339 1340 #arch/x86/Makefile 1341 boot := arch/x86/boot 1342 bzImage: vmlinux 1343 $(Q)$(MAKE) $(build)=$(boot) $(boot)/$@ 1344 1345``$(Q)$(MAKE) $(build)=<dir>`` is the recommended way to invoke 1346make in a subdirectory. 1347 1348There are no rules for naming architecture-specific targets, 1349but executing ``make help`` will list all relevant targets. 1350To support this, $(archhelp) must be defined. 1351 1352Example:: 1353 1354 #arch/x86/Makefile 1355 define archhelp 1356 echo '* bzImage - Compressed kernel image (arch/x86/boot/bzImage)' 1357 endif 1358 1359When make is executed without arguments, the first goal encountered 1360will be built. In the top level Makefile the first goal present 1361is all:. 1362 1363An architecture shall always, per default, build a bootable image. 1364In ``make help``, the default goal is highlighted with a ``*``. 1365 1366Add a new prerequisite to all: to select a default goal different 1367from vmlinux. 1368 1369Example:: 1370 1371 #arch/x86/Makefile 1372 all: bzImage 1373 1374When ``make`` is executed without arguments, bzImage will be built. 1375 1376Commands useful for building a boot image 1377----------------------------------------- 1378 1379Kbuild provides a few macros that are useful when building a 1380boot image. 1381 1382ld 1383 Link target. Often, LDFLAGS_$@ is used to set specific options to ld. 1384 1385 Example:: 1386 1387 #arch/x86/boot/Makefile 1388 LDFLAGS_bootsect := -Ttext 0x0 -s --oformat binary 1389 LDFLAGS_setup := -Ttext 0x0 -s --oformat binary -e begtext 1390 1391 targets += setup setup.o bootsect bootsect.o 1392 $(obj)/setup $(obj)/bootsect: %: %.o FORCE 1393 $(call if_changed,ld) 1394 1395 In this example, there are two possible targets, requiring different 1396 options to the linker. The linker options are specified using the 1397 LDFLAGS_$@ syntax - one for each potential target. 1398 1399 $(targets) are assigned all potential targets, by which kbuild knows 1400 the targets and will: 1401 1402 1) check for commandline changes 1403 2) delete target during make clean 1404 1405 The ``: %: %.o`` part of the prerequisite is a shorthand that 1406 frees us from listing the setup.o and bootsect.o files. 1407 1408 Note: 1409 It is a common mistake to forget the ``targets :=`` assignment, 1410 resulting in the target file being recompiled for no 1411 obvious reason. 1412 1413objcopy 1414 Copy binary. Uses OBJCOPYFLAGS usually specified in 1415 arch/$(SRCARCH)/Makefile. 1416 1417 OBJCOPYFLAGS_$@ may be used to set additional options. 1418 1419gzip 1420 Compress target. Use maximum compression to compress target. 1421 1422 Example:: 1423 1424 #arch/x86/boot/compressed/Makefile 1425 $(obj)/vmlinux.bin.gz: $(vmlinux.bin.all-y) FORCE 1426 $(call if_changed,gzip) 1427 1428dtc 1429 Create flattened device tree blob object suitable for linking 1430 into vmlinux. Device tree blobs linked into vmlinux are placed 1431 in an init section in the image. Platform code *must* copy the 1432 blob to non-init memory prior to calling unflatten_device_tree(). 1433 1434 To use this command, simply add ``*.dtb`` into obj-y or targets, or make 1435 some other target depend on ``%.dtb`` 1436 1437 A central rule exists to create ``$(obj)/%.dtb`` from ``$(src)/%.dts``; 1438 architecture Makefiles do no need to explicitly write out that rule. 1439 1440 Example:: 1441 1442 targets += $(dtb-y) 1443 DTC_FLAGS ?= -p 1024 1444 1445Preprocessing linker scripts 1446---------------------------- 1447 1448When the vmlinux image is built, the linker script 1449arch/$(SRCARCH)/kernel/vmlinux.lds is used. 1450 1451The script is a preprocessed variant of the file vmlinux.lds.S 1452located in the same directory. 1453 1454kbuild knows .lds files and includes a rule ``*lds.S`` -> ``*lds``. 1455 1456Example:: 1457 1458 #arch/x86/kernel/Makefile 1459 extra-y := vmlinux.lds 1460 1461The assignment to extra-y is used to tell kbuild to build the 1462target vmlinux.lds. 1463 1464The assignment to $(CPPFLAGS_vmlinux.lds) tells kbuild to use the 1465specified options when building the target vmlinux.lds. 1466 1467When building the ``*.lds`` target, kbuild uses the variables:: 1468 1469 KBUILD_CPPFLAGS : Set in top-level Makefile 1470 cppflags-y : May be set in the kbuild makefile 1471 CPPFLAGS_$(@F) : Target-specific flags. 1472 Note that the full filename is used in this 1473 assignment. 1474 1475The kbuild infrastructure for ``*lds`` files is used in several 1476architecture-specific files. 1477 1478Generic header files 1479-------------------- 1480 1481The directory include/asm-generic contains the header files 1482that may be shared between individual architectures. 1483 1484The recommended approach how to use a generic header file is 1485to list the file in the Kbuild file. 1486 1487See `generic-y`_ for further info on syntax etc. 1488 1489Post-link pass 1490-------------- 1491 1492If the file arch/xxx/Makefile.postlink exists, this makefile 1493will be invoked for post-link objects (vmlinux and modules.ko) 1494for architectures to run post-link passes on. Must also handle 1495the clean target. 1496 1497This pass runs after kallsyms generation. If the architecture 1498needs to modify symbol locations, rather than manipulate the 1499kallsyms, it may be easier to add another postlink target for 1500.tmp_vmlinux? targets to be called from link-vmlinux.sh. 1501 1502For example, powerpc uses this to check relocation sanity of 1503the linked vmlinux file. 1504 1505Kbuild syntax for exported headers 1506================================== 1507 1508The kernel includes a set of headers that is exported to userspace. 1509Many headers can be exported as-is but other headers require a 1510minimal pre-processing before they are ready for user-space. 1511 1512The pre-processing does: 1513 1514- drop kernel-specific annotations 1515- drop include of compiler.h 1516- drop all sections that are kernel internal (guarded by ``ifdef __KERNEL__``) 1517 1518All headers under include/uapi/, include/generated/uapi/, 1519arch/<arch>/include/uapi/ and arch/<arch>/include/generated/uapi/ 1520are exported. 1521 1522A Kbuild file may be defined under arch/<arch>/include/uapi/asm/ and 1523arch/<arch>/include/asm/ to list asm files coming from asm-generic. 1524 1525See subsequent chapter for the syntax of the Kbuild file. 1526 1527no-export-headers 1528----------------- 1529 1530no-export-headers is essentially used by include/uapi/linux/Kbuild to 1531avoid exporting specific headers (e.g. kvm.h) on architectures that do 1532not support it. It should be avoided as much as possible. 1533 1534generic-y 1535--------- 1536 1537If an architecture uses a verbatim copy of a header from 1538include/asm-generic then this is listed in the file 1539arch/$(SRCARCH)/include/asm/Kbuild like this: 1540 1541Example:: 1542 1543 #arch/x86/include/asm/Kbuild 1544 generic-y += termios.h 1545 generic-y += rtc.h 1546 1547During the prepare phase of the build a wrapper include 1548file is generated in the directory:: 1549 1550 arch/$(SRCARCH)/include/generated/asm 1551 1552When a header is exported where the architecture uses 1553the generic header a similar wrapper is generated as part 1554of the set of exported headers in the directory:: 1555 1556 usr/include/asm 1557 1558The generated wrapper will in both cases look like the following: 1559 1560Example: termios.h:: 1561 1562 #include <asm-generic/termios.h> 1563 1564generated-y 1565----------- 1566 1567If an architecture generates other header files alongside generic-y 1568wrappers, generated-y specifies them. 1569 1570This prevents them being treated as stale asm-generic wrappers and 1571removed. 1572 1573Example:: 1574 1575 #arch/x86/include/asm/Kbuild 1576 generated-y += syscalls_32.h 1577 1578mandatory-y 1579----------- 1580 1581mandatory-y is essentially used by include/(uapi/)asm-generic/Kbuild 1582to define the minimum set of ASM headers that all architectures must have. 1583 1584This works like optional generic-y. If a mandatory header is missing 1585in arch/$(SRCARCH)/include/(uapi/)/asm, Kbuild will automatically 1586generate a wrapper of the asm-generic one. 1587 1588Kbuild Variables 1589================ 1590 1591The top Makefile exports the following variables: 1592 1593VERSION, PATCHLEVEL, SUBLEVEL, EXTRAVERSION 1594 These variables define the current kernel version. A few arch 1595 Makefiles actually use these values directly; they should use 1596 $(KERNELRELEASE) instead. 1597 1598 $(VERSION), $(PATCHLEVEL), and $(SUBLEVEL) define the basic 1599 three-part version number, such as "2", "4", and "0". These three 1600 values are always numeric. 1601 1602 $(EXTRAVERSION) defines an even tinier sublevel for pre-patches 1603 or additional patches. It is usually some non-numeric string 1604 such as "-pre4", and is often blank. 1605 1606KERNELRELEASE 1607 $(KERNELRELEASE) is a single string such as "2.4.0-pre4", suitable 1608 for constructing installation directory names or showing in 1609 version strings. Some arch Makefiles use it for this purpose. 1610 1611ARCH 1612 This variable defines the target architecture, such as "i386", 1613 "arm", or "sparc". Some kbuild Makefiles test $(ARCH) to 1614 determine which files to compile. 1615 1616 By default, the top Makefile sets $(ARCH) to be the same as the 1617 host system architecture. For a cross build, a user may 1618 override the value of $(ARCH) on the command line:: 1619 1620 make ARCH=m68k ... 1621 1622SRCARCH 1623 This variable specifies the directory in arch/ to build. 1624 1625 ARCH and SRCARCH may not necessarily match. A couple of arch 1626 directories are biarch, that is, a single ``arch/*/`` directory supports 1627 both 32-bit and 64-bit. 1628 1629 For example, you can pass in ARCH=i386, ARCH=x86_64, or ARCH=x86. 1630 For all of them, SRCARCH=x86 because arch/x86/ supports both i386 and 1631 x86_64. 1632 1633INSTALL_PATH 1634 This variable defines a place for the arch Makefiles to install 1635 the resident kernel image and System.map file. 1636 Use this for architecture-specific install targets. 1637 1638INSTALL_MOD_PATH, MODLIB 1639 $(INSTALL_MOD_PATH) specifies a prefix to $(MODLIB) for module 1640 installation. This variable is not defined in the Makefile but 1641 may be passed in by the user if desired. 1642 1643 $(MODLIB) specifies the directory for module installation. 1644 The top Makefile defines $(MODLIB) to 1645 $(INSTALL_MOD_PATH)/lib/modules/$(KERNELRELEASE). The user may 1646 override this value on the command line if desired. 1647 1648INSTALL_MOD_STRIP 1649 If this variable is specified, it will cause modules to be stripped 1650 after they are installed. If INSTALL_MOD_STRIP is "1", then the 1651 default option --strip-debug will be used. Otherwise, the 1652 INSTALL_MOD_STRIP value will be used as the option(s) to the strip 1653 command. 1654 1655INSTALL_DTBS_PATH 1656 This variable specifies a prefix for relocations required by build 1657 roots. It defines a place for installing the device tree blobs. Like 1658 INSTALL_MOD_PATH, it isn't defined in the Makefile, but can be passed 1659 by the user if desired. Otherwise it defaults to the kernel install 1660 path. 1661 1662Makefile language 1663================= 1664 1665The kernel Makefiles are designed to be run with GNU Make. The Makefiles 1666use only the documented features of GNU Make, but they do use many 1667GNU extensions. 1668 1669GNU Make supports elementary list-processing functions. The kernel 1670Makefiles use a novel style of list building and manipulation with few 1671``if`` statements. 1672 1673GNU Make has two assignment operators, ``:=`` and ``=``. ``:=`` performs 1674immediate evaluation of the right-hand side and stores an actual string 1675into the left-hand side. ``=`` is like a formula definition; it stores the 1676right-hand side in an unevaluated form and then evaluates this form each 1677time the left-hand side is used. 1678 1679There are some cases where ``=`` is appropriate. Usually, though, ``:=`` 1680is the right choice. 1681 1682Credits 1683======= 1684 1685- Original version made by Michael Elizabeth Chastain, <mailto:mec@shout.net> 1686- Updates by Kai Germaschewski <kai@tp1.ruhr-uni-bochum.de> 1687- Updates by Sam Ravnborg <sam@ravnborg.org> 1688- Language QA by Jan Engelhardt <jengelh@gmx.de> 1689 1690TODO 1691==== 1692 1693- Generating offset header files. 1694- Add more variables to chapters 7 or 9? 1695