On Wed, Mar 25, [email protected] wrote:
> If GRUB_CMDLINE_XEN handles the Xen instance's xen.gz line, how do I define
> the xen-specific /vmlinuz line?
Create a /boot/grub2/custom.cfg and put all your private stuff there.
grub2 does not allow private settings.
In that custom.cfg, refer to /boot/vmlinuz-xen and /boot/initrd-xen
instead of the versioned files. Doing it that way will use always the
latest installed kernel pkg.
I think the syntax of that file is something like:
menuentry "my entry" {
load somedriver
kernel /boot/xen.gz some xen cmdline options
module /boot/vmlinuz-xen some kernel cmdline optionsd
module /boot/initrd-xen
}
Refer to /boot/grub2/grub.cfg for the exact syntax.
You can as many entries as you want, they will appear in the main grub
menu.
Olaf
--
To unsubscribe, e-mail: [email protected]
To contact the owner, e-mail: [email protected]