mirror of
https://github.com/torvalds/linux.git
synced 2024-11-10 06:01:57 +00:00
kbuild: defconf: use SRCARCH to find merged configs
For some ARCH values, SRCARCH, which should be used for finding arch/ subdirectory, is different from ARCH. Signed-off-by: Zhang Bingwu <xtexchooser@duck.com> Signed-off-by: Masahiro Yamada <masahiroy@kernel.org>
This commit is contained in:
parent
6613476e22
commit
6c20faec8f
@ -9,8 +9,8 @@
|
|||||||
# Input config fragments without '.config' suffix
|
# Input config fragments without '.config' suffix
|
||||||
define merge_into_defconfig
|
define merge_into_defconfig
|
||||||
$(Q)$(CONFIG_SHELL) $(srctree)/scripts/kconfig/merge_config.sh \
|
$(Q)$(CONFIG_SHELL) $(srctree)/scripts/kconfig/merge_config.sh \
|
||||||
-m -O $(objtree) $(srctree)/arch/$(ARCH)/configs/$(1) \
|
-m -O $(objtree) $(srctree)/arch/$(SRCARCH)/configs/$(1) \
|
||||||
$(foreach config,$(2),$(srctree)/arch/$(ARCH)/configs/$(config).config)
|
$(foreach config,$(2),$(srctree)/arch/$(SRCARCH)/configs/$(config).config)
|
||||||
+$(Q)$(MAKE) -f $(srctree)/Makefile olddefconfig
|
+$(Q)$(MAKE) -f $(srctree)/Makefile olddefconfig
|
||||||
endef
|
endef
|
||||||
|
|
||||||
@ -23,7 +23,7 @@ endef
|
|||||||
# Input config fragments without '.config' suffix
|
# Input config fragments without '.config' suffix
|
||||||
define merge_into_defconfig_override
|
define merge_into_defconfig_override
|
||||||
$(Q)$(CONFIG_SHELL) $(srctree)/scripts/kconfig/merge_config.sh \
|
$(Q)$(CONFIG_SHELL) $(srctree)/scripts/kconfig/merge_config.sh \
|
||||||
-Q -m -O $(objtree) $(srctree)/arch/$(ARCH)/configs/$(1) \
|
-Q -m -O $(objtree) $(srctree)/arch/$(SRCARCH)/configs/$(1) \
|
||||||
$(foreach config,$(2),$(srctree)/arch/$(ARCH)/configs/$(config).config)
|
$(foreach config,$(2),$(srctree)/arch/$(SRCARCH)/configs/$(config).config)
|
||||||
+$(Q)$(MAKE) -f $(srctree)/Makefile olddefconfig
|
+$(Q)$(MAKE) -f $(srctree)/Makefile olddefconfig
|
||||||
endef
|
endef
|
||||||
|
Loading…
Reference in New Issue
Block a user