Bug 640486

Summary: Grubby does not support grub module keyword (required by Xen)
Product: [Fedora] Fedora Reporter: W. Michael Petullo <mike>
Component: grubbyAssignee: Peter Jones <pjones>
Status: CLOSED NOTABUG QA Contact: Fedora Extras Quality Assurance <extras-qa>
Severity: medium Docs Contact:
Priority: low    
Version: 14CC: bcl, pjones
Target Milestone: ---   
Target Release: ---   
Hardware: All   
OS: Linux   
Whiteboard:
Fixed In Version: Doc Type: Bug Fix
Doc Text:
Story Points: ---
Clone Of: Environment:
Last Closed: 2010-11-30 08:03:59 UTC Type: ---
Regression: --- Mount Type: ---
Documentation: --- CRM:
Verified Versions: Category: ---
oVirt Team: --- RHEL 7.3 requirements from Atomic Host:
Cloudforms Team: --- Target Upstream Version:
Embargoed:

Description W. Michael Petullo 2010-10-06 01:35:12 UTC
Description of problem:
Grubby does not grub's "module" keyword. For example,

title Fedora (2.6.32.21-167.xendom0.fc12.x86_64)
	root (hd0,0)
	kernel /xen-4.0.1.gz
	module /vmlinuz-2.6.32.21-167.xendom0.fc12.x86_64 ro root=/dev/mapper/vg_imp-lv_root_64bit LANG=en_US.UTF-8 SYSFONT=latarcyrheb-sun16 KEYBOARDTYPE=pc KEYTABLE=us rhgb quiet init=/sbin/upstart 3
	module /initramfs-2.6.32.21-167.xendom0.fc12.x86_64.img

Version-Release number of selected component (if applicable):
grubby-7.0.16-1.fc14.x86_64

How reproducible:
Every time

Steps to Reproduce:
Notice grubby does not support the "module" keyword.
  
Actual results:


Expected results:


Additional info:
While Fedora does not yet officially support Xen Dom0 in the current version, Michael Young maintains a third party kernel that does. Support for the "module" keyword would make it easier to write a kickstart configuration that integrates Michael's kernel. See also https://fedoraproject.org/wiki/Features/XenPvopsDom0.

Comment 1 W. Michael Petullo 2010-11-29 21:23:32 UTC
I am presently working on a patch for grubby that allows for multiple --add-kernel arguments if --add-multiboot is used:

grubby --add-multiboot=/boot/xen.gz --mbargs="[xen arguments]" --add-kernel=/boot/vmlinuz-2.6.32.23-170.1.xendom0.fc12.x86_64 --args="[kernel arguments]" --add-kernel=/boot/initramfs-2.6.32.23-170.1.xendom0.fc12.x86_64.img --title="Xen Hypervisor"

Please see also http://lists.fedoraproject.org/pipermail/xen/2010-November/005264.html.

Comment 2 W. Michael Petullo 2010-11-30 08:03:59 UTC
Actually, the following works fine:

grubby \
    --add-multiboot=/boot/xen.gz \
    --mbargs="[xen arguments]" \
    --add-kernel=/boot/vmlinuz-2.6.32.23-170.1.xendom0.fc12.x86_64 \
    --args="[kernel arguments]" \
    --initrd=/boot/initramfs-2.6.32.23-170.1.xendom0.fc12.x86_64.img \
    --title="Xen Hypervisor"'