OXIESEC PANEL
- Current Dir:
/
/
usr
/
src
/
linux-headers-4.15.0-213
/
arch
/
powerpc
Server IP: 139.59.38.164
Upload:
Create Dir:
Name
Size
Modified
Perms
📁
..
-
05/09/2024 07:14:16 AM
rwxr-xr-x
📄
Kconfig
34.47 KB
06/16/2023 05:32:39 PM
rw-r--r--
📄
Kconfig.debug
11.66 KB
06/16/2023 05:32:39 PM
rw-r--r--
📄
Makefile
14.33 KB
06/16/2023 05:32:39 PM
rw-r--r--
📄
Makefile.postlink
1.16 KB
01/28/2018 09:20:33 PM
rw-r--r--
📁
boot
-
05/09/2024 07:14:16 AM
rwxr-xr-x
📁
crypto
-
05/09/2024 07:14:16 AM
rwxr-xr-x
📁
include
-
05/09/2024 07:14:13 AM
rwxr-xr-x
📁
kernel
-
05/09/2024 07:14:16 AM
rwxr-xr-x
📁
kvm
-
05/09/2024 07:14:16 AM
rwxr-xr-x
📁
lib
-
05/09/2024 07:14:16 AM
rwxr-xr-x
📁
math-emu
-
05/09/2024 07:14:16 AM
rwxr-xr-x
📁
mm
-
05/09/2024 07:14:16 AM
rwxr-xr-x
📁
net
-
05/09/2024 07:14:16 AM
rwxr-xr-x
📁
oprofile
-
05/09/2024 07:14:16 AM
rwxr-xr-x
📁
perf
-
05/09/2024 07:14:16 AM
rwxr-xr-x
📁
platforms
-
05/09/2024 07:14:16 AM
rwxr-xr-x
📁
purgatory
-
05/09/2024 07:14:16 AM
rwxr-xr-x
📁
sysdev
-
05/09/2024 07:14:16 AM
rwxr-xr-x
📁
tools
-
05/09/2024 07:14:16 AM
rwxr-xr-x
📁
xmon
-
05/09/2024 07:14:16 AM
rwxr-xr-x
Editing: Makefile.postlink
Close
# SPDX-License-Identifier: GPL-2.0 # =========================================================================== # Post-link powerpc pass # =========================================================================== # # 1. Check that vmlinux relocations look sane PHONY := __archpost __archpost: -include include/config/auto.conf include scripts/Kbuild.include quiet_cmd_head_check = CHKHEAD $@ cmd_head_check = $(CONFIG_SHELL) $(srctree)/arch/powerpc/tools/head_check.sh "$(NM)" "$@" quiet_cmd_relocs_check = CHKREL $@ ifdef CONFIG_PPC_BOOK3S_64 cmd_relocs_check = \ $(CONFIG_SHELL) $(srctree)/arch/powerpc/tools/relocs_check.sh "$(OBJDUMP)" "$@" ; \ $(CONFIG_SHELL) $(srctree)/arch/powerpc/tools/unrel_branch_check.sh "$(OBJDUMP)" "$@" else cmd_relocs_check = \ $(CONFIG_SHELL) $(srctree)/arch/powerpc/tools/relocs_check.sh "$(OBJDUMP)" "$@" endif # `@true` prevents complaint when there is nothing to be done vmlinux: FORCE @true ifdef CONFIG_PPC64 $(call cmd,head_check) endif ifdef CONFIG_RELOCATABLE $(call if_changed,relocs_check) endif %.ko: FORCE @true clean: rm -f .tmp_symbols.txt PHONY += FORCE clean FORCE: .PHONY: $(PHONY)