6754862249
Deactivating KUEP at boot time is unrelevant for PPC32 and BOOK3E/64. Remove it. It allows to refactor setup_kuep() via a __weak function that only PPC64s will overide for now. Signed-off-by: Christophe Leroy <christophe.leroy@csgroup.eu> [mpe: Fix CONFIG_PPC_BOOKS_64 -> CONFIG_PPC_BOOK3S_64 typo] Signed-off-by: Michael Ellerman <mpe@ellerman.id.au> Link: https://lore.kernel.org/r/4c36df18b41c988c4512f45d96220486adbe4c99.1634627931.git.christophe.leroy@csgroup.eu
13 lines
291 B
Makefile
13 lines
291 B
Makefile
# SPDX-License-Identifier: GPL-2.0
|
|
|
|
KASAN_SANITIZE_mmu.o := n
|
|
|
|
ifdef CONFIG_KASAN
|
|
CFLAGS_mmu.o += -DDISABLE_BRANCH_PROFILING
|
|
endif
|
|
|
|
obj-y += mmu.o mmu_context.o
|
|
obj-$(CONFIG_PPC_BOOK3S_603) += nohash_low.o
|
|
obj-$(CONFIG_PPC_BOOK3S_604) += hash_low.o tlb.o
|
|
obj-$(CONFIG_PPC_KUAP) += kuap.o
|