]>
Commit | Line | Data |
---|---|---|
96ac6d43 | 1 | # SPDX-License-Identifier: GPL-2.0 |
61983110 KS |
2 | obj-$(CONFIG_ARCH_HAS_CC_PLATFORM) += coco/ |
3 | ||
905a36a2 IM |
4 | obj-y += entry/ |
5 | ||
fa9cbf32 BP |
6 | obj-$(CONFIG_PERF_EVENTS) += events/ |
7 | ||
d1f0ae5e SR |
8 | obj-$(CONFIG_KVM) += kvm/ |
9 | ||
10 | # Xen paravirtualization support | |
11 | obj-$(CONFIG_XEN) += xen/ | |
12 | ||
716ff017 | 13 | obj-$(CONFIG_PVH) += platform/pvh/ |
fcd47476 | 14 | |
8730046c | 15 | # Hyper-V paravirtualization support |
79cadff2 | 16 | obj-$(subst m,y,$(CONFIG_HYPERV)) += hyperv/ |
8730046c | 17 | |
b3266bd6 | 18 | obj-y += realmode/ |
d1f0ae5e SR |
19 | obj-y += kernel/ |
20 | obj-y += mm/ | |
21 | ||
22 | obj-y += crypto/ | |
d603c8e1 | 23 | |
d1f0ae5e SR |
24 | obj-$(CONFIG_IA32_EMULATION) += ia32/ |
25 | ||
3adbb7f4 | 26 | obj-y += platform/ |
0a14842f | 27 | obj-y += net/ |
8fc5b4d4 | 28 | |
74ca317c | 29 | obj-$(CONFIG_KEXEC_FILE) += purgatory/ |
8212f898 | 30 | |
3f1a9bc5 | 31 | obj-y += virt/ |
216d106c | 32 | |
8212f898 MY |
33 | # for cleaning |
34 | subdir- += boot tools |