This patch converts powerpc to the generic PTDUMP implementation. Signed-off-by: Christophe Leroy <christophe.leroy@csgroup.eu> Signed-off-by: Michael Ellerman <mpe@ellerman.id.au> Link: https://lore.kernel.org/r/03166d569526be70214fe9370a7bad219d2f41c8.1625762907.git.christophe.leroy@csgroup.eu
15 lines
376 B
Makefile
15 lines
376 B
Makefile
# SPDX-License-Identifier: GPL-2.0
|
|
|
|
obj-y += ptdump.o
|
|
|
|
obj-$(CONFIG_4xx) += shared.o
|
|
obj-$(CONFIG_PPC_8xx) += 8xx.o
|
|
obj-$(CONFIG_PPC_BOOK3E_MMU) += shared.o
|
|
obj-$(CONFIG_PPC_BOOK3S_32) += shared.o
|
|
obj-$(CONFIG_PPC_BOOK3S_64) += book3s64.o
|
|
|
|
ifdef CONFIG_PTDUMP_DEBUGFS
|
|
obj-$(CONFIG_PPC_BOOK3S_32) += bats.o segment_regs.o
|
|
obj-$(CONFIG_PPC_BOOK3S_64) += hashpagetable.o
|
|
endif
|