Greg Kroah-Hartman | b244131 | 2017-11-01 15:07:57 +0100 | [diff] [blame] | 1 | # SPDX-License-Identifier: GPL-2.0 |
Sam Ravnborg | f77bf01 | 2007-10-15 22:25:06 +0200 | [diff] [blame] | 2 | # Backward compatibility |
| 3 | asflags-y += $(EXTRA_AFLAGS) |
| 4 | ccflags-y += $(EXTRA_CFLAGS) |
| 5 | cppflags-y += $(EXTRA_CPPFLAGS) |
| 6 | ldflags-y += $(EXTRA_LDFLAGS) |
Masahiro Yamada | 59721d4 | 2020-04-28 01:03:57 +0900 | [diff] [blame] | 7 | ifneq ($(always),) |
| 8 | $(warning 'always' is deprecated. Please use 'always-y' instead) |
Masahiro Yamada | 5f2fb52 | 2020-02-02 01:49:24 +0900 | [diff] [blame] | 9 | always-y += $(always) |
Masahiro Yamada | 59721d4 | 2020-04-28 01:03:57 +0900 | [diff] [blame] | 10 | endif |
| 11 | ifneq ($(hostprogs-y),) |
| 12 | $(warning 'hostprogs-y' is deprecated. Please use 'hostprogs' instead) |
| 13 | hostprogs += $(hostprogs-y) |
| 14 | endif |
| 15 | ifneq ($(hostprogs-m),) |
| 16 | $(warning 'hostprogs-m' is deprecated. Please use 'hostprogs' instead) |
| 17 | hostprogs += $(hostprogs-m) |
| 18 | endif |
Sam Ravnborg | f77bf01 | 2007-10-15 22:25:06 +0200 | [diff] [blame] | 19 | |
Cao jin | 8fdc3fb | 2017-10-09 11:49:11 +0800 | [diff] [blame] | 20 | # flags that take effect in current and sub directories |
Masahiro Yamada | 4e13d47 | 2017-10-10 20:43:21 +0900 | [diff] [blame] | 21 | KBUILD_AFLAGS += $(subdir-asflags-y) |
| 22 | KBUILD_CFLAGS += $(subdir-ccflags-y) |
Sam Ravnborg | 720097d | 2009-04-19 11:04:26 +0200 | [diff] [blame] | 23 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 24 | # Figure out what we need to build from the various variables |
| 25 | # =========================================================================== |
| 26 | |
| 27 | # When an object is listed to be built compiled-in and modular, |
| 28 | # only build the compiled-in version |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 29 | obj-m := $(filter-out $(obj-y),$(obj-m)) |
| 30 | |
| 31 | # Libraries are always collected in one lib file. |
| 32 | # Filter out objects already built-in |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 33 | lib-y := $(filter-out $(obj-y), $(sort $(lib-y) $(lib-m))) |
| 34 | |
Masahiro Yamada | 0a8820e | 2020-06-01 14:56:55 +0900 | [diff] [blame] | 35 | # Subdirectories we need to descend into |
| 36 | subdir-ym := $(sort $(subdir-y) $(subdir-m) \ |
| 37 | $(patsubst %/,%, $(filter %/, $(obj-y) $(obj-m)))) |
| 38 | |
Masahiro Yamada | b2c8855 | 2020-06-01 14:57:00 +0900 | [diff] [blame] | 39 | # Handle objects in subdirs: |
| 40 | # - If we encounter foo/ in $(obj-y), replace it by foo/built-in.a and |
| 41 | # foo/modules.order |
| 42 | # - If we encounter foo/ in $(obj-m), replace it by foo/modules.order |
| 43 | # |
| 44 | # Generate modules.order to determine modorder. Unfortunately, we don't have |
| 45 | # information about ordering between -y and -m subdirs. Just put -y's first. |
| 46 | |
| 47 | ifdef need-modorder |
| 48 | obj-m := $(patsubst %/,%/modules.order, $(filter %/, $(obj-y)) $(obj-m)) |
| 49 | else |
| 50 | obj-m := $(filter-out %/, $(obj-m)) |
| 51 | endif |
| 52 | |
Masahiro Yamada | 56d5893 | 2019-12-19 01:04:28 +0900 | [diff] [blame] | 53 | ifdef need-builtin |
Nicholas Piggin | f49821e | 2018-02-11 00:25:04 +1000 | [diff] [blame] | 54 | obj-y := $(patsubst %/, %/built-in.a, $(obj-y)) |
Masahiro Yamada | 56d5893 | 2019-12-19 01:04:28 +0900 | [diff] [blame] | 55 | else |
| 56 | obj-y := $(filter-out %/, $(obj-y)) |
| 57 | endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 58 | |
Elliot Berman | e52f4d9 | 2021-01-22 11:27:17 -0800 | [diff] [blame] | 59 | # Expand $(foo-objs) $(foo-y) by calling $(call suffix-search,foo.o,-objs -y) |
| 60 | suffix-search = $(foreach s,$(2),$($(1:.o=$s))) |
Masahiro Yamada | 33e84f2 | 2019-08-06 15:39:19 +0900 | [diff] [blame] | 61 | # If $(foo-objs), $(foo-y), $(foo-m), or $(foo-) exists, foo.o is a composite object |
Elliot Berman | 21c713f | 2021-01-19 17:48:07 -0800 | [diff] [blame] | 62 | # Do this recursively to find nested composite objects. |
| 63 | # foo-y may contain foo.o bar.o . For backwards compatibility, don't treat this |
| 64 | # foo.o as a nested object |
| 65 | multi-search = $(sort $(foreach m,$(1),$(if $(strip $(call suffix-search,$(m),$(2) -)),\ |
| 66 | $(if $(filter $(m),$(strip $(call suffix-search,$(m),$(2) -))),,\ |
| 67 | $(m) $(call multi-search,$(call suffix-search,$(m),$(2)),$(2)))))) |
Elliot Berman | e52f4d9 | 2021-01-22 11:27:17 -0800 | [diff] [blame] | 68 | multi-used-y := $(call multi-search,$(obj-y),-objs -y) |
| 69 | multi-used-m := $(call multi-search,$(obj-m),-objs -y -m) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 70 | multi-used := $(multi-used-y) $(multi-used-m) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 71 | |
Masahiro Yamada | f98fe47 | 2018-03-19 20:26:08 +0900 | [diff] [blame] | 72 | # Replace multi-part objects by their individual parts, |
| 73 | # including built-in.a from subdirectories |
Elliot Berman | 21c713f | 2021-01-19 17:48:07 -0800 | [diff] [blame] | 74 | # Recursively search for real files. For backwards compatibility, |
| 75 | # foo-y may contain foo.o bar.o . foo.o in this context is a real object, and |
| 76 | # shouldn't be recursed into. |
| 77 | real-search = $(foreach m,$(1), $(if $(strip $(call suffix-search,$(m),$(2) -)), \ |
| 78 | $(filter $(m),$(call suffix-search,$(m),$(2))) $(call real-search,$(filter-out $(m),$(call suffix-search,$(m),$(2))),$(2)),\ |
| 79 | $(m))) |
Elliot Berman | e52f4d9 | 2021-01-22 11:27:17 -0800 | [diff] [blame] | 80 | real-obj-y := $(call real-search, $(obj-y),-objs -y) |
| 81 | real-obj-m := $(call real-search, $(obj-m),-objs -y -m) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 82 | |
Masahiro Yamada | 5f2fb52 | 2020-02-02 01:49:24 +0900 | [diff] [blame] | 83 | always-y += $(always-m) |
| 84 | |
Masahiro Yamada | faabed2 | 2020-08-01 21:27:18 +0900 | [diff] [blame] | 85 | # hostprogs-always-y += foo |
| 86 | # ... is a shorthand for |
| 87 | # hostprogs += foo |
| 88 | # always-y += foo |
| 89 | hostprogs += $(hostprogs-always-y) $(hostprogs-always-m) |
| 90 | always-y += $(hostprogs-always-y) $(hostprogs-always-m) |
| 91 | |
| 92 | # userprogs-always-y is likewise. |
| 93 | userprogs += $(userprogs-always-y) $(userprogs-always-m) |
| 94 | always-y += $(userprogs-always-y) $(userprogs-always-m) |
| 95 | |
Masahiro Yamada | 7e7962d | 2017-11-05 14:30:53 +0900 | [diff] [blame] | 96 | # DTB |
| 97 | # If CONFIG_OF_ALL_DTBS is enabled, all DT blobs are built |
| 98 | extra-y += $(dtb-y) |
| 99 | extra-$(CONFIG_OF_ALL_DTBS) += $(dtb-) |
| 100 | |
Rob Herring | 4f0e3a5 | 2018-09-06 13:26:07 -0500 | [diff] [blame] | 101 | ifneq ($(CHECK_DTBS),) |
| 102 | extra-y += $(patsubst %.dtb,%.dt.yaml, $(dtb-y)) |
| 103 | extra-$(CONFIG_OF_ALL_DTBS) += $(patsubst %.dtb,%.dt.yaml, $(dtb-)) |
| 104 | endif |
| 105 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 106 | # Add subdir path |
| 107 | |
| 108 | extra-y := $(addprefix $(obj)/,$(extra-y)) |
Masahiro Yamada | 5f2fb52 | 2020-02-02 01:49:24 +0900 | [diff] [blame] | 109 | always-y := $(addprefix $(obj)/,$(always-y)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 110 | targets := $(addprefix $(obj)/,$(targets)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 111 | obj-m := $(addprefix $(obj)/,$(obj-m)) |
| 112 | lib-y := $(addprefix $(obj)/,$(lib-y)) |
Masahiro Yamada | f5f3368 | 2018-03-19 20:26:07 +0900 | [diff] [blame] | 113 | real-obj-y := $(addprefix $(obj)/,$(real-obj-y)) |
| 114 | real-obj-m := $(addprefix $(obj)/,$(real-obj-m)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 115 | multi-used-m := $(addprefix $(obj)/,$(multi-used-m)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 116 | subdir-ym := $(addprefix $(obj)/,$(subdir-ym)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 117 | |
Masahiro Yamada | c0152e9 | 2018-03-19 18:01:27 +0900 | [diff] [blame] | 118 | # Finds the multi-part object the current object will be linked into. |
Masahiro Yamada | 1664a37 | 2019-12-19 17:33:28 +0900 | [diff] [blame] | 119 | # If the object belongs to two or more multi-part objects, list them all. |
| 120 | modname-multi = $(sort $(foreach m,$(multi-used),\ |
| 121 | $(if $(filter $*.o, $($(m:.o=-objs)) $($(m:.o=-y)) $($(m:.o=-m))),$(m:.o=)))) |
Masahiro Yamada | c0152e9 | 2018-03-19 18:01:27 +0900 | [diff] [blame] | 122 | |
Masahiro Yamada | 1664a37 | 2019-12-19 17:33:28 +0900 | [diff] [blame] | 123 | __modname = $(if $(modname-multi),$(modname-multi),$(basetarget)) |
| 124 | |
| 125 | modname = $(subst $(space),:,$(__modname)) |
| 126 | modfile = $(addprefix $(obj)/,$(__modname)) |
Masahiro Yamada | c0152e9 | 2018-03-19 18:01:27 +0900 | [diff] [blame] | 127 | |
Masahiro Yamada | 54b8ae6 | 2019-08-30 13:34:01 +0900 | [diff] [blame] | 128 | # target with $(obj)/ and its suffix stripped |
| 129 | target-stem = $(basename $(patsubst $(obj)/%,%,$@)) |
| 130 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 131 | # These flags are needed for modversions and compiling, so we define them here |
Cao jin | 8fdc3fb | 2017-10-09 11:49:11 +0800 | [diff] [blame] | 132 | # $(modname_flags) defines KBUILD_MODNAME as the name of the module it will |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 133 | # end up in (or would, if it gets compiled in) |
Sami Tolvanen | 110784e | 2017-12-08 15:49:24 -0800 | [diff] [blame] | 134 | name-fix-token = $(subst $(comma),_,$(subst -,_,$1)) |
| 135 | name-fix = $(call stringify,$(call name-fix-token,$1)) |
Michal Marek | b42841b | 2016-03-17 16:32:14 +0100 | [diff] [blame] | 136 | basename_flags = -DKBUILD_BASENAME=$(call name-fix,$(basetarget)) |
Sami Tolvanen | 110784e | 2017-12-08 15:49:24 -0800 | [diff] [blame] | 137 | modname_flags = -DKBUILD_MODNAME=$(call name-fix,$(modname)) \ |
| 138 | -D__KBUILD_MODNAME=kmod_$(call name-fix-token,$(modname)) |
Masahiro Yamada | 1664a37 | 2019-12-19 17:33:28 +0900 | [diff] [blame] | 139 | modfile_flags = -DKBUILD_MODFILE=$(call stringify,$(modfile)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 140 | |
Masahiro Yamada | 15d5761 | 2020-07-07 18:21:16 +0900 | [diff] [blame] | 141 | _c_flags = $(filter-out $(CFLAGS_REMOVE_$(target-stem).o), \ |
| 142 | $(filter-out $(ccflags-remove-y), \ |
| 143 | $(KBUILD_CPPFLAGS) $(KBUILD_CFLAGS) $(ccflags-y)) \ |
| 144 | $(CFLAGS_$(target-stem).o)) |
| 145 | _a_flags = $(filter-out $(AFLAGS_REMOVE_$(target-stem).o), \ |
| 146 | $(filter-out $(asflags-remove-y), \ |
| 147 | $(KBUILD_CPPFLAGS) $(KBUILD_AFLAGS) $(asflags-y)) \ |
| 148 | $(AFLAGS_$(target-stem).o)) |
Masahiro Yamada | 54b8ae6 | 2019-08-30 13:34:01 +0900 | [diff] [blame] | 149 | _cpp_flags = $(KBUILD_CPPFLAGS) $(cppflags-y) $(CPPFLAGS_$(target-stem).lds) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 150 | |
Peter Oberparleiter | 2521f2c | 2009-06-17 16:28:08 -0700 | [diff] [blame] | 151 | # |
| 152 | # Enable gcov profiling flags for a file, directory or for all files depending |
| 153 | # on variables GCOV_PROFILE_obj.o, GCOV_PROFILE and CONFIG_GCOV_PROFILE_ALL |
| 154 | # (in this order) |
| 155 | # |
| 156 | ifeq ($(CONFIG_GCOV_KERNEL),y) |
| 157 | _c_flags += $(if $(patsubst n%,, \ |
| 158 | $(GCOV_PROFILE_$(basetarget).o)$(GCOV_PROFILE)$(CONFIG_GCOV_PROFILE_ALL)), \ |
| 159 | $(CFLAGS_GCOV)) |
| 160 | endif |
| 161 | |
Andrey Ryabinin | 0b24bec | 2015-02-13 14:39:17 -0800 | [diff] [blame] | 162 | # |
| 163 | # Enable address sanitizer flags for kernel except some files or directories |
| 164 | # we don't want to check (depends on variables KASAN_SANITIZE_obj.o, KASAN_SANITIZE) |
| 165 | # |
| 166 | ifeq ($(CONFIG_KASAN),y) |
Andrey Konovalov | 67e914b | 2020-12-22 12:02:06 -0800 | [diff] [blame] | 167 | ifneq ($(CONFIG_KASAN_HW_TAGS),y) |
Andrey Ryabinin | 0b24bec | 2015-02-13 14:39:17 -0800 | [diff] [blame] | 168 | _c_flags += $(if $(patsubst n%,, \ |
| 169 | $(KASAN_SANITIZE_$(basetarget).o)$(KASAN_SANITIZE)y), \ |
Andrey Konovalov | 0e410e1 | 2018-02-06 15:36:00 -0800 | [diff] [blame] | 170 | $(CFLAGS_KASAN), $(CFLAGS_KASAN_NOSANITIZE)) |
Andrey Ryabinin | 0b24bec | 2015-02-13 14:39:17 -0800 | [diff] [blame] | 171 | endif |
Andrey Konovalov | 67e914b | 2020-12-22 12:02:06 -0800 | [diff] [blame] | 172 | endif |
Andrey Ryabinin | 0b24bec | 2015-02-13 14:39:17 -0800 | [diff] [blame] | 173 | |
Andrey Ryabinin | c6d3085 | 2016-01-20 15:00:55 -0800 | [diff] [blame] | 174 | ifeq ($(CONFIG_UBSAN),y) |
| 175 | _c_flags += $(if $(patsubst n%,, \ |
| 176 | $(UBSAN_SANITIZE_$(basetarget).o)$(UBSAN_SANITIZE)$(CONFIG_UBSAN_SANITIZE_ALL)), \ |
| 177 | $(CFLAGS_UBSAN)) |
| 178 | endif |
| 179 | |
Dmitry Vyukov | 5c9a875 | 2016-03-22 14:27:30 -0700 | [diff] [blame] | 180 | ifeq ($(CONFIG_KCOV),y) |
| 181 | _c_flags += $(if $(patsubst n%,, \ |
Vegard Nossum | a4691de | 2016-08-02 14:07:30 -0700 | [diff] [blame] | 182 | $(KCOV_INSTRUMENT_$(basetarget).o)$(KCOV_INSTRUMENT)$(CONFIG_KCOV_INSTRUMENT_ALL)), \ |
Dmitry Vyukov | 5c9a875 | 2016-03-22 14:27:30 -0700 | [diff] [blame] | 183 | $(CFLAGS_KCOV)) |
| 184 | endif |
| 185 | |
Marco Elver | dfd402a | 2019-11-14 19:02:54 +0100 | [diff] [blame] | 186 | # |
| 187 | # Enable KCSAN flags except some files or directories we don't want to check |
| 188 | # (depends on variables KCSAN_SANITIZE_obj.o, KCSAN_SANITIZE) |
| 189 | # |
| 190 | ifeq ($(CONFIG_KCSAN),y) |
| 191 | _c_flags += $(if $(patsubst n%,, \ |
| 192 | $(KCSAN_SANITIZE_$(basetarget).o)$(KCSAN_SANITIZE)y), \ |
| 193 | $(CFLAGS_KCSAN)) |
| 194 | endif |
| 195 | |
Masahiro Yamada | cdd750b | 2019-05-13 15:22:17 +0900 | [diff] [blame] | 196 | # $(srctree)/$(src) for including checkin headers from generated source files |
| 197 | # $(objtree)/$(obj) for including generated headers from checkin source files |
Masahiro Yamada | 58156ba | 2019-01-16 11:56:40 +0900 | [diff] [blame] | 198 | ifeq ($(KBUILD_EXTMOD),) |
Masahiro Yamada | 051f278 | 2019-07-06 12:07:12 +0900 | [diff] [blame] | 199 | ifdef building_out_of_srctree |
Masahiro Yamada | cdd750b | 2019-05-13 15:22:17 +0900 | [diff] [blame] | 200 | _c_flags += -I $(srctree)/$(src) -I $(objtree)/$(obj) |
| 201 | _a_flags += -I $(srctree)/$(src) -I $(objtree)/$(obj) |
| 202 | _cpp_flags += -I $(srctree)/$(src) -I $(objtree)/$(obj) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 203 | endif |
Masahiro Yamada | 58156ba | 2019-01-16 11:56:40 +0900 | [diff] [blame] | 204 | endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 205 | |
Masahiro Yamada | eb27ea5 | 2019-08-19 17:58:43 +0900 | [diff] [blame] | 206 | part-of-module = $(if $(filter $(basename $@).o, $(real-obj-m)),y) |
| 207 | quiet_modtag = $(if $(part-of-module),[M], ) |
| 208 | |
| 209 | modkern_cflags = \ |
| 210 | $(if $(part-of-module), \ |
| 211 | $(KBUILD_CFLAGS_MODULE) $(CFLAGS_MODULE), \ |
Masahiro Yamada | 1664a37 | 2019-12-19 17:33:28 +0900 | [diff] [blame] | 212 | $(KBUILD_CFLAGS_KERNEL) $(CFLAGS_KERNEL) $(modfile_flags)) |
Masahiro Yamada | eb27ea5 | 2019-08-19 17:58:43 +0900 | [diff] [blame] | 213 | |
| 214 | modkern_aflags = $(if $(part-of-module), \ |
| 215 | $(KBUILD_AFLAGS_MODULE) $(AFLAGS_MODULE), \ |
| 216 | $(KBUILD_AFLAGS_KERNEL) $(AFLAGS_KERNEL)) |
| 217 | |
Masahiro Yamada | 30a7729 | 2020-04-23 23:23:53 +0900 | [diff] [blame] | 218 | c_flags = -Wp,-MMD,$(depfile) $(NOSTDINC_FLAGS) $(LINUXINCLUDE) \ |
Masahiro Yamada | a95b37e | 2018-03-27 21:52:50 +0900 | [diff] [blame] | 219 | -include $(srctree)/include/linux/compiler_types.h \ |
Masahiro Yamada | cdd750b | 2019-05-13 15:22:17 +0900 | [diff] [blame] | 220 | $(_c_flags) $(modkern_cflags) \ |
Michal Marek | b42841b | 2016-03-17 16:32:14 +0100 | [diff] [blame] | 221 | $(basename_flags) $(modname_flags) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 222 | |
Masahiro Yamada | 30a7729 | 2020-04-23 23:23:53 +0900 | [diff] [blame] | 223 | a_flags = -Wp,-MMD,$(depfile) $(NOSTDINC_FLAGS) $(LINUXINCLUDE) \ |
Masahiro Yamada | cdd750b | 2019-05-13 15:22:17 +0900 | [diff] [blame] | 224 | $(_a_flags) $(modkern_aflags) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 225 | |
Masahiro Yamada | 30a7729 | 2020-04-23 23:23:53 +0900 | [diff] [blame] | 226 | cpp_flags = -Wp,-MMD,$(depfile) $(NOSTDINC_FLAGS) $(LINUXINCLUDE) \ |
Masahiro Yamada | cdd750b | 2019-05-13 15:22:17 +0900 | [diff] [blame] | 227 | $(_cpp_flags) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 228 | |
Masahiro Yamada | d503ac5 | 2018-08-24 08:20:39 +0900 | [diff] [blame] | 229 | ld_flags = $(KBUILD_LDFLAGS) $(ldflags-y) $(LDFLAGS_$(@F)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 230 | |
Masahiro Yamada | 50f9dda | 2017-07-25 11:23:36 +0900 | [diff] [blame] | 231 | DTC_INCLUDE := $(srctree)/scripts/dtc/include-prefixes |
| 232 | |
Masahiro Yamada | 30a7729 | 2020-04-23 23:23:53 +0900 | [diff] [blame] | 233 | dtc_cpp_flags = -Wp,-MMD,$(depfile).pre.tmp -nostdinc \ |
Masahiro Yamada | 50f9dda | 2017-07-25 11:23:36 +0900 | [diff] [blame] | 234 | $(addprefix -I,$(DTC_INCLUDE)) \ |
Stephen Warren | e570d7c | 2013-02-12 15:03:37 -0700 | [diff] [blame] | 235 | -undef -D__DTS__ |
| 236 | |
Sami Tolvanen | 6dd43b9 | 2020-04-13 16:10:13 -0700 | [diff] [blame] | 237 | # Objtool arguments are also needed for modfinal with LTO, so we define |
| 238 | # then here to avoid duplication. |
| 239 | objtool_args = \ |
| 240 | $(if $(CONFIG_UNWINDER_ORC),orc generate,check) \ |
| 241 | $(if $(part-of-module), --module,) \ |
| 242 | $(if $(CONFIG_FRAME_POINTER),, --no-fp) \ |
| 243 | $(if $(or $(CONFIG_GCOV_KERNEL),$(CONFIG_LTO_CLANG)), \ |
| 244 | --no-unreachable,) \ |
| 245 | $(if $(CONFIG_RETPOLINE), --retpoline,) \ |
| 246 | $(if $(CONFIG_X86_SMAP), --uaccess,) \ |
| 247 | $(if $(CONFIG_FTRACE_MCOUNT_USE_OBJTOOL), --mcount,) |
| 248 | |
Masahiro Yamada | c8589d1 | 2014-08-19 16:34:20 +0900 | [diff] [blame] | 249 | # Useful for describing the dependency of composite objects |
| 250 | # Usage: |
| 251 | # $(call multi_depend, multi_used_targets, suffix_to_remove, suffix_to_add) |
| 252 | define multi_depend |
| 253 | $(foreach m, $(notdir $1), \ |
| 254 | $(eval $(obj)/$m: \ |
| 255 | $(addprefix $(obj)/, $(foreach s, $3, $($(m:%$(strip $2)=%$(s))))))) |
| 256 | endef |
| 257 | |
Masahiro Yamada | dee9c0b | 2020-06-26 02:04:33 +0900 | [diff] [blame] | 258 | quiet_cmd_copy = COPY $@ |
| 259 | cmd_copy = cp $< $@ |
| 260 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 261 | # Shipped files |
| 262 | # =========================================================================== |
| 263 | |
| 264 | quiet_cmd_shipped = SHIPPED $@ |
| 265 | cmd_shipped = cat $< > $@ |
| 266 | |
Arnaud Lacombe | 991d76c | 2011-06-07 13:09:28 -0400 | [diff] [blame] | 267 | $(obj)/%: $(src)/%_shipped |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 268 | $(call cmd,shipped) |
| 269 | |
| 270 | # Commands useful for building a boot image |
| 271 | # =========================================================================== |
Masahiro Yamada | 38385f8 | 2014-04-28 16:26:18 +0900 | [diff] [blame] | 272 | # |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 273 | # Use as following: |
| 274 | # |
| 275 | # target: source(s) FORCE |
| 276 | # $(if_changed,ld/objcopy/gzip) |
| 277 | # |
Sam Ravnborg | 836caba | 2007-09-30 20:34:36 +0200 | [diff] [blame] | 278 | # and add target to extra-y so that we know we have to |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 279 | # read in the saved command line |
| 280 | |
| 281 | # Linking |
| 282 | # --------------------------------------------------------------------------- |
| 283 | |
| 284 | quiet_cmd_ld = LD $@ |
Masahiro Yamada | afa974b | 2019-01-17 19:02:43 +0900 | [diff] [blame] | 285 | cmd_ld = $(LD) $(ld_flags) $(real-prereqs) -o $@ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 286 | |
Masahiro Yamada | 898f5a0 | 2019-02-05 16:33:37 +0900 | [diff] [blame] | 287 | # Archive |
| 288 | # --------------------------------------------------------------------------- |
| 289 | |
| 290 | quiet_cmd_ar = AR $@ |
Masahiro Yamada | 13dc8c0 | 2019-09-21 15:49:54 +0900 | [diff] [blame] | 291 | cmd_ar = rm -f $@; $(AR) cDPrsT $@ $(real-prereqs) |
Masahiro Yamada | 898f5a0 | 2019-02-05 16:33:37 +0900 | [diff] [blame] | 292 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 293 | # Objcopy |
| 294 | # --------------------------------------------------------------------------- |
| 295 | |
| 296 | quiet_cmd_objcopy = OBJCOPY $@ |
| 297 | cmd_objcopy = $(OBJCOPY) $(OBJCOPYFLAGS) $(OBJCOPYFLAGS_$(@F)) $< $@ |
| 298 | |
| 299 | # Gzip |
| 300 | # --------------------------------------------------------------------------- |
| 301 | |
| 302 | quiet_cmd_gzip = GZIP $@ |
Denis Efremov | e4a42c8 | 2020-06-08 12:59:44 +0300 | [diff] [blame] | 303 | cmd_gzip = cat $(real-prereqs) | $(KGZIP) -n -f -9 > $@ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 304 | |
Dirk Brandewie | aab9433 | 2010-12-22 11:57:26 -0800 | [diff] [blame] | 305 | # DTC |
| 306 | # --------------------------------------------------------------------------- |
Elliot Berman | 47b5470 | 2020-08-04 10:51:56 -0700 | [diff] [blame] | 307 | ifeq ("$(origin DTC)", "command line") |
| 308 | PHONY += $(DTC) |
| 309 | dtc-option = $(call try-run, $(DTC) $1 -v,$1) |
| 310 | else |
| 311 | # Just add the flag. DTC is compiled later as a prerequisite, so there's no dtc |
| 312 | # to test the flag against. This is okay because we're not testing flags which |
| 313 | # aren't supported by in-kernel dtc to begin with. |
| 314 | dtc-option = $1 |
| 315 | endif |
| 316 | |
Rob Herring | 6b22b3d | 2016-02-11 16:28:13 -0600 | [diff] [blame] | 317 | DTC ?= $(objtree)/scripts/dtc/dtc |
Elliot Berman | 47b5470 | 2020-08-04 10:51:56 -0700 | [diff] [blame] | 318 | DTC_FLAGS += $(call dtc-option,-Wno-interrupt_provider) |
Dirk Brandewie | aab9433 | 2010-12-22 11:57:26 -0800 | [diff] [blame] | 319 | |
Rob Herring | bc55398 | 2016-03-24 10:52:42 -0500 | [diff] [blame] | 320 | # Disable noisy checks by default |
Masahiro Yamada | e27128d | 2019-09-01 01:25:55 +0900 | [diff] [blame] | 321 | ifeq ($(findstring 1,$(KBUILD_EXTRA_WARN)),) |
Elliot Berman | 47b5470 | 2020-08-04 10:51:56 -0700 | [diff] [blame] | 322 | DTC_FLAGS += $(call dtc-option,-Wno-unit_address_vs_reg) \ |
| 323 | $(call dtc-option,-Wno-unit_address_format) \ |
| 324 | $(call dtc-option,-Wno-avoid_unnecessary_addr_size) \ |
| 325 | $(call dtc-option,-Wno-alias_paths) \ |
| 326 | $(call dtc-option,-Wno-graph_child_address) \ |
| 327 | $(call dtc-option,-Wno-simple_bus_reg) \ |
| 328 | $(call dtc-option,-Wno-unique_unit_address) \ |
| 329 | $(call dtc-option,-Wno-pci_device_reg) |
Rob Herring | bc55398 | 2016-03-24 10:52:42 -0500 | [diff] [blame] | 330 | endif |
| 331 | |
Masahiro Yamada | e27128d | 2019-09-01 01:25:55 +0900 | [diff] [blame] | 332 | ifneq ($(findstring 2,$(KBUILD_EXTRA_WARN)),) |
Elliot Berman | 47b5470 | 2020-08-04 10:51:56 -0700 | [diff] [blame] | 333 | DTC_FLAGS += $(call dtc-option,-Wnode_name_chars_strict) \ |
| 334 | $(call dtc-option,-Wproperty_name_chars_strict) \ |
| 335 | $(call dtc-option,-Winterrupt_provider) |
Dirk Brandewie | aab9433 | 2010-12-22 11:57:26 -0800 | [diff] [blame] | 336 | endif |
| 337 | |
Frank Rowand | 331f741 | 2017-04-25 17:09:53 -0700 | [diff] [blame] | 338 | DTC_FLAGS += $(DTC_FLAGS_$(basetarget)) |
| 339 | |
Dirk Brandewie | aab9433 | 2010-12-22 11:57:26 -0800 | [diff] [blame] | 340 | # Generate an assembly file to wrap the output of the device tree compiler |
| 341 | quiet_cmd_dt_S_dtb= DTB $@ |
| 342 | cmd_dt_S_dtb= \ |
Masahiro Yamada | b79c6aa | 2019-01-17 19:02:44 +0900 | [diff] [blame] | 343 | { \ |
Dirk Brandewie | aab9433 | 2010-12-22 11:57:26 -0800 | [diff] [blame] | 344 | echo '\#include <asm-generic/vmlinux.lds.h>'; \ |
| 345 | echo '.section .dtb.init.rodata,"a"'; \ |
| 346 | echo '.balign STRUCT_ALIGNMENT'; \ |
James Hogan | 55fe6da | 2018-03-08 11:02:46 +0000 | [diff] [blame] | 347 | echo '.global __dtb_$(subst -,_,$(*F))_begin'; \ |
| 348 | echo '__dtb_$(subst -,_,$(*F))_begin:'; \ |
Dirk Brandewie | aab9433 | 2010-12-22 11:57:26 -0800 | [diff] [blame] | 349 | echo '.incbin "$<" '; \ |
James Hogan | 55fe6da | 2018-03-08 11:02:46 +0000 | [diff] [blame] | 350 | echo '__dtb_$(subst -,_,$(*F))_end:'; \ |
| 351 | echo '.global __dtb_$(subst -,_,$(*F))_end'; \ |
Dirk Brandewie | aab9433 | 2010-12-22 11:57:26 -0800 | [diff] [blame] | 352 | echo '.balign STRUCT_ALIGNMENT'; \ |
Masahiro Yamada | b79c6aa | 2019-01-17 19:02:44 +0900 | [diff] [blame] | 353 | } > $@ |
Dirk Brandewie | aab9433 | 2010-12-22 11:57:26 -0800 | [diff] [blame] | 354 | |
Masahiro Yamada | a7f9241 | 2018-03-23 22:04:34 +0900 | [diff] [blame] | 355 | $(obj)/%.dtb.S: $(obj)/%.dtb FORCE |
| 356 | $(call if_changed,dt_S_dtb) |
Dirk Brandewie | aab9433 | 2010-12-22 11:57:26 -0800 | [diff] [blame] | 357 | |
| 358 | quiet_cmd_dtc = DTC $@ |
Masahiro Yamada | dd7699e | 2020-06-23 17:05:49 +0900 | [diff] [blame] | 359 | cmd_dtc = $(HOSTCC) -E $(dtc_cpp_flags) -x assembler-with-cpp -o $(dtc-tmp) $< ; \ |
Masahiro Yamada | 78046fa | 2020-04-27 22:49:30 +0900 | [diff] [blame] | 360 | $(DTC) -O $(patsubst .%,%,$(suffix $@)) -o $@ -b 0 \ |
Masahiro Yamada | 50f9dda | 2017-07-25 11:23:36 +0900 | [diff] [blame] | 361 | $(addprefix -i,$(dir $<) $(DTC_INCLUDE)) $(DTC_FLAGS) \ |
Ian Campbell | b0a4d8b | 2013-05-31 11:14:20 +0100 | [diff] [blame] | 362 | -d $(depfile).dtc.tmp $(dtc-tmp) ; \ |
| 363 | cat $(depfile).pre.tmp $(depfile).dtc.tmp > $(depfile) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 364 | |
Rob Herring | b8fc5b2 | 2018-02-27 17:49:57 -0600 | [diff] [blame] | 365 | $(obj)/%.dtb: $(src)/%.dts $(DTC) FORCE |
Masahiro Yamada | 78046fa | 2020-04-27 22:49:30 +0900 | [diff] [blame] | 366 | $(call if_changed_dep,dtc) |
Rob Herring | 4f0e3a5 | 2018-09-06 13:26:07 -0500 | [diff] [blame] | 367 | |
| 368 | DT_CHECKER ?= dt-validate |
| 369 | DT_BINDING_DIR := Documentation/devicetree/bindings |
Rob Herring | 2ba06cd | 2020-02-28 18:37:30 -0600 | [diff] [blame] | 370 | # DT_TMP_SCHEMA may be overridden from Documentation/devicetree/bindings/Makefile |
Andrei Ziureaev | b8a4939 | 2020-08-13 14:26:11 +0100 | [diff] [blame] | 371 | DT_TMP_SCHEMA ?= $(objtree)/$(DT_BINDING_DIR)/processed-schema.json |
Rob Herring | 4f0e3a5 | 2018-09-06 13:26:07 -0500 | [diff] [blame] | 372 | |
| 373 | quiet_cmd_dtb_check = CHECK $@ |
Masahiro Yamada | fd63fab | 2020-02-23 04:04:32 +0900 | [diff] [blame] | 374 | cmd_dtb_check = $(DT_CHECKER) -u $(srctree)/$(DT_BINDING_DIR) -p $(DT_TMP_SCHEMA) $@ |
Rob Herring | 4f0e3a5 | 2018-09-06 13:26:07 -0500 | [diff] [blame] | 375 | |
Masahiro Yamada | 7a04960 | 2020-02-23 04:04:31 +0900 | [diff] [blame] | 376 | define rule_dtc |
Masahiro Yamada | 78046fa | 2020-04-27 22:49:30 +0900 | [diff] [blame] | 377 | $(call cmd_and_fixdep,dtc) |
Masahiro Yamada | f568866 | 2018-12-31 13:09:00 +0900 | [diff] [blame] | 378 | $(call cmd,dtb_check) |
Rob Herring | 4f0e3a5 | 2018-09-06 13:26:07 -0500 | [diff] [blame] | 379 | endef |
| 380 | |
| 381 | $(obj)/%.dt.yaml: $(src)/%.dts $(DTC) $(DT_TMP_SCHEMA) FORCE |
Masahiro Yamada | 3d4b223 | 2020-04-21 12:35:28 +0900 | [diff] [blame] | 382 | $(call if_changed_rule,dtc,yaml) |
Stephen Warren | 90b335f | 2012-11-27 16:29:10 -0700 | [diff] [blame] | 383 | |
Ian Campbell | b0a4d8b | 2013-05-31 11:14:20 +0100 | [diff] [blame] | 384 | dtc-tmp = $(subst $(comma),_,$(dot-target).dts.tmp) |
Stephen Warren | 22435f3 | 2013-02-05 12:06:28 -0700 | [diff] [blame] | 385 | |
Alain Knaff | bc22c17 | 2009-01-04 22:46:16 +0100 | [diff] [blame] | 386 | # Bzip2 |
| 387 | # --------------------------------------------------------------------------- |
| 388 | |
H. Peter Anvin | d3dd3b5 | 2009-05-05 21:17:15 -0700 | [diff] [blame] | 389 | # Bzip2 and LZMA do not include size in file... so we have to fake that; |
| 390 | # append the size as a 32-bit littleendian number as gzip does. |
Michael Tokarev | 4a2ff67 | 2009-10-13 22:22:46 +0200 | [diff] [blame] | 391 | size_append = printf $(shell \ |
H. Peter Anvin | d3dd3b5 | 2009-05-05 21:17:15 -0700 | [diff] [blame] | 392 | dec_size=0; \ |
Masahiro Yamada | afa974b | 2019-01-17 19:02:43 +0900 | [diff] [blame] | 393 | for F in $(real-prereqs); do \ |
Michael Forney | a670b0b | 2018-03-18 17:54:02 -0700 | [diff] [blame] | 394 | fsize=$$($(CONFIG_SHELL) $(srctree)/scripts/file-size.sh $$F); \ |
H. Peter Anvin | d3dd3b5 | 2009-05-05 21:17:15 -0700 | [diff] [blame] | 395 | dec_size=$$(expr $$dec_size + $$fsize); \ |
| 396 | done; \ |
Jonathan Nieder | 1373411 | 2009-12-28 19:38:27 +0000 | [diff] [blame] | 397 | printf "%08x\n" $$dec_size | \ |
| 398 | sed 's/\(..\)/\1 /g' | { \ |
| 399 | read ch0 ch1 ch2 ch3; \ |
| 400 | for ch in $$ch3 $$ch2 $$ch1 $$ch0; do \ |
| 401 | printf '%s%03o' '\\' $$((0x$$ch)); \ |
| 402 | done; \ |
| 403 | } \ |
H. Peter Anvin | d3dd3b5 | 2009-05-05 21:17:15 -0700 | [diff] [blame] | 404 | ) |
Alain Knaff | bc22c17 | 2009-01-04 22:46:16 +0100 | [diff] [blame] | 405 | |
H. Peter Anvin | d3dd3b5 | 2009-05-05 21:17:15 -0700 | [diff] [blame] | 406 | quiet_cmd_bzip2 = BZIP2 $@ |
Denis Efremov | e4a42c8 | 2020-06-08 12:59:44 +0300 | [diff] [blame] | 407 | cmd_bzip2 = { cat $(real-prereqs) | $(KBZIP2) -9; $(size_append); } > $@ |
Alain Knaff | bc22c17 | 2009-01-04 22:46:16 +0100 | [diff] [blame] | 408 | |
| 409 | # Lzma |
| 410 | # --------------------------------------------------------------------------- |
| 411 | |
| 412 | quiet_cmd_lzma = LZMA $@ |
Denis Efremov | 8dfb61d | 2020-06-05 10:39:55 +0300 | [diff] [blame] | 413 | cmd_lzma = { cat $(real-prereqs) | $(LZMA) -9; $(size_append); } > $@ |
Albin Tonnerre | 7dd65fe | 2010-01-08 14:42:42 -0800 | [diff] [blame] | 414 | |
Wu Zhangjin | 2d74b2c | 2010-03-11 17:42:14 +0800 | [diff] [blame] | 415 | quiet_cmd_lzo = LZO $@ |
Denis Efremov | e4a42c8 | 2020-06-08 12:59:44 +0300 | [diff] [blame] | 416 | cmd_lzo = { cat $(real-prereqs) | $(KLZOP) -9; $(size_append); } > $@ |
Borislav Petkov | d61931d | 2010-03-05 17:34:46 +0100 | [diff] [blame] | 417 | |
Kyungsik Lee | e76e1fd | 2013-07-08 16:01:46 -0700 | [diff] [blame] | 418 | quiet_cmd_lz4 = LZ4 $@ |
Alistair Delva | 76a0d39 | 2020-06-17 21:55:14 -0700 | [diff] [blame] | 419 | cmd_lz4 = { cat $(real-prereqs) | \ |
Alistair Delva | bd42f56 | 2020-07-01 12:12:04 -0700 | [diff] [blame] | 420 | $(LZ4) -l -12 --favor-decSpeed stdin stdout; \ |
Masahiro Yamada | b79c6aa | 2019-01-17 19:02:44 +0900 | [diff] [blame] | 421 | $(size_append); } > $@ |
Kyungsik Lee | e76e1fd | 2013-07-08 16:01:46 -0700 | [diff] [blame] | 422 | |
Stephen Warren | e339364 | 2012-03-16 15:03:55 -0600 | [diff] [blame] | 423 | # U-Boot mkimage |
| 424 | # --------------------------------------------------------------------------- |
| 425 | |
| 426 | MKIMAGE := $(srctree)/scripts/mkuboot.sh |
| 427 | |
| 428 | # SRCARCH just happens to match slightly more than ARCH (on sparc), so reduces |
| 429 | # the number of overrides in arch makefiles |
| 430 | UIMAGE_ARCH ?= $(SRCARCH) |
| 431 | UIMAGE_COMPRESSION ?= $(if $(2),$(2),none) |
| 432 | UIMAGE_OPTS-y ?= |
| 433 | UIMAGE_TYPE ?= kernel |
| 434 | UIMAGE_LOADADDR ?= arch_must_set_this |
| 435 | UIMAGE_ENTRYADDR ?= $(UIMAGE_LOADADDR) |
| 436 | UIMAGE_NAME ?= 'Linux-$(KERNELRELEASE)' |
Stephen Warren | e339364 | 2012-03-16 15:03:55 -0600 | [diff] [blame] | 437 | |
Masahiro Yamada | 786ac51 | 2018-12-31 10:05:01 +0900 | [diff] [blame] | 438 | quiet_cmd_uimage = UIMAGE $@ |
Masahiro Yamada | 858805b | 2019-08-25 22:28:37 +0900 | [diff] [blame] | 439 | cmd_uimage = $(BASH) $(MKIMAGE) -A $(UIMAGE_ARCH) -O linux \ |
Stephen Warren | e339364 | 2012-03-16 15:03:55 -0600 | [diff] [blame] | 440 | -C $(UIMAGE_COMPRESSION) $(UIMAGE_OPTS-y) \ |
| 441 | -T $(UIMAGE_TYPE) \ |
| 442 | -a $(UIMAGE_LOADADDR) -e $(UIMAGE_ENTRYADDR) \ |
Masahiro Yamada | 786ac51 | 2018-12-31 10:05:01 +0900 | [diff] [blame] | 443 | -n $(UIMAGE_NAME) -d $< $@ |
Stephen Warren | e339364 | 2012-03-16 15:03:55 -0600 | [diff] [blame] | 444 | |
Lasse Collin | 24fa040 | 2011-01-12 17:01:22 -0800 | [diff] [blame] | 445 | # XZ |
| 446 | # --------------------------------------------------------------------------- |
| 447 | # Use xzkern to compress the kernel image and xzmisc to compress other things. |
| 448 | # |
| 449 | # xzkern uses a big LZMA2 dictionary since it doesn't increase memory usage |
| 450 | # of the kernel decompressor. A BCJ filter is used if it is available for |
| 451 | # the target architecture. xzkern also appends uncompressed size of the data |
| 452 | # using size_append. The .xz format has the size information available at |
| 453 | # the end of the file too, but it's in more complex format and it's good to |
| 454 | # avoid changing the part of the boot code that reads the uncompressed size. |
| 455 | # Note that the bytes added by size_append will make the xz tool think that |
| 456 | # the file is corrupt. This is expected. |
| 457 | # |
| 458 | # xzmisc doesn't use size_append, so it can be used to create normal .xz |
| 459 | # files. xzmisc uses smaller LZMA2 dictionary than xzkern, because a very |
| 460 | # big dictionary would increase the memory usage too much in the multi-call |
| 461 | # decompression mode. A BCJ filter isn't used either. |
| 462 | quiet_cmd_xzkern = XZKERN $@ |
Harald Seiler | b956c7a | 2019-07-09 12:50:50 +0200 | [diff] [blame] | 463 | cmd_xzkern = { cat $(real-prereqs) | sh $(srctree)/scripts/xz_wrap.sh; \ |
Masahiro Yamada | b79c6aa | 2019-01-17 19:02:44 +0900 | [diff] [blame] | 464 | $(size_append); } > $@ |
Lasse Collin | 24fa040 | 2011-01-12 17:01:22 -0800 | [diff] [blame] | 465 | |
| 466 | quiet_cmd_xzmisc = XZMISC $@ |
Denis Efremov | 8dfb61d | 2020-06-05 10:39:55 +0300 | [diff] [blame] | 467 | cmd_xzmisc = cat $(real-prereqs) | $(XZ) --check=crc32 --lzma2=dict=1MiB > $@ |
Matthias Kaehlcke | ebf003f | 2017-04-12 12:43:52 -0700 | [diff] [blame] | 468 | |
Nick Terrell | 48f7ddf | 2020-07-30 12:08:36 -0700 | [diff] [blame] | 469 | # ZSTD |
| 470 | # --------------------------------------------------------------------------- |
| 471 | # Appends the uncompressed size of the data using size_append. The .zst |
| 472 | # format has the size information available at the beginning of the file too, |
| 473 | # but it's in a more complex format and it's good to avoid changing the part |
| 474 | # of the boot code that reads the uncompressed size. |
| 475 | # |
| 476 | # Note that the bytes added by size_append will make the zstd tool think that |
| 477 | # the file is corrupt. This is expected. |
| 478 | # |
| 479 | # zstd uses a maximum window size of 8 MB. zstd22 uses a maximum window size of |
| 480 | # 128 MB. zstd22 is used for kernel compression because it is decompressed in a |
| 481 | # single pass, so zstd doesn't need to allocate a window buffer. When streaming |
| 482 | # decompression is used, like initramfs decompression, zstd22 should likely not |
| 483 | # be used because it would require zstd to allocate a 128 MB buffer. |
| 484 | |
| 485 | quiet_cmd_zstd = ZSTD $@ |
| 486 | cmd_zstd = { cat $(real-prereqs) | $(ZSTD) -19; $(size_append); } > $@ |
| 487 | |
| 488 | quiet_cmd_zstd22 = ZSTD22 $@ |
| 489 | cmd_zstd22 = { cat $(real-prereqs) | $(ZSTD) -22 --ultra; $(size_append); } > $@ |
| 490 | |
Matthias Kaehlcke | ebf003f | 2017-04-12 12:43:52 -0700 | [diff] [blame] | 491 | # ASM offsets |
| 492 | # --------------------------------------------------------------------------- |
| 493 | |
| 494 | # Default sed regexp - multiline due to syntax constraints |
Jeroen Hofstee | cf0c3e6 | 2017-04-21 15:21:11 +0900 | [diff] [blame] | 495 | # |
| 496 | # Use [:space:] because LLVM's integrated assembler inserts <tab> around |
| 497 | # the .ascii directive whereas GCC keeps the <space> as-is. |
Matthias Kaehlcke | ebf003f | 2017-04-12 12:43:52 -0700 | [diff] [blame] | 498 | define sed-offsets |
Jeroen Hofstee | cf0c3e6 | 2017-04-21 15:21:11 +0900 | [diff] [blame] | 499 | 's:^[[:space:]]*\.ascii[[:space:]]*"\(.*\)".*:\1:; \ |
| 500 | /^->/{s:->#\(.*\):/* \1 */:; \ |
Matthias Kaehlcke | ebf003f | 2017-04-12 12:43:52 -0700 | [diff] [blame] | 501 | s:^->\([^ ]*\) [\$$#]*\([^ ]*\) \(.*\):#define \1 \2 /* \3 */:; \ |
Jeroen Hofstee | cf0c3e6 | 2017-04-21 15:21:11 +0900 | [diff] [blame] | 502 | s:->::; p;}' |
Matthias Kaehlcke | ebf003f | 2017-04-12 12:43:52 -0700 | [diff] [blame] | 503 | endef |
| 504 | |
| 505 | # Use filechk to avoid rebuilds when a header changes, but the resulting file |
| 506 | # does not |
| 507 | define filechk_offsets |
Matthias Kaehlcke | ebf003f | 2017-04-12 12:43:52 -0700 | [diff] [blame] | 508 | echo "#ifndef $2"; \ |
| 509 | echo "#define $2"; \ |
| 510 | echo "/*"; \ |
| 511 | echo " * DO NOT MODIFY."; \ |
| 512 | echo " *"; \ |
| 513 | echo " * This file was generated by Kbuild"; \ |
| 514 | echo " */"; \ |
| 515 | echo ""; \ |
Masahiro Yamada | 43fee2b | 2018-07-25 14:16:11 +0900 | [diff] [blame] | 516 | sed -ne $(sed-offsets) < $<; \ |
Matthias Kaehlcke | ebf003f | 2017-04-12 12:43:52 -0700 | [diff] [blame] | 517 | echo ""; \ |
Masahiro Yamada | ad77408 | 2018-12-31 17:24:09 +0900 | [diff] [blame] | 518 | echo "#endif" |
Matthias Kaehlcke | ebf003f | 2017-04-12 12:43:52 -0700 | [diff] [blame] | 519 | endef |