mirror of
https://github.com/torvalds/linux.git
synced 2024-11-21 19:41:42 +00:00
a400c287ce
So far this function was only used locally in powerpc, some other architectures might benefit from it. Move it into scripts/Makefile.defconf. Signed-off-by: Nicolas Saenz Julienne <nsaenzjulienne@suse.de> Signed-off-by: Alexander Stein <alexander.stein@ew.tq-group.com> Acked-by: Arnd Bergmann <arnd@arndb.de> Link: https://lore.kernel.org/r/20230124110213.3221264-10-alexander.stein@ew.tq-group.com Signed-off-by: Arnd Bergmann <arnd@arndb.de>
16 lines
594 B
Makefile
16 lines
594 B
Makefile
# SPDX-License-Identifier: GPL-2.0
|
|
# Configuration heplers
|
|
|
|
# Creates 'merged defconfigs'
|
|
# ---------------------------------------------------------------------------
|
|
# Usage:
|
|
# $(call merge_into_defconfig,base_config,config_fragment1 config_fragment2 ...)
|
|
#
|
|
# Input config fragments without '.config' suffix
|
|
define merge_into_defconfig
|
|
$(Q)$(CONFIG_SHELL) $(srctree)/scripts/kconfig/merge_config.sh \
|
|
-m -O $(objtree) $(srctree)/arch/$(ARCH)/configs/$(1) \
|
|
$(foreach config,$(2),$(srctree)/arch/$(ARCH)/configs/$(config).config)
|
|
+$(Q)$(MAKE) -f $(srctree)/Makefile olddefconfig
|
|
endef
|