Details
-
Type:
Bug
-
Status: Done
-
Priority:
(None)
-
Resolution: Fixed
-
Affects Version/s: None
-
Fix Version/s: None
-
Labels:
-
Days in progress:0
Description
The mender-convert-modify script seems to have a copy and paste error when defining the
initrd_imagetype variable. Line 123
if [ -z "${MENDER_GRUB_KERNEL_IMAGETYPE}" ]; then kernel_imagetype=$(probe_kernel_in_boot_and_root) else kernel_imagetype="${MENDER_GRUB_KERNEL_IMAGETYPE}" fi if [ -z "${MENDER_GRUB_INITRD_IMAGETYPE}" ]; then initrd_imagetype=$(probe_initrd_in_boot_and_root) else kernel_imagetype="${MENDER_GRUB_INITRD_IMAGETYPE}" fi
shouldnt kernel_imagetype be initrd_imagetype in the last assignment ?