1 # SPDX-License-Identifier: GPL-2.0 << 2 # ============================================ 1 # =========================================================================== 3 # Post-link riscv pass !! 2 # Post-link MIPS pass 4 # ============================================ 3 # =========================================================================== 5 # 4 # 6 # Check that vmlinux relocations look sane !! 5 # 1. Insert relocations into vmlinux 7 6 8 PHONY := __archpost 7 PHONY := __archpost 9 __archpost: 8 __archpost: 10 9 11 -include include/config/auto.conf 10 -include include/config/auto.conf 12 include $(srctree)/scripts/Kbuild.include !! 11 include scripts/Kbuild.include 13 12 14 quiet_cmd_relocs_check = CHKREL $@ !! 13 CMD_RELOCS = arch/mips/boot/tools/relocs 15 cmd_relocs_check = !! 14 quiet_cmd_relocs = RELOCS $@ 16 $(CONFIG_SHELL) $(srctree)/arch/riscv/ !! 15 cmd_relocs = $(CMD_RELOCS) $@ 17 << 18 ifdef CONFIG_RELOCATABLE << 19 quiet_cmd_cp_vmlinux_relocs = CPREL vmlinux. << 20 cmd_cp_vmlinux_relocs = cp vmlinux vmlinux.rel << 21 << 22 quiet_cmd_relocs_strip = STRIPREL $@ << 23 cmd_relocs_strip = $(OBJCOPY) --remove-secti << 24 --remove-secti << 25 --remove-secti << 26 --remove-secti << 27 endif << 28 16 29 # `@true` prevents complaint when there is not 17 # `@true` prevents complaint when there is nothing to be done 30 18 31 vmlinux: FORCE 19 vmlinux: FORCE 32 @true 20 @true 33 ifdef CONFIG_RELOCATABLE !! 21 ifeq ($(CONFIG_RELOCATABLE),y) 34 $(call if_changed,relocs_check) !! 22 $(call if_changed,relocs) 35 $(call if_changed,cp_vmlinux_relocs) << 36 $(call if_changed,relocs_strip) << 37 endif 23 endif >> 24 >> 25 %.ko: FORCE >> 26 @true 38 27 39 clean: 28 clean: 40 @true 29 @true 41 30 42 PHONY += FORCE clean 31 PHONY += FORCE clean 43 32 44 FORCE: 33 FORCE: 45 34 46 .PHONY: $(PHONY) 35 .PHONY: $(PHONY)
Linux® is a registered trademark of Linus Torvalds in the United States and other countries.
TOMOYO® is a registered trademark of NTT DATA CORPORATION.