xen/xend-config-ramdisk.patch

22 lines
911 B
Diff

# HG changeset patch
# User jfehlig@jfehlig2.provo.novell.com
# Date 1166572407 25200
# Node ID d7fd9bc007cd6d4b704a28e24883d63469d30b28
# Parent 057f7c4dbed1c75a3fbe446d346cee04cff31497
Recent changes to the grub/cmdline definition in XenAPI introduced PV_bootloader, PV_kernel, PV_ramdisk, etc. This patch fixes one of the kernel_initrc -> PV_ramdisk conversions that was missed in XendConfig.py.
Signed-off-by: Jim Fehlig <jfehlig@novell.com>
diff -r 057f7c4dbed1 -r d7fd9bc007cd tools/python/xen/xend/XendConfig.py
--- a/tools/python/xen/xend/XendConfig.py Tue Dec 19 12:00:11 2006 +0000
+++ b/tools/python/xen/xend/XendConfig.py Tue Dec 19 16:53:27 2006 -0700
@@ -139,7 +139,7 @@ XENAPI_CFG_TYPES = {
'tpm_backend': int,
'PV_bootloader': str,
'PV_kernel': str,
- 'PV_initrd': str,
+ 'PV_ramdisk': str,
'PV_args': str,
'PV_bootloader_args': str,
'HVM_boot': str,