From 6426c98ac5e581e888332ac3d29b407a44f4c5bf Mon Sep 17 00:00:00 2001 From: Daan De Meyer Date: Mon, 24 Aug 2020 19:22:11 +0100 Subject: [PATCH] kernel-install: Use "Default" as fallback instead of "Linux" "Linux" conflicts /efi/Linux when /efi is the install location. /efi/Linux is already reserved for unified kernel images so we can't use it for type #1 images. Instead, we use "Default". --- src/kernel-install/kernel-install | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/kernel-install/kernel-install b/src/kernel-install/kernel-install index ca21be7e616..3359ec227c9 100755 --- a/src/kernel-install/kernel-install +++ b/src/kernel-install/kernel-install @@ -88,7 +88,7 @@ KERNEL_IMAGE="$2" if [[ -f /etc/machine-id ]]; then read MACHINE_ID < /etc/machine-id else - MACHINE_ID="Linux" + MACHINE_ID="Default" fi if [[ ! $COMMAND ]] || [[ ! $KERNEL_VERSION ]]; then -- 2.47.3