From 2d60754742c5f279479707a635c5b6881a0f7a83 Mon Sep 17 00:00:00 2001 From: udeved Date: Tue, 7 Mar 2017 15:30:19 +0100 Subject: [PATCH] util-iso-boot: fix efi nonfree conf --- lib/util-iso-boot.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/util-iso-boot.sh b/lib/util-iso-boot.sh index 973b361..919cc66 100644 --- a/lib/util-iso-boot.sh +++ b/lib/util-iso-boot.sh @@ -108,11 +108,11 @@ prepare_efi_loader(){ vars_to_boot_conf $2/loader/loader.conf cp ${efi_data}/uefi-shell-v{1,2}-x86_64.conf ${entries} - local drv='free' switch="no" + local drv='nonfree' switch="no" cp ${efi_data}/entry-x86_64-$3.conf ${entries}/${iso_name}-x86_64.conf vars_to_boot_conf "${entries}/${iso_name}-x86_64.conf" "$drv" "$switch" if ${nonfree_mhwd};then - drv='nonfree' switch="yes" + switch="yes" cp ${efi_data}/entry-x86_64-$3.conf ${entries}/${iso_name}-x86_64-nonfree.conf vars_to_boot_conf "${entries}/${iso_name}-x86_64-nonfree.conf" "$drv" "$switch" fi