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 master 25 lines 464 B view raw
1# SPDX-License-Identifier: GPL-2.0 2# 3# Makefile for LoongArch KVM support 4# 5 6include $(srctree)/virt/kvm/Makefile.kvm 7 8obj-$(CONFIG_KVM) += kvm.o 9 10kvm-y += exit.o 11kvm-y += interrupt.o 12kvm-y += main.o 13kvm-y += mmu.o 14kvm-y += switch.o 15kvm-y += timer.o 16kvm-y += tlb.o 17kvm-y += vcpu.o 18kvm-y += vm.o 19kvm-y += intc/ipi.o 20kvm-y += intc/dmsintc.o 21kvm-y += intc/eiointc.o 22kvm-y += intc/pch_pic.o 23kvm-y += irqfd.o 24 25CFLAGS_exit.o += $(call cc-disable-warning, override-init)