]>
Commit | Line | Data |
---|---|---|
d1f0ae5e SR |
1 | obj-$(CONFIG_KVM) += kvm/ |
2 | ||
3 | # Xen paravirtualization support | |
4 | obj-$(CONFIG_XEN) += xen/ | |
5 | ||
6 | # lguest paravirtualization support | |
7 | obj-$(CONFIG_LGUEST_GUEST) += lguest/ | |
8 | ||
b3266bd6 | 9 | obj-y += realmode/ |
d1f0ae5e SR |
10 | obj-y += kernel/ |
11 | obj-y += mm/ | |
12 | ||
13 | obj-y += crypto/ | |
14 | obj-y += vdso/ | |
15 | obj-$(CONFIG_IA32_EMULATION) += ia32/ | |
16 | ||
3adbb7f4 | 17 | obj-y += platform/ |
0a14842f | 18 | obj-y += net/ |
8fc5b4d4 VG |
19 | |
20 | ifeq ($(CONFIG_X86_64),y) | |
21 | obj-$(CONFIG_KEXEC) += purgatory/ | |
22 | endif |