]> git.kernelconcepts.de Git - karo-tx-linux.git/blob - kernel/Makefile
575329777d9e2b26bec01ce7287527140bbc2d3e
[karo-tx-linux.git] / kernel / Makefile
1 #
2 # Makefile for the linux kernel.
3 #
4
5 obj-y     = fork.o exec_domain.o panic.o \
6             cpu.o exit.o softirq.o resource.o \
7             sysctl.o sysctl_binary.o capability.o ptrace.o user.o \
8             signal.o sys.o kmod.o workqueue.o pid.o task_work.o \
9             extable.o params.o \
10             kthread.o sys_ni.o nsproxy.o \
11             notifier.o ksysfs.o cred.o reboot.o \
12             async.o range.o smpboot.o
13
14 obj-$(CONFIG_MULTIUSER) += groups.o
15
16 ifdef CONFIG_FUNCTION_TRACER
17 # Do not trace debug files and internal ftrace files
18 CFLAGS_REMOVE_cgroup-debug.o = $(CC_FLAGS_FTRACE)
19 CFLAGS_REMOVE_irq_work.o = $(CC_FLAGS_FTRACE)
20 endif
21
22 # cond_syscall is currently not LTO compatible
23 CFLAGS_sys_ni.o = $(DISABLE_LTO)
24
25 obj-y += sched/
26 obj-y += locking/
27 obj-y += power/
28 obj-y += printk/
29 obj-y += irq/
30 obj-y += rcu/
31 obj-y += livepatch/
32
33 obj-$(CONFIG_CHECKPOINT_RESTORE) += kcmp.o
34 obj-$(CONFIG_FREEZER) += freezer.o
35 obj-$(CONFIG_PROFILING) += profile.o
36 obj-$(CONFIG_STACKTRACE) += stacktrace.o
37 obj-y += time/
38 obj-$(CONFIG_FUTEX) += futex.o
39 ifeq ($(CONFIG_COMPAT),y)
40 obj-$(CONFIG_FUTEX) += futex_compat.o
41 endif
42 obj-$(CONFIG_GENERIC_ISA_DMA) += dma.o
43 obj-$(CONFIG_SMP) += smp.o
44 ifneq ($(CONFIG_SMP),y)
45 obj-y += up.o
46 endif
47 obj-$(CONFIG_UID16) += uid16.o
48 obj-$(CONFIG_SYSTEM_TRUSTED_KEYRING) += system_keyring.o system_certificates.o
49 obj-$(CONFIG_MODULES) += module.o
50 obj-$(CONFIG_MODULE_SIG) += module_signing.o
51 obj-$(CONFIG_KALLSYMS) += kallsyms.o
52 obj-$(CONFIG_BSD_PROCESS_ACCT) += acct.o
53 obj-$(CONFIG_KEXEC) += kexec.o
54 obj-$(CONFIG_BACKTRACE_SELF_TEST) += backtracetest.o
55 obj-$(CONFIG_COMPAT) += compat.o
56 obj-$(CONFIG_CGROUPS) += cgroup.o
57 obj-$(CONFIG_CGROUP_FREEZER) += cgroup_freezer.o
58 obj-$(CONFIG_CPUSETS) += cpuset.o
59 obj-$(CONFIG_UTS_NS) += utsname.o
60 obj-$(CONFIG_USER_NS) += user_namespace.o
61 obj-$(CONFIG_PID_NS) += pid_namespace.o
62 obj-$(CONFIG_IKCONFIG) += configs.o
63 obj-$(CONFIG_SMP) += stop_machine.o
64 obj-$(CONFIG_KPROBES_SANITY_TEST) += test_kprobes.o
65 obj-$(CONFIG_AUDIT) += audit.o auditfilter.o
66 obj-$(CONFIG_AUDITSYSCALL) += auditsc.o
67 obj-$(CONFIG_AUDIT_WATCH) += audit_watch.o
68 obj-$(CONFIG_AUDIT_TREE) += audit_tree.o
69 obj-$(CONFIG_GCOV_KERNEL) += gcov/
70 obj-$(CONFIG_KPROBES) += kprobes.o
71 obj-$(CONFIG_KGDB) += debug/
72 obj-$(CONFIG_DETECT_HUNG_TASK) += hung_task.o
73 obj-$(CONFIG_LOCKUP_DETECTOR) += watchdog.o
74 obj-$(CONFIG_SECCOMP) += seccomp.o
75 obj-$(CONFIG_RELAY) += relay.o
76 obj-$(CONFIG_SYSCTL) += utsname_sysctl.o
77 obj-$(CONFIG_TASK_DELAY_ACCT) += delayacct.o
78 obj-$(CONFIG_TASKSTATS) += taskstats.o tsacct.o
79 obj-$(CONFIG_TRACEPOINTS) += tracepoint.o
80 obj-$(CONFIG_LATENCYTOP) += latencytop.o
81 obj-$(CONFIG_BINFMT_ELF) += elfcore.o
82 obj-$(CONFIG_COMPAT_BINFMT_ELF) += elfcore.o
83 obj-$(CONFIG_BINFMT_ELF_FDPIC) += elfcore.o
84 obj-$(CONFIG_FUNCTION_TRACER) += trace/
85 obj-$(CONFIG_TRACING) += trace/
86 obj-$(CONFIG_TRACE_CLOCK) += trace/
87 obj-$(CONFIG_RING_BUFFER) += trace/
88 obj-$(CONFIG_TRACEPOINTS) += trace/
89 obj-$(CONFIG_IRQ_WORK) += irq_work.o
90 obj-$(CONFIG_CPU_PM) += cpu_pm.o
91 obj-$(CONFIG_BPF) += bpf/
92
93 obj-$(CONFIG_PERF_EVENTS) += events/
94
95 obj-$(CONFIG_USER_RETURN_NOTIFIER) += user-return-notifier.o
96 obj-$(CONFIG_PADATA) += padata.o
97 obj-$(CONFIG_CRASH_DUMP) += crash_dump.o
98 obj-$(CONFIG_JUMP_LABEL) += jump_label.o
99 obj-$(CONFIG_CONTEXT_TRACKING) += context_tracking.o
100 obj-$(CONFIG_TORTURE_TEST) += torture.o
101
102 $(obj)/configs.o: $(obj)/config_data.h
103
104 # config_data.h contains the same information as ikconfig.h but gzipped.
105 # Info from config_data can be extracted from /proc/config*
106 targets += config_data.gz
107 $(obj)/config_data.gz: $(KCONFIG_CONFIG) FORCE
108         $(call if_changed,gzip)
109
110       filechk_ikconfiggz = (echo "static const char kernel_config_data[] __used = MAGIC_START"; cat $< | scripts/basic/bin2c; echo "MAGIC_END;")
111 targets += config_data.h
112 $(obj)/config_data.h: $(obj)/config_data.gz FORCE
113         $(call filechk,ikconfiggz)
114
115 ###############################################################################
116 #
117 # When a Kconfig string contains a filename, it is suitable for
118 # passing to shell commands. It is surrounded by double-quotes, and
119 # any double-quotes or backslashes within it are escaped by
120 # backslashes.
121 #
122 # This is no use for dependencies or $(wildcard). We need to strip the
123 # surrounding quotes and the escaping from quotes and backslashes, and
124 # we *do* need to escape any spaces in the string. So, for example:
125 #
126 # Usage: $(eval $(call config_filename,FOO))
127 #
128 # Defines FOO_FILENAME based on the contents of the CONFIG_FOO option,
129 # transformed as described above to be suitable for use within the
130 # makefile.
131 #
132 # Also, if the filename is a relative filename and exists in the source
133 # tree but not the build tree, define FOO_SRCPREFIX as $(srctree)/ to
134 # be prefixed to *both* command invocation and dependencies.
135 #
136 # Note: We also print the filenames in the quiet_cmd_foo text, and
137 # perhaps ought to have a version specially escaped for that purpose.
138 # But it's only cosmetic, and $(patsubst "%",%,$(CONFIG_FOO)) is good
139 # enough.  It'll strip the quotes in the common case where there's no
140 # space and it's a simple filename, and it'll retain the quotes when
141 # there's a space. There are some esoteric cases in which it'll print
142 # the wrong thing, but we don't really care. The actual dependencies
143 # and commands *do* get it right, with various combinations of single
144 # and double quotes, backslashes and spaces in the filenames.
145 #
146 ###############################################################################
147 #
148 quote := $(firstword " ")
149 space :=
150 space +=
151 space_escape := %%%SPACE%%%
152 #
153 define config_filename
154 ifneq ($$(CONFIG_$(1)),"")
155 $(1)_FILENAME := $$(subst \\,\,$$(subst \$$(quote),$$(quote),$$(subst $$(space_escape),\$$(space),$$(patsubst "%",%,$$(subst $$(space),$$(space_escape),$$(CONFIG_$(1)))))))
156 ifneq ($$(patsubst /%,%,$$(firstword $$($(1)_FILENAME))),$$(firstword $$($(1)_FILENAME)))
157 else
158 ifeq ($$(wildcard $$($(1)_FILENAME)),)
159 ifneq ($$(wildcard $$(srctree)/$$($(1)_FILENAME)),)
160 $(1)_SRCPREFIX := $(srctree)/
161 endif
162 endif
163 endif
164 endif
165 endef
166 #
167 ###############################################################################
168
169
170 ifeq ($(CONFIG_SYSTEM_TRUSTED_KEYRING),y)
171
172 $(eval $(call config_filename,SYSTEM_TRUSTED_KEYS))
173
174 SIGNING_X509-$(CONFIG_MODULE_SIG) += signing_key.x509
175
176 kernel/system_certificates.o: $(obj)/x509_certificate_list
177
178 quiet_cmd_x509certs  = CERTS   $(SIGNING_X509-y) $(patsubst "%",%,$(2))
179       cmd_x509certs  = ( cat $(SIGNING_X509-y) /dev/null; \
180                          awk '/-----BEGIN CERTIFICATE-----/{flag=1;next}/-----END CERTIFICATE-----/{flag=0}flag' $(2) /dev/null | base64 -d ) > $@ || ( rm $@; exit 1)
181
182 targets += $(obj)/x509_certificate_list
183 $(obj)/x509_certificate_list: $(SIGNING_X509-y) include/config/system/trusted/keys.h $(wildcard include/config/module/sig.h) $(SYSTEM_TRUSTED_KEYS_SRCPREFIX)$(SYSTEM_TRUSTED_KEYS_FILENAME)
184         $(call if_changed,x509certs,$(SYSTEM_TRUSTED_KEYS_SRCPREFIX)$(CONFIG_SYSTEM_TRUSTED_KEYS))
185
186 endif
187
188 clean-files := x509_certificate_list .x509.list
189
190 ifeq ($(CONFIG_MODULE_SIG),y)
191 ###############################################################################
192 #
193 # If module signing is requested, say by allyesconfig, but a key has not been
194 # supplied, then one will need to be generated to make sure the build does not
195 # fail and that the kernel may be used afterwards.
196 #
197 ###############################################################################
198 ifndef CONFIG_MODULE_SIG_HASH
199 $(error Could not determine digest type to use from kernel config)
200 endif
201
202 # We do it this way rather than having a boolean option for enabling an
203 # external private key, because 'make randconfig' might enable such a
204 # boolean option and we unfortunately can't make it depend on !RANDCONFIG.
205 ifeq ($(CONFIG_MODULE_SIG_KEY),"signing_key.pem")
206 signing_key.pem: x509.genkey
207         @echo "###"
208         @echo "### Now generating an X.509 key pair to be used for signing modules."
209         @echo "###"
210         @echo "### If this takes a long time, you might wish to run rngd in the"
211         @echo "### background to keep the supply of entropy topped up.  It"
212         @echo "### needs to be run as root, and uses a hardware random"
213         @echo "### number generator if one is available."
214         @echo "###"
215         openssl req -new -nodes -utf8 -$(CONFIG_MODULE_SIG_HASH) -days 36500 \
216                 -batch -x509 -config x509.genkey \
217                 -outform PEM -out signing_key.pem \
218                 -keyout signing_key.pem 2>&1
219         @echo "###"
220         @echo "### Key pair generated."
221         @echo "###"
222
223 x509.genkey:
224         @echo Generating X.509 key generation config
225         @echo  >x509.genkey "[ req ]"
226         @echo >>x509.genkey "default_bits = 4096"
227         @echo >>x509.genkey "distinguished_name = req_distinguished_name"
228         @echo >>x509.genkey "prompt = no"
229         @echo >>x509.genkey "string_mask = utf8only"
230         @echo >>x509.genkey "x509_extensions = myexts"
231         @echo >>x509.genkey
232         @echo >>x509.genkey "[ req_distinguished_name ]"
233         @echo >>x509.genkey "#O = Unspecified company"
234         @echo >>x509.genkey "CN = Build time autogenerated kernel key"
235         @echo >>x509.genkey "#emailAddress = unspecified.user@unspecified.company"
236         @echo >>x509.genkey
237         @echo >>x509.genkey "[ myexts ]"
238         @echo >>x509.genkey "basicConstraints=critical,CA:FALSE"
239         @echo >>x509.genkey "keyUsage=digitalSignature"
240         @echo >>x509.genkey "subjectKeyIdentifier=hash"
241         @echo >>x509.genkey "authorityKeyIdentifier=keyid"
242 endif
243
244 $(eval $(call config_filename,MODULE_SIG_KEY))
245
246 # If CONFIG_MODULE_SIG_KEY isn't a PKCS#11 URI, depend on it
247 ifeq ($(patsubst pkcs11:%,%,$(firstword $(MODULE_SIG_KEY_FILENAME))),$(firstword $(MODULE_SIG_KEY_FILENAME)))
248 X509_DEP := $(MODULE_SIG_KEY_SRCPREFIX)$(MODULE_SIG_KEY_FILENAME)
249 endif
250
251 quiet_cmd_extract_der = SIGNING_CERT $(patsubst "%",%,$(2))
252       cmd_extract_der = scripts/extract-cert $(2) signing_key.x509
253
254 signing_key.x509: scripts/extract-cert include/config/module/sig/key.h $(X509_DEP)
255         $(call cmd,extract_der,$(MODULE_SIG_KEY_SRCPREFIX)$(CONFIG_MODULE_SIG_KEY))
256 endif