pxe partition image deploy fails in UEFI boot mode

Due to syntax error in elilo_efi_pxe_config.template, all deploy
for partition images fails for pxe drivers in UEFI boot mode.

Change-Id: If70f127f82c5a2d6b3a7434acd55be8950fc9e6b
Closes-Bug: 1435357
This commit is contained in:
Shivanand Tendulker 2015-03-23 08:16:47 -07:00
parent d5bf6233f9
commit 1077a048e1
2 changed files with 4 additions and 4 deletions

View File

@ -13,4 +13,4 @@ image={{pxe_options.aki_path}}
image=chain.c32 image=chain.c32
label=boot_whole_disk label=boot_whole_disk
append mbr:{{ DISK_IDENTIFIER }} append="mbr:{{ DISK_IDENTIFIER }}"

View File

@ -180,7 +180,7 @@ image=kernel
image=chain.c32 image=chain.c32
label=boot_whole_disk label=boot_whole_disk
append mbr:{{ DISK_IDENTIFIER }} append="mbr:{{ DISK_IDENTIFIER }}"
""" """
_UEFI_PXECONF_BOOT_PARTITION = """ _UEFI_PXECONF_BOOT_PARTITION = """
@ -198,7 +198,7 @@ image=kernel
image=chain.c32 image=chain.c32
label=boot_whole_disk label=boot_whole_disk
append mbr:{{ DISK_IDENTIFIER }} append="mbr:{{ DISK_IDENTIFIER }}"
""" """
_UEFI_PXECONF_BOOT_WHOLE_DISK = """ _UEFI_PXECONF_BOOT_WHOLE_DISK = """
@ -216,7 +216,7 @@ image=kernel
image=chain.c32 image=chain.c32
label=boot_whole_disk label=boot_whole_disk
append mbr:0x12345678 append="mbr:0x12345678"
""" """