1 # SPDX-License-Identifier: GPL-2.0 !! 1 # 2 obj-y := dma-mapping !! 2 # Makefile for the linux ppc-specific parts of the memory manager. 3 cache.o cop !! 3 # 4 ioremap.o m !! 4 # Note! Dependencies are done automagically by 'make dep', which also 5 context.o p !! 5 # removes any old dependencies. DON'T put your own dependencies here 6 obj-$(CONFIG_ARM64_CONTPTE) += contpte.o !! 6 # unless it's something special (ie not a .c file). 7 obj-$(CONFIG_HUGETLB_PAGE) += hugetlbpage !! 7 # 8 obj-$(CONFIG_PTDUMP_CORE) += ptdump.o !! 8 # Note 2! The CFLAGS definition is now in the main makefile... 9 obj-$(CONFIG_PTDUMP_DEBUGFS) += ptdump_debu << 10 obj-$(CONFIG_TRANS_TABLE) += trans_pgd.o << 11 obj-$(CONFIG_TRANS_TABLE) += trans_pgd-a << 12 obj-$(CONFIG_DEBUG_VIRTUAL) += physaddr.o << 13 obj-$(CONFIG_ARM64_MTE) += mteswap.o << 14 KASAN_SANITIZE_physaddr.o += n << 15 9 16 obj-$(CONFIG_KASAN) += kasan_init. !! 10 USE_STANDARD_AS_RULE := true 17 KASAN_SANITIZE_kasan_init.o := n !! 11 >> 12 ifdef CONFIG_PPC64BRIDGE >> 13 EXTRA_AFLAGS := -Wa,-mppc64bridge >> 14 endif >> 15 >> 16 O_TARGET := mm.o >> 17 obj-y := fault.o init.o mem_pieces.o extable.o \ >> 18 mmu_context.o pgtable.o >> 19 >> 20 obj-$(CONFIG_PPC_STD_MMU) += hashtable.o ppc_mmu.o tlb.o >> 21 obj-$(CONFIG_40x) += 4xx_mmu.o >> 22 obj-$(CONFIG_44x) += 44x_mmu.o >> 23 obj-$(CONFIG_NOT_COHERENT_CACHE) += cachemap.o >> 24 >> 25 include $(TOPDIR)/Rules.make
Linux® is a registered trademark of Linus Torvalds in the United States and other countries.
TOMOYO® is a registered trademark of NTT DATA CORPORATION.