OSDN Git Service

Makefile: install modules.builtin even if CONFIG_MODULES=n
authorJonas Zeiger <jonas.zeiger@talpidae.net>
Wed, 3 Jun 2020 13:34:05 +0000 (15:34 +0200)
committerMasahiro Yamada <masahiroy@kernel.org>
Sat, 6 Jun 2020 14:41:49 +0000 (23:41 +0900)
commite0b250b57dcf403529081e5898a9de717f96b76b
tree48d9ae7bf2276085abbc2457bff0a50e39cd3e8b
parent72d24accf02add25e08733f0ecc93cf10fcbd88c
Makefile: install modules.builtin even if CONFIG_MODULES=n

Many applications check for available kernel features via:

  - /proc/modules (loaded modules, present if CONFIG_MODULES=y)
  - $(MODLIB)/modules.builtin (builtin modules)

They fail to detect features if the kernel was built with CONFIG_MODULES=n
and modules.builtin isn't installed.

Therefore, add the target "_builtin_inst_" and make "install" and
"modules_install" depend on it.

Tests results:

  - make install: kernel image is copied as before, modules.builtin copied
  - make modules_install: (CONFIG_MODULES=n) nothing is copied, exit 1

Signed-off-by: Jonas Zeiger <jonas.zeiger@talpidae.net>
Signed-off-by: Masahiro Yamada <masahiroy@kernel.org>
Makefile