1 # SPDX-License-Identifier: GPL-2.0 1 # SPDX-License-Identifier: GPL-2.0 2 # ============================================ 2 # =========================================================================== 3 # Post-link riscv pass !! 3 # Post-link MIPS pass 4 # ============================================ 4 # =========================================================================== 5 # 5 # 6 # Check that vmlinux relocations look sane !! 6 # 1. Insert relocations into vmlinux 7 7 8 PHONY := __archpost 8 PHONY := __archpost 9 __archpost: 9 __archpost: 10 10 11 -include include/config/auto.conf 11 -include include/config/auto.conf 12 include $(srctree)/scripts/Kbuild.include !! 12 include scripts/Kbuild.include 13 13 14 quiet_cmd_relocs_check = CHKREL $@ !! 14 CMD_RELOCS = arch/mips/boot/tools/relocs 15 cmd_relocs_check = !! 15 quiet_cmd_relocs = RELOCS $@ 16 $(CONFIG_SHELL) $(srctree)/arch/riscv/ !! 16 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 17 29 # `@true` prevents complaint when there is not 18 # `@true` prevents complaint when there is nothing to be done 30 19 31 vmlinux: FORCE 20 vmlinux: FORCE 32 @true 21 @true 33 ifdef CONFIG_RELOCATABLE !! 22 ifeq ($(CONFIG_RELOCATABLE),y) 34 $(call if_changed,relocs_check) !! 23 $(call if_changed,relocs) 35 $(call if_changed,cp_vmlinux_relocs) << 36 $(call if_changed,relocs_strip) << 37 endif 24 endif >> 25 >> 26 %.ko: FORCE >> 27 @true 38 28 39 clean: 29 clean: 40 @true 30 @true 41 31 42 PHONY += FORCE clean 32 PHONY += FORCE clean 43 33 44 FORCE: 34 FORCE: 45 35 46 .PHONY: $(PHONY) 36 .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.