http://cateee.net/lkddb/web-lkddb/PARAVIRT.htmlLook up the x86 option for 3.19, looks like it's called "Enable paravirtualization code". You can search while in `make menuconfig` by hitting / and then typing a string.
Code:
Symbol: PARAVIRT [=y]
Type : boolean
Prompt: Enable paravirtualization code
Location:
-> Processor type and features
(1) -> Linux guest support (HYPERVISOR_GUEST [=y])
Defined at arch/x86/Kconfig:614
Depends on: HYPERVISOR_GUEST [=y]
Selected by: X86_VSMP [=n] && X86_64 [=y] && PCI [=y] && X86_EXTENDED_PLATFORM [=n] && SMP [=y]
So, it's in Processor Type and Features -> Linux Guest support. it'll only show up if Linux Guest Support is itself enabled.
Once you go there, it's the top option. You can hit "?" on it to get the full CONFIG_PARAVIRT name and description.
- Les