Masahiro Yamada | 5114879 | 2014-07-30 14:08:17 +0900 | [diff] [blame] | 1 | # This helper makefile is used for creating |
| 2 | # - symbolic links (arch/$ARCH/include/asm/arch |
| 3 | # - include/autoconf.mk, {spl,tpl}/include/autoconf.mk |
| 4 | # - include/config.h |
| 5 | # |
| 6 | # When our migration to Kconfig is done |
| 7 | # (= When we move all CONFIGs from header files to Kconfig) |
| 8 | # this makefile can be deleted. |
Tom Rini | f32c864 | 2016-01-14 18:24:44 -0500 | [diff] [blame] | 9 | # |
| 10 | # SPDX-License-Identifier: GPL-2.0 |
| 11 | # |
Masahiro Yamada | 5114879 | 2014-07-30 14:08:17 +0900 | [diff] [blame] | 12 | |
Masahiro Yamada | e02ee25 | 2015-02-24 22:26:20 +0900 | [diff] [blame] | 13 | __all: include/autoconf.mk include/autoconf.mk.dep |
| 14 | |
| 15 | ifeq ($(shell grep -q '^CONFIG_SPL=y' include/config/auto.conf 2>/dev/null && echo y),y) |
| 16 | __all: spl/include/autoconf.mk |
| 17 | endif |
| 18 | |
| 19 | ifeq ($(shell grep -q '^CONFIG_TPL=y' include/config/auto.conf 2>/dev/null && echo y),y) |
| 20 | __all: tpl/include/autoconf.mk |
| 21 | endif |
| 22 | |
| 23 | include include/config/auto.conf |
Masahiro Yamada | 5114879 | 2014-07-30 14:08:17 +0900 | [diff] [blame] | 24 | |
| 25 | include scripts/Kbuild.include |
| 26 | |
| 27 | # Need to define CC and CPP again here in case the top Makefile did not |
| 28 | # include config.mk. Some architectures expect CROSS_COMPILE to be defined |
| 29 | # in arch/$(ARCH)/config.mk |
| 30 | CC = $(CROSS_COMPILE)gcc |
| 31 | CPP = $(CC) -E |
| 32 | |
| 33 | include config.mk |
| 34 | |
| 35 | UBOOTINCLUDE := \ |
Masahiro Yamada | 5114879 | 2014-07-30 14:08:17 +0900 | [diff] [blame] | 36 | -Iinclude \ |
| 37 | $(if $(KBUILD_SRC), -I$(srctree)/include) \ |
| 38 | -I$(srctree)/arch/$(ARCH)/include \ |
| 39 | -include $(srctree)/include/linux/kconfig.h |
| 40 | |
| 41 | c_flags := $(KBUILD_CFLAGS) $(KBUILD_CPPFLAGS) $(PLATFORM_CPPFLAGS) \ |
| 42 | $(UBOOTINCLUDE) $(NOSTDINC_FLAGS) |
| 43 | |
| 44 | quiet_cmd_autoconf_dep = GEN $@ |
| 45 | cmd_autoconf_dep = $(CC) -x c -DDO_DEPS_ONLY -M -MP $(c_flags) \ |
| 46 | -MQ include/config/auto.conf $(srctree)/include/common.h > $@ || { \ |
| 47 | rm $@; false; \ |
| 48 | } |
Masahiro Yamada | 1406992 | 2016-09-26 13:05:00 +0900 | [diff] [blame] | 49 | include/autoconf.mk.dep: include/config.h FORCE |
Masahiro Yamada | 5114879 | 2014-07-30 14:08:17 +0900 | [diff] [blame] | 50 | $(call cmd,autoconf_dep) |
| 51 | |
| 52 | # We are migrating from board headers to Kconfig little by little. |
| 53 | # In the interim, we use both of |
| 54 | # - include/config/auto.conf (generated by Kconfig) |
| 55 | # - include/autoconf.mk (used in the U-Boot conventional configuration) |
| 56 | # The following rule creates autoconf.mk |
| 57 | # include/config/auto.conf is grepped in order to avoid duplication of the |
| 58 | # same CONFIG macros |
| 59 | quiet_cmd_autoconf = GEN $@ |
| 60 | cmd_autoconf = \ |
Masahiro Yamada | e19b0fb | 2016-09-26 13:05:01 +0900 | [diff] [blame] | 61 | sed -n -f $(srctree)/tools/scripts/define2mk.sed $< | \ |
Masahiro Yamada | 5114879 | 2014-07-30 14:08:17 +0900 | [diff] [blame] | 62 | while read line; do \ |
Joe Hershberger | 7740f65 | 2015-05-19 13:21:18 -0500 | [diff] [blame] | 63 | if [ -n "${KCONFIG_IGNORE_DUPLICATES}" ] || \ |
| 64 | ! grep -q "$${line%=*}=" include/config/auto.conf; then \ |
Masahiro Yamada | 5114879 | 2014-07-30 14:08:17 +0900 | [diff] [blame] | 65 | echo "$$line"; \ |
| 66 | fi \ |
Masahiro Yamada | e19b0fb | 2016-09-26 13:05:01 +0900 | [diff] [blame] | 67 | done > $@ |
| 68 | |
| 69 | quiet_cmd_u_boot_cfg = CFG $@ |
| 70 | cmd_u_boot_cfg = \ |
| 71 | $(CPP) $(c_flags) $2 -DDO_DEPS_ONLY -dM $(srctree)/include/common.h > $@.tmp && { \ |
| 72 | grep 'define CONFIG_' $@.tmp > $@; \ |
| 73 | rm $@.tmp; \ |
| 74 | } || { \ |
| 75 | rm $@.tmp; false; \ |
Masahiro Yamada | 5114879 | 2014-07-30 14:08:17 +0900 | [diff] [blame] | 76 | } |
| 77 | |
Masahiro Yamada | e19b0fb | 2016-09-26 13:05:01 +0900 | [diff] [blame] | 78 | u-boot.cfg: include/config.h FORCE |
| 79 | $(call cmd,u_boot_cfg) |
| 80 | |
| 81 | spl/u-boot.cfg: include/config.h FORCE |
| 82 | $(Q)mkdir -p $(dir $@) |
| 83 | $(call cmd,u_boot_cfg,-DCONFIG_SPL_BUILD) |
| 84 | |
| 85 | tpl/u-boot.cfg: include/config.h FORCE |
| 86 | $(Q)mkdir -p $(dir $@) |
| 87 | $(call cmd,u_boot_cfg,-DCONFIG_SPL_BUILD -DCONFIG_TPL_BUILD) |
| 88 | |
| 89 | include/autoconf.mk: u-boot.cfg |
Masahiro Yamada | 5114879 | 2014-07-30 14:08:17 +0900 | [diff] [blame] | 90 | $(call cmd,autoconf) |
| 91 | |
Masahiro Yamada | e19b0fb | 2016-09-26 13:05:01 +0900 | [diff] [blame] | 92 | spl/include/autoconf.mk: spl/u-boot.cfg |
Masahiro Yamada | e02ee25 | 2015-02-24 22:26:20 +0900 | [diff] [blame] | 93 | $(Q)mkdir -p $(dir $@) |
Masahiro Yamada | e19b0fb | 2016-09-26 13:05:01 +0900 | [diff] [blame] | 94 | $(call cmd,autoconf) |
Masahiro Yamada | e02ee25 | 2015-02-24 22:26:20 +0900 | [diff] [blame] | 95 | |
Masahiro Yamada | e19b0fb | 2016-09-26 13:05:01 +0900 | [diff] [blame] | 96 | tpl/include/autoconf.mk: tpl/u-boot.cfg |
Masahiro Yamada | e02ee25 | 2015-02-24 22:26:20 +0900 | [diff] [blame] | 97 | $(Q)mkdir -p $(dir $@) |
Masahiro Yamada | e19b0fb | 2016-09-26 13:05:01 +0900 | [diff] [blame] | 98 | $(call cmd,autoconf) |
Masahiro Yamada | e02ee25 | 2015-02-24 22:26:20 +0900 | [diff] [blame] | 99 | |
Masahiro Yamada | 5114879 | 2014-07-30 14:08:17 +0900 | [diff] [blame] | 100 | # include/config.h |
| 101 | # Prior to Kconfig, it was generated by mkconfig. Now it is created here. |
| 102 | define filechk_config_h |
| 103 | (echo "/* Automatically generated - do not edit */"; \ |
| 104 | for i in $$(echo $(CONFIG_SYS_EXTRA_OPTIONS) | sed 's/,/ /g'); do \ |
| 105 | echo \#define CONFIG_$$i \ |
| 106 | | sed '/=/ {s/=/ /;q; } ; { s/$$/ 1/; }'; \ |
| 107 | done; \ |
| 108 | echo \#define CONFIG_BOARDDIR board/$(if $(VENDOR),$(VENDOR)/)$(BOARD);\ |
Masahiro Yamada | 5114879 | 2014-07-30 14:08:17 +0900 | [diff] [blame] | 109 | echo \#include \<config_defaults.h\>; \ |
Masahiro Yamada | e02ee25 | 2015-02-24 22:26:20 +0900 | [diff] [blame] | 110 | echo \#include \<config_uncmd_spl.h\>; \ |
Masahiro Yamada | 5114879 | 2014-07-30 14:08:17 +0900 | [diff] [blame] | 111 | echo \#include \<configs/$(CONFIG_SYS_CONFIG_NAME).h\>; \ |
| 112 | echo \#include \<asm/config.h\>; \ |
Patrick Delaunay | 4ac9634 | 2017-01-27 11:00:40 +0100 | [diff] [blame] | 113 | echo \#include \<linux/kconfig.h\>; \ |
Masahiro Yamada | e02ee25 | 2015-02-24 22:26:20 +0900 | [diff] [blame] | 114 | echo \#include \<config_fallbacks.h\>;) |
Masahiro Yamada | 5114879 | 2014-07-30 14:08:17 +0900 | [diff] [blame] | 115 | endef |
| 116 | |
| 117 | include/config.h: scripts/Makefile.autoconf create_symlink FORCE |
| 118 | $(call filechk,config_h) |
| 119 | |
| 120 | # symbolic links |
Masahiro Yamada | 0e7368c | 2015-02-20 17:04:12 +0900 | [diff] [blame] | 121 | # If arch/$(ARCH)/mach-$(SOC)/include/mach exists, |
| 122 | # make a symbolic link to that directory. |
| 123 | # Otherwise, create a symbolic link to arch/$(ARCH)/include/asm/arch-$(SOC). |
Masahiro Yamada | 5114879 | 2014-07-30 14:08:17 +0900 | [diff] [blame] | 124 | PHONY += create_symlink |
| 125 | create_symlink: |
Masahiro Yamada | a350c6a | 2015-07-15 20:59:29 +0900 | [diff] [blame] | 126 | ifdef CONFIG_CREATE_ARCH_SYMLINK |
Masahiro Yamada | 5114879 | 2014-07-30 14:08:17 +0900 | [diff] [blame] | 127 | ifneq ($(KBUILD_SRC),) |
| 128 | $(Q)mkdir -p include/asm |
Masahiro Yamada | 0e7368c | 2015-02-20 17:04:12 +0900 | [diff] [blame] | 129 | $(Q)if [ -d $(KBUILD_SRC)/arch/$(ARCH)/mach-$(SOC)/include/mach ]; then \ |
| 130 | dest=arch/$(ARCH)/mach-$(SOC)/include/mach; \ |
| 131 | else \ |
| 132 | dest=arch/$(ARCH)/include/asm/arch-$(if $(SOC),$(SOC),$(CPU)); \ |
| 133 | fi; \ |
| 134 | ln -fsn $(KBUILD_SRC)/$$dest include/asm/arch |
Masahiro Yamada | ffe29eb | 2014-10-30 11:06:11 +0900 | [diff] [blame] | 135 | else |
Masahiro Yamada | 0e7368c | 2015-02-20 17:04:12 +0900 | [diff] [blame] | 136 | $(Q)if [ -d arch/$(ARCH)/mach-$(SOC)/include/mach ]; then \ |
| 137 | dest=../../mach-$(SOC)/include/mach; \ |
| 138 | else \ |
| 139 | dest=arch-$(if $(SOC),$(SOC),$(CPU)); \ |
| 140 | fi; \ |
| 141 | ln -fsn $$dest arch/$(ARCH)/include/asm/arch |
Masahiro Yamada | 5114879 | 2014-07-30 14:08:17 +0900 | [diff] [blame] | 142 | endif |
Masahiro Yamada | a350c6a | 2015-07-15 20:59:29 +0900 | [diff] [blame] | 143 | endif |
Masahiro Yamada | 5114879 | 2014-07-30 14:08:17 +0900 | [diff] [blame] | 144 | |
| 145 | PHONY += FORCE |
| 146 | FORCE: |
| 147 | |
| 148 | .PHONY: $(PHONY) |