Skip to content
Snippets Groups Projects
Commit f8bae7e7 authored by Zygmunt Krynicki's avatar Zygmunt Krynicki
Browse files

wic: remove duplicate --boot from x-gpt-efi-disk


The x-gpt-efi-disk kickstart file has a duplicate --boot argument for
the boot partition. One uses the BOOT_PARTITION_LABEL variable. The other
uses a hard-coded string "boot". Drop the hard-coded value.

Signed-off-by: default avatarZygmunt Krynicki <zygmunt.krynicki@huawei.com>
parent 4d6d2b77
No related branches found
No related tags found
No related merge requests found
......@@ -17,7 +17,7 @@
bootloader --ptable gpt --timeout=${WIC_BOOTLOADER_TIMEOUT} --append=" rootfstype=${ROOT_FSTYPE} "
part --source bootimg-efi --sourceparams="loader=${EFI_PROVIDER}" --label ${BOOT_PARTITION_LABEL} --label boot --active --align 4096 --offset 4096 --fixed-size ${BOOT_PARTITION_SIZE}
part --source bootimg-efi --sourceparams="loader=${EFI_PROVIDER}" --label ${BOOT_PARTITION_LABEL} --active --align 4096 --offset 4096 --fixed-size ${BOOT_PARTITION_SIZE}
${WIC_ROOTA_PARTITION}
${WIC_ROOTB_PARTITION}
${WIC_DEVDATA_PARTITION}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment