/usr/src/linux-headers-5.15.0-181/arch/mips
NameSizeModeActions
alchemy/-0755rm
ar7/-0755rm
ath25/-0755rm
ath79/-0755rm
bcm47xx/-0755rm
bcm63xx/-0755rm
bmips/-0755rm
boot/-0755rm
cavium-octeon/-0755rm
cobalt/-0755rm
crypto/-0755rm
dec/-0755rm
fw/-0755rm
generic/-0755rm
include/-0755rm
ingenic/-0755rm
jazz/-0755rm
kernel/-0755rm
kvm/-0755rm
lantiq/-0755rm
lib/-0755rm
loongson2ef/-0755rm
loongson32/-0755rm
loongson64/-0755rm
math-emu/-0755rm
mm/-0755rm
mti-malta/-0755rm
n64/-0755rm
net/-0755rm
netlogic/-0755rm
pci/-0755rm
pic32/-0755rm
power/-0755rm
ralink/-0755rm
rb532/-0755rm
sgi-ip22/-0755rm
sgi-ip27/-0755rm
sgi-ip30/-0755rm
sgi-ip32/-0755rm
sibyte/-0755rm
sni/-0755rm
tools/-0755rm
txx9/-0755rm
vdso/-0755rm
vr41xx/-0755rm
Kbuild6120644editdlrm
Kbuild.platforms16800644editdlrm
Kconfig878160644editdlrm
Kconfig.debug56880644editdlrm
Makefile198890644editdlrm
Makefile.postlink9630644editdlrm
Edit: /usr/src/linux-headers-5.15.0-181/arch/mips/Makefile.postlink (963B)
# SPDX-License-Identifier: GPL-2.0 # =========================================================================== # Post-link MIPS pass # =========================================================================== # # 1. Check that Loongson3 LL/SC workarounds are applied correctly # 2. Insert relocations into vmlinux PHONY := __archpost __archpost: -include include/config/auto.conf include scripts/Kbuild.include CMD_LS3_LLSC = arch/mips/tools/loongson3-llsc-check quiet_cmd_ls3_llsc = LLSCCHK $@ cmd_ls3_llsc = $(CMD_LS3_LLSC) $@ CMD_RELOCS = arch/mips/boot/tools/relocs quiet_cmd_relocs = RELOCS $@ cmd_relocs = $(CMD_RELOCS) $@ # `@true` prevents complaint when there is nothing to be done vmlinux: FORCE @true ifeq ($(CONFIG_CPU_LOONGSON3_WORKAROUNDS),y) $(call if_changed,ls3_llsc) endif ifeq ($(CONFIG_RELOCATABLE),y) $(call if_changed,relocs) endif %.ko: FORCE @true clean: @true PHONY += FORCE clean FORCE: .PHONY: $(PHONY)