Commit 35178739 authored by Anton Midyukov's avatar Anton Midyukov

efi: fix case of names EFI binaries in stage1/scripts.d/50-efiboot-img

With mkimage >= 0.3.6-alt1 because of this we get duplicates bootia32.efi and BOOTIA32.EFI, bootx64.efi and BOOTX64.EFI.
parent e2a13987
...@@ -17,8 +17,10 @@ cd /.image ...@@ -17,8 +17,10 @@ cd /.image
mkdir -p EFI/BOOT mkdir -p EFI/BOOT
# copy shim # copy shim
cp -pLf $shim_dir/shimx64.efi EFI/BOOT/bootx64.efi rm -fv EFI/BOOT/bootx64.efi
cp -pLf $shim_dir/shimia32.efi EFI/BOOT/bootia32.efi rm -fv EFI/BOOT/bootia32.efi
cp -pLf $shim_dir/shimx64.efi EFI/BOOT/BOOTX64.EFI
cp -pLf $shim_dir/shimia32.efi EFI/BOOT/BOOTIA32.EFI
cp -pLf $shim_dir/mmx64.efi EFI/BOOT/ cp -pLf $shim_dir/mmx64.efi EFI/BOOT/
cp -pLf $shim_dir/mmia32.efi EFI/BOOT/ cp -pLf $shim_dir/mmia32.efi EFI/BOOT/
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment