Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

at v6.2-rc3 14 lines 382 B view raw
1# SPDX-License-Identifier: GPL-2.0-only 2# 3# Makefile for the Linux/Xtensa-specific parts of the memory manager. 4# 5 6obj-y := init.o misc.o 7obj-$(CONFIG_PFAULT) += fault.o 8obj-$(CONFIG_MMU) += cache.o ioremap.o mmu.o tlb.o 9obj-$(CONFIG_HIGHMEM) += highmem.o 10obj-$(CONFIG_KASAN) += kasan_init.o 11 12KASAN_SANITIZE_fault.o := n 13KASAN_SANITIZE_kasan_init.o := n 14KASAN_SANITIZE_mmu.o := n