Server IP : 15.235.198.142 / Your IP : 216.73.216.57 Web Server : Apache/2.4.58 (Ubuntu) System : Linux ballsack 6.8.0-45-generic #45-Ubuntu SMP PREEMPT_DYNAMIC Fri Aug 30 12:02:04 UTC 2024 x86_64 User : www-data ( 33) PHP Version : 8.3.6 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : OFF Directory : /usr/src/linux-headers-6.8.0-45/arch/riscv/ |
Upload File : |
# SPDX-License-Identifier: GPL-2.0 # =========================================================================== # Post-link riscv pass # =========================================================================== # # Check that vmlinux relocations look sane PHONY := __archpost __archpost: -include include/config/auto.conf include $(srctree)/scripts/Kbuild.include quiet_cmd_relocs_check = CHKREL $@ cmd_relocs_check = \ $(CONFIG_SHELL) $(srctree)/arch/riscv/tools/relocs_check.sh "$(OBJDUMP)" "$(NM)" "$@" ifdef CONFIG_RELOCATABLE quiet_cmd_cp_vmlinux_relocs = CPREL vmlinux.relocs cmd_cp_vmlinux_relocs = cp vmlinux vmlinux.relocs quiet_cmd_relocs_strip = STRIPREL $@ cmd_relocs_strip = $(OBJCOPY) --remove-section='.rel.*' \ --remove-section='.rel__*' \ --remove-section='.rela.*' \ --remove-section='.rela__*' $@ endif # `@true` prevents complaint when there is nothing to be done vmlinux: FORCE @true ifdef CONFIG_RELOCATABLE $(call if_changed,relocs_check) $(call if_changed,cp_vmlinux_relocs) $(call if_changed,relocs_strip) endif clean: @true PHONY += FORCE clean FORCE: .PHONY: $(PHONY)