Reference - http://www.linode.com/wiki/index.php/PV-GRUB#Building_Your_Own_Kernel
In order to work with Xen, a number of options that must be selected:
CONFIG_PARAVIRT_GUEST=y
CONFIG_XEN=y
CONFIG_PARAVIRT=y
CONFIG_PARAVIRT_CLOCK=y
CONFIG_XEN_BLKDEV_FRONTEND=y
CONFIG_XEN_NETDEV_FRONTEND=y
CONFIG_HVC_XEN=y
CONFIG_XEN_BALLOON=y
CONFIG_XEN_SCRUB_PAGES=y
Where exactly do I specify these configuration?
I have done these steps so far:-
wget http://www.kernel.org/pub/linux/kernel/v3.0/linux-3.3.3.tar.bz2
tar -xf linux-3.3.3.tar.bz2
cd linux-3.3.3
make menuconfig
make menuconfig
brings me to the ncurses
"GUI" but there are so many options I am completely lost....
Any suggestions how I should proceed?